diff --git a/config/routes.ts b/config/routes.ts index 1a1b385f..da0fbff4 100644 --- a/config/routes.ts +++ b/config/routes.ts @@ -95,6 +95,10 @@ export default [ path: paths.INFO, component: "./pages/PersonalInfo", }, + { + path: `${paths.CREDENTIALS}/:editId?`, + component: "./pages/Credentials", + }, ], }, { diff --git a/public/locales/en/common.json b/public/locales/en/common.json index dbaf1451..a02f1dc5 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -110,10 +110,15 @@ "find": "Find", "edit_teams": "Edit teams", "roles_and_access": "Roles and access", - "sql_api": "SQL API" + "sql_api": "SQL API", + "credentials": "Credentials", + "shared": "Shared", + "private": "Private", + "specific_users": "Specific users" }, "form": { "labels": { + "access_type": "Access type", "data_source": "Data source", "name": "Name", "db_name": "Database Name", @@ -149,6 +154,7 @@ "new_password": "New Password", "old_password": "Old Password", "team_member": "Team member", + "team_members": "Team members", "auth_token": "Auth Token", "json": "JSON", "body": "Body", @@ -157,6 +163,10 @@ }, "placeholders": { "name": "Name", + "choose_access_type": "Choose access type", + "choose_data_source": "Choose data source", + "choose_team_members": "Choose team members", + "login": "Login", "use_ssl": "I want use SSL", "attach_file_credentials": "Attach the file credentials, please", "schema": "schema", diff --git a/public/locales/en/settings.json b/public/locales/en/settings.json index 9c214ccd..ae67dc54 100644 --- a/public/locales/en/settings.json +++ b/public/locales/en/settings.json @@ -60,6 +60,23 @@ "attach_btn": "Attach SQL API" } }, + "credentials": { + "title": "Manage Credentials", + "action": "Create now", + "created": "Credentials created", + "updated": "Credentials updated", + "deleted": "Credentials deleted", + "not_found": { + "title": "You have no Credentials", + "text": "Click \"Create Credentials\" to add one", + "create_btn": "Create Credentials" + }, + "shared_access_type_description": "This credential will be available to all team members.", + "specific_users_access_type_description": "This credential will be available to the selected team members.", + "member_already_used": "One or more members already have access to this datasource. Please remove them from other credentials of this datasource.", + "member_has_access": "You already have access to this datasource. Please remove other credentials of this datasource or contact your administrator.", + "no_rights": "You don't have rights to delete this credential. Please contact your administrator." + }, "roles_and_access": { "manage_roles": "Manage roles", "create_now": "Create now", diff --git a/src/assets/credentials.svg b/src/assets/credentials.svg new file mode 100644 index 00000000..463fea71 --- /dev/null +++ b/src/assets/credentials.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/components/ApiSetup/index.tsx b/src/components/ApiSetup/index.tsx index 745cbb72..103c0c5a 100644 --- a/src/components/ApiSetup/index.tsx +++ b/src/components/ApiSetup/index.tsx @@ -103,7 +103,6 @@ const ApiSetup: FC = ({ connection = CONNECTION_DEFAULT, host = connectionUrls[CONNECTION_DEFAULT], user = initialValue?.db_username, - password = initialValue?.password, database = initialValue?.db, }) => { const [hostname, port] = host.split(":"); @@ -117,7 +116,7 @@ const ApiSetup: FC = ({ return `psql --host=${hostname} ${psqlPortOption} --username=${user} --dbname=${database}`; }, - [initialValue?.password, initialValue?.db_username, initialValue?.db] + [initialValue?.db_username, initialValue?.db] ); const onDownload = () => { diff --git a/src/components/CredentialCard/index.module.less b/src/components/CredentialCard/index.module.less new file mode 100644 index 00000000..7adb880f --- /dev/null +++ b/src/components/CredentialCard/index.module.less @@ -0,0 +1,50 @@ +.btn { + padding: 0; + color: var(--color-primary); + span { + font-size: 12px; + } +} + +.list { + padding: 0; + list-style: none; +} + +.listItem { + display: flex; + gap: 5px; + align-items: center; + justify-content: space-between; + padding: 0; + font-size: 12px; + font-family: var(--font-manrope); + &:not(:last-child) { + margin-bottom: 12px; + } +} + +.label { + font-weight: 500; + white-space: nowrap; + opacity: 0.5; +} + +.value { + display: flex; + align-items: center; + font-weight: 600; +} + +.paragraph { + margin-bottom: 0 !important; + &:extend(.value); +} + +.deleteItem { + padding: 0 !important; +} + +.deleteText { + padding: 5px 12px; +} diff --git a/src/components/CredentialCard/index.tsx b/src/components/CredentialCard/index.tsx new file mode 100644 index 00000000..43002d5b --- /dev/null +++ b/src/components/CredentialCard/index.tsx @@ -0,0 +1,179 @@ +import React from "react"; +import { SettingOutlined } from "@ant-design/icons"; +import { Card, Typography, Dropdown } from "antd"; +import { useTranslation } from "react-i18next"; +import cx from "classnames"; + +import Button from "@/components/Button"; +import ConfirmModal from "@/components/ConfirmModal"; +import formatTime from "@/utils/helpers/formatTime"; +import type { CredentialsInfo } from "@/types/credential"; +import DataSourceTag from "@/components/DataSourceTag"; +import CurrentUserStore from "@/stores/CurrentUserStore"; +import { Roles } from "@/types/team"; + +import styles from "./index.module.less"; + +import type { ItemType } from "antd/lib/menu/hooks/useItems"; +import type { FC } from "react"; + +const { Paragraph } = Typography; + +interface CredentialCardProps { + credential: CredentialsInfo; + onEdit?: (id: string) => void; + onDelete?: (id: string) => void; +} + +const CredentialCard: FC = ({ + credential, + onEdit = () => {}, + onDelete = () => {}, +}) => { + const { t } = useTranslation(["common"]); + const { currentUser, currentTeam } = CurrentUserStore(); + const { id, username, updatedAt, createdAt, user, dataSource } = credential; + + const isMember = currentTeam?.role === Roles.member; + const isOwner = currentUser?.id === credential.user.id; + const canDelete = !isMember || (isMember && isOwner); + + return ( +
+ id && onEdit(id)} + > + + {user?.displayName} + + + } + extra={ + canDelete && ( + id && onEdit(id), + }, + { + key: "delete", + className: styles.deleteItem, + label: ( + id && onDelete(id)} + > + {t("common:words.delete")} + + ), + }, + ], + }} + > + + + ) + } + > +
    +
  • + {t("common:words.type")} + +
  • + + {dataSource?.name && ( +
  • + + {t("common:form.labels.data_source")} + + + {dataSource.name} + +
  • + )} + + {username && ( +
  • + {t("common:words.login")} + + {username} + +
  • + )} + +
  • + {t("common:words.updated_at")} + + {formatTime(updatedAt)}{" "} + +
  • + +
  • + {t("common:words.created_at")} + + {formatTime(createdAt)}{" "} + +
  • +
+
+
+ ); +}; + +export default CredentialCard; diff --git a/src/components/CredentialsForm/index.module.less b/src/components/CredentialsForm/index.module.less new file mode 100644 index 00000000..03945fcb --- /dev/null +++ b/src/components/CredentialsForm/index.module.less @@ -0,0 +1,4 @@ +.form { + max-width: 400px; + margin: 0 auto; +} \ No newline at end of file diff --git a/src/components/CredentialsForm/index.tsx b/src/components/CredentialsForm/index.tsx new file mode 100644 index 00000000..266d61cb --- /dev/null +++ b/src/components/CredentialsForm/index.tsx @@ -0,0 +1,165 @@ +import { Form, Row, Col, Alert } from "antd"; +import { useTranslation } from "react-i18next"; +import { useForm } from "react-hook-form"; + +import Input from "@/components/Input"; +import Button from "@/components/Button"; +import type { CredentialsFormType } from "@/types/credential"; +import type { DataSourceInfo } from "@/types/dataSource"; +import { Roles, type Member } from "@/types/team"; +import { Access_Types_Enum } from "@/graphql/generated"; +import CurrentUserStore from "@/stores/CurrentUserStore"; + +interface CredentialsFormProps { + initialValue?: CredentialsFormType; + allMembers?: Member[]; + dataSources?: DataSourceInfo[]; + onSubmit?: (data: CredentialsFormType) => void; +} + +const CredentialsForm: React.FC = ({ + initialValue, + allMembers, + dataSources, + onSubmit = () => {}, +}) => { + const { currentUser, currentTeam } = CurrentUserStore(); + const { t } = useTranslation(["common", "settings"]); + const { control, handleSubmit, watch } = useForm({ + values: initialValue, + }); + + const accessType = watch("accessType") || Access_Types_Enum.SpecificUsers; + const isSpecificUsers = accessType === Access_Types_Enum.SpecificUsers; + + const accessTypeMessage = { + [Access_Types_Enum.Shared]: t( + "settings:credentials.shared_access_type_description" + ), + [Access_Types_Enum.SpecificUsers]: t( + "settings:credentials.specific_users_access_type_description" + ), + }; + + const isMember = currentTeam?.role === Roles.member; + const isOwner = currentUser?.id === initialValue?.userId; + const canEdit = !initialValue || (isMember && isOwner) || !isMember; + + return ( +
+ + + ({ + label: ds.name, + value: ds.id || "", + }))} + defaultValue={ + initialValue?.dataSourceId || dataSources?.[0]?.id || undefined + } + disabled={!!initialValue?.id} + /> + + + + + + + + + + + + + + + {!isMember && ( + + ({ + label: t(`common:words.${type}`), + value: type, + }))} + defaultValue={Access_Types_Enum.SpecificUsers} + /> + + )} + + {!isMember && isSpecificUsers && ( + + ({ + label: member.displayName, + value: member.id, + }))} + defaultValue={initialValue?.members} + /> + + )} + + + {!isMember && ( + + )} + + + + ); +}; + +export default CredentialsForm; diff --git a/src/components/DataSourceFormBody/index.tsx b/src/components/DataSourceFormBody/index.tsx index 931c88da..1dcda3b1 100644 --- a/src/components/DataSourceFormBody/index.tsx +++ b/src/components/DataSourceFormBody/index.tsx @@ -81,16 +81,23 @@ const DataSourceFormBody: FC = ({ case 1: if (curDataSource) { const initialValue = formState?.step1 || formData?.step1; + let fields = + dataSourceForms[ + Object.keys(dataSourceForms).find( + (f) => f === curDataSource?.value + ) ?? "default" + ]; + + if (!isOnboarding) { + fields = fields.filter( + (f) => f.label !== "password" && f.label !== "user" + ); + } + return ( f === curDataSource?.value - ) ?? "default" - ] - } + fields={fields} loading={loading} isOnboarding={isOnboarding} initialValue={initialValue} diff --git a/src/components/NoCredentials/index.stories.tsx b/src/components/NoCredentials/index.stories.tsx index 2ea03efa..7d71a668 100644 --- a/src/components/NoCredentials/index.stories.tsx +++ b/src/components/NoCredentials/index.stories.tsx @@ -5,7 +5,7 @@ import NoCredentials from "."; import type { StoryFn, Meta } from "@storybook/react"; export default { - title: "Components/Settings/SQLApi/NoCredentials", + title: "Components/Settings/Credentials/NoCredentials", component: NoCredentials, } as Meta; diff --git a/src/components/NoCredentials/index.test.tsx b/src/components/NoCredentials/index.test.tsx index dc9cd723..68577aab 100644 --- a/src/components/NoCredentials/index.test.tsx +++ b/src/components/NoCredentials/index.test.tsx @@ -1,36 +1,36 @@ import { describe, test, expect, vi } from "vitest"; import { render, screen } from "@testing-library/react"; -import NoCredentials from "./"; +import NoCredentials from "."; describe("NoCredentials", () => { test("renders the component correctly", () => { - render( {}} />); + render( {}} />); }); test("displays the correct title", () => { - render( {}} />); - const titleElement = screen.getByText("sql_api.not_found.title"); + render( {}} />); + const titleElement = screen.getByText("credentials.not_found.title"); expect(titleElement).toBeInTheDocument(); }); test("displays the correct text", () => { - render( {}} />); - const textElement = screen.getByText("sql_api.not_found.text"); + render( {}} />); + const textElement = screen.getByText("credentials.not_found.text"); expect(textElement).toBeInTheDocument(); }); - test("renders the attach button when edit permission is true", () => { - render( {}} editPermission />); - const attachButton = screen.getByText("sql_api.not_found.attach_btn"); - expect(attachButton).toBeInTheDocument(); + test("renders the create button", () => { + render( {}} />); + const createButton = screen.getByText("credentials.not_found.create_btn"); + expect(createButton).toBeInTheDocument(); }); - test("calls the onAttach function when attach button is clicked", () => { + test("calls the onCreate function when create button is clicked", () => { const mockOnAttach = vi.fn(); - render(); - const attachButton = screen.getByText("sql_api.not_found.attach_btn"); - attachButton.click(); + render(); + const createButton = screen.getByText("credentials.not_found.create_btn"); + createButton.click(); expect(mockOnAttach).toHaveBeenCalled(); }); }); diff --git a/src/components/NoCredentials/index.tsx b/src/components/NoCredentials/index.tsx index efa36e7c..4ad0d3e4 100644 --- a/src/components/NoCredentials/index.tsx +++ b/src/components/NoCredentials/index.tsx @@ -1,7 +1,7 @@ import { Typography } from "antd"; import { useTranslation } from "react-i18next"; -import NoCredentialsImg from "@/assets/no-credentials.png"; +import NoSqlCredentialsImg from "@/assets/no-credentials.png"; import Button from "@/components/Button"; import styles from "./index.module.less"; @@ -11,25 +11,19 @@ import type { FC } from "react"; const { Title, Text } = Typography; interface NoCredentialsProps { - editPermission?: boolean; - onAttach: () => void; + onCreate: () => void; } -const NoCredentials: FC = ({ - editPermission, - onAttach = () => {}, -}) => { +const NoCredentials: FC = ({ onCreate = () => {} }) => { const { t } = useTranslation(["settings", "common"]); return (
- - {t("sql_api.not_found.title")} - {t("sql_api.not_found.text")} - {editPermission && ( - - )} + + {t("credentials.not_found.title")} + {t("credentials.not_found.text")} +
); }; diff --git a/src/components/NoSqlCredentials/index.module.less b/src/components/NoSqlCredentials/index.module.less new file mode 100644 index 00000000..5f4afe26 --- /dev/null +++ b/src/components/NoSqlCredentials/index.module.less @@ -0,0 +1,23 @@ +.wrapper { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + width: 100%; + height: 100%; + max-height: 100vh; + text-align: center; +} + +.img { + max-width: 100%; +} + +.text { + margin-bottom: var(--gap-base); +} + +.btn { + padding: 13px 16px; + overflow: visible; +} diff --git a/src/components/NoSqlCredentials/index.stories.tsx b/src/components/NoSqlCredentials/index.stories.tsx new file mode 100644 index 00000000..60ea936a --- /dev/null +++ b/src/components/NoSqlCredentials/index.stories.tsx @@ -0,0 +1,18 @@ +import RootLayout from "@/layouts/RootLayout"; + +import NoSqlCredentials from "."; + +import type { StoryFn, Meta } from "@storybook/react"; + +export default { + title: "Components/Settings/SQLApi/NoSqlCredentials", + component: NoSqlCredentials, +} as Meta; + +const Template: StoryFn = (args) => ( + + + +); + +export const Default = Template.bind({}); diff --git a/src/components/NoSqlCredentials/index.test.tsx b/src/components/NoSqlCredentials/index.test.tsx new file mode 100644 index 00000000..ea6985b0 --- /dev/null +++ b/src/components/NoSqlCredentials/index.test.tsx @@ -0,0 +1,36 @@ +import { describe, test, expect, vi } from "vitest"; +import { render, screen } from "@testing-library/react"; + +import NoSqlCredentials from "."; + +describe("NoSqlCredentials", () => { + test("renders the component correctly", () => { + render( {}} />); + }); + + test("displays the correct title", () => { + render( {}} />); + const titleElement = screen.getByText("sql_api.not_found.title"); + expect(titleElement).toBeInTheDocument(); + }); + + test("displays the correct text", () => { + render( {}} />); + const textElement = screen.getByText("sql_api.not_found.text"); + expect(textElement).toBeInTheDocument(); + }); + + test("renders the attach button when edit permission is true", () => { + render( {}} editPermission />); + const attachButton = screen.getByText("sql_api.not_found.attach_btn"); + expect(attachButton).toBeInTheDocument(); + }); + + test("calls the onAttach function when attach button is clicked", () => { + const mockOnAttach = vi.fn(); + render(); + const attachButton = screen.getByText("sql_api.not_found.attach_btn"); + attachButton.click(); + expect(mockOnAttach).toHaveBeenCalled(); + }); +}); diff --git a/src/components/NoSqlCredentials/index.tsx b/src/components/NoSqlCredentials/index.tsx new file mode 100644 index 00000000..f27c9ea2 --- /dev/null +++ b/src/components/NoSqlCredentials/index.tsx @@ -0,0 +1,37 @@ +import { Typography } from "antd"; +import { useTranslation } from "react-i18next"; + +import NoSqlCredentialsImg from "@/assets/no-credentials.png"; +import Button from "@/components/Button"; + +import styles from "./index.module.less"; + +import type { FC } from "react"; + +const { Title, Text } = Typography; + +interface NoSqlCredentialsProps { + editPermission?: boolean; + onAttach: () => void; +} + +const NoSqlCredentials: FC = ({ + editPermission, + onAttach = () => {}, +}) => { + const { t } = useTranslation(["settings", "common"]); + return ( +
+ + {t("sql_api.not_found.title")} + {t("sql_api.not_found.text")} + {editPermission && ( + + )} +
+ ); +}; + +export default NoSqlCredentials; diff --git a/src/graphql/generated.ts b/src/graphql/generated.ts index e94484ab..22c3cb3c 100644 --- a/src/graphql/generated.ts +++ b/src/graphql/generated.ts @@ -478,6 +478,174 @@ export type Access_Lists_Updates = { where: Access_Lists_Bool_Exp; }; +/** columns and relationships of "access_types" */ +export type Access_Types = { + __typename?: "access_types"; + access_type: Scalars["String"]["output"]; + /** An array relationship */ + credentials: Array; + /** An aggregate relationship */ + credentials_aggregate: Credentials_Aggregate; +}; + +/** columns and relationships of "access_types" */ +export type Access_TypesCredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "access_types" */ +export type Access_TypesCredentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** aggregated selection of "access_types" */ +export type Access_Types_Aggregate = { + __typename?: "access_types_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "access_types" */ +export type Access_Types_Aggregate_Fields = { + __typename?: "access_types_aggregate_fields"; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; +}; + +/** aggregate fields of "access_types" */ +export type Access_Types_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** Boolean expression to filter rows from the table "access_types". All fields are combined with a logical 'AND'. */ +export type Access_Types_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + access_type?: InputMaybe; + credentials?: InputMaybe; + credentials_aggregate?: InputMaybe; +}; + +/** unique or primary key constraints on table "access_types" */ +export enum Access_Types_Constraint { + /** unique or primary key constraint on columns "access_type" */ + AccessTypesPkey = "access_types_pkey", +} + +export enum Access_Types_Enum { + Shared = "shared", + SpecificUsers = "specific_users", +} + +/** Boolean expression to compare columns of type "access_types_enum". All fields are combined with logical 'AND'. */ +export type Access_Types_Enum_Comparison_Exp = { + _eq?: InputMaybe; + _in?: InputMaybe>; + _is_null?: InputMaybe; + _neq?: InputMaybe; + _nin?: InputMaybe>; +}; + +/** input type for inserting data into table "access_types" */ +export type Access_Types_Insert_Input = { + access_type?: InputMaybe; + credentials?: InputMaybe; +}; + +/** aggregate max on columns */ +export type Access_Types_Max_Fields = { + __typename?: "access_types_max_fields"; + access_type?: Maybe; +}; + +/** aggregate min on columns */ +export type Access_Types_Min_Fields = { + __typename?: "access_types_min_fields"; + access_type?: Maybe; +}; + +/** response of any mutation on the table "access_types" */ +export type Access_Types_Mutation_Response = { + __typename?: "access_types_mutation_response"; + /** number of rows affected by the mutation */ + affected_rows: Scalars["Int"]["output"]; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** input type for inserting object relation for remote table "access_types" */ +export type Access_Types_Obj_Rel_Insert_Input = { + data: Access_Types_Insert_Input; + /** upsert condition */ + on_conflict?: InputMaybe; +}; + +/** on_conflict condition type for table "access_types" */ +export type Access_Types_On_Conflict = { + constraint: Access_Types_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "access_types". */ +export type Access_Types_Order_By = { + access_type?: InputMaybe; + credentials_aggregate?: InputMaybe; +}; + +/** primary key columns input for table: access_types */ +export type Access_Types_Pk_Columns_Input = { + access_type: Scalars["String"]["input"]; +}; + +/** select columns of table "access_types" */ +export enum Access_Types_Select_Column { + /** column name */ + AccessType = "access_type", +} + +/** input type for updating data in table "access_types" */ +export type Access_Types_Set_Input = { + access_type?: InputMaybe; +}; + +/** Streaming cursor of the table "access_types" */ +export type Access_Types_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Access_Types_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Access_Types_Stream_Cursor_Value_Input = { + access_type?: InputMaybe; +}; + +/** update columns of table "access_types" */ +export enum Access_Types_Update_Column { + /** column name */ + AccessType = "access_type", +} + +export type Access_Types_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: Access_Types_Bool_Exp; +}; + /** columns and relationships of "alerts" */ export type Alerts = { __typename?: "alerts"; @@ -2036,6 +2204,174 @@ export type Auth_Migrations_Variance_Fields = { id?: Maybe; }; +/** columns and relationships of "auth_options" */ +export type Auth_Options = { + __typename?: "auth_options"; + auth: Scalars["String"]["output"]; + /** An array relationship */ + datasources: Array; + /** An aggregate relationship */ + datasources_aggregate: Datasources_Aggregate; +}; + +/** columns and relationships of "auth_options" */ +export type Auth_OptionsDatasourcesArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "auth_options" */ +export type Auth_OptionsDatasources_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** aggregated selection of "auth_options" */ +export type Auth_Options_Aggregate = { + __typename?: "auth_options_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "auth_options" */ +export type Auth_Options_Aggregate_Fields = { + __typename?: "auth_options_aggregate_fields"; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; +}; + +/** aggregate fields of "auth_options" */ +export type Auth_Options_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** Boolean expression to filter rows from the table "auth_options". All fields are combined with a logical 'AND'. */ +export type Auth_Options_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + auth?: InputMaybe; + datasources?: InputMaybe; + datasources_aggregate?: InputMaybe; +}; + +/** unique or primary key constraints on table "auth_options" */ +export enum Auth_Options_Constraint { + /** unique or primary key constraint on columns "auth" */ + AuthOptionsPkey = "auth_options_pkey", +} + +export enum Auth_Options_Enum { + Private = "private", + Shared = "shared", +} + +/** Boolean expression to compare columns of type "auth_options_enum". All fields are combined with logical 'AND'. */ +export type Auth_Options_Enum_Comparison_Exp = { + _eq?: InputMaybe; + _in?: InputMaybe>; + _is_null?: InputMaybe; + _neq?: InputMaybe; + _nin?: InputMaybe>; +}; + +/** input type for inserting data into table "auth_options" */ +export type Auth_Options_Insert_Input = { + auth?: InputMaybe; + datasources?: InputMaybe; +}; + +/** aggregate max on columns */ +export type Auth_Options_Max_Fields = { + __typename?: "auth_options_max_fields"; + auth?: Maybe; +}; + +/** aggregate min on columns */ +export type Auth_Options_Min_Fields = { + __typename?: "auth_options_min_fields"; + auth?: Maybe; +}; + +/** response of any mutation on the table "auth_options" */ +export type Auth_Options_Mutation_Response = { + __typename?: "auth_options_mutation_response"; + /** number of rows affected by the mutation */ + affected_rows: Scalars["Int"]["output"]; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** input type for inserting object relation for remote table "auth_options" */ +export type Auth_Options_Obj_Rel_Insert_Input = { + data: Auth_Options_Insert_Input; + /** upsert condition */ + on_conflict?: InputMaybe; +}; + +/** on_conflict condition type for table "auth_options" */ +export type Auth_Options_On_Conflict = { + constraint: Auth_Options_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "auth_options". */ +export type Auth_Options_Order_By = { + auth?: InputMaybe; + datasources_aggregate?: InputMaybe; +}; + +/** primary key columns input for table: auth_options */ +export type Auth_Options_Pk_Columns_Input = { + auth: Scalars["String"]["input"]; +}; + +/** select columns of table "auth_options" */ +export enum Auth_Options_Select_Column { + /** column name */ + Auth = "auth", +} + +/** input type for updating data in table "auth_options" */ +export type Auth_Options_Set_Input = { + auth?: InputMaybe; +}; + +/** Streaming cursor of the table "auth_options" */ +export type Auth_Options_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Auth_Options_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Auth_Options_Stream_Cursor_Value_Input = { + auth?: InputMaybe; +}; + +/** update columns of table "auth_options" */ +export enum Auth_Options_Update_Column { + /** column name */ + Auth = "auth", +} + +export type Auth_Options_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: Auth_Options_Bool_Exp; +}; + /** columns and relationships of "auth.providers" */ export type Auth_Providers = { __typename?: "auth_providers"; @@ -2576,9 +2912,31 @@ export type Auth_Roles_Updates = { /** columns and relationships of "branch_statuses" */ export type Branch_Statuses = { __typename?: "branch_statuses"; + /** An array relationship */ + branches: Array; + /** An aggregate relationship */ + branches_aggregate: Branches_Aggregate; status: Scalars["String"]["output"]; }; +/** columns and relationships of "branch_statuses" */ +export type Branch_StatusesBranchesArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "branch_statuses" */ +export type Branch_StatusesBranches_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + /** aggregated selection of "branch_statuses" */ export type Branch_Statuses_Aggregate = { __typename?: "branch_statuses_aggregate"; @@ -2605,6 +2963,8 @@ export type Branch_Statuses_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; + branches?: InputMaybe; + branches_aggregate?: InputMaybe; status?: InputMaybe; }; @@ -2631,6 +2991,7 @@ export type Branch_Statuses_Enum_Comparison_Exp = { /** input type for inserting data into table "branch_statuses" */ export type Branch_Statuses_Insert_Input = { + branches?: InputMaybe; status?: InputMaybe; }; @@ -2671,6 +3032,7 @@ export type Branch_Statuses_On_Conflict = { /** Ordering options when selecting data from "branch_statuses". */ export type Branch_Statuses_Order_By = { + branches_aggregate?: InputMaybe; status?: InputMaybe; }; @@ -3061,17 +3423,315 @@ export type Citext_Comparison_Exp = { _similar?: InputMaybe; }; -/** fields of action: "create_events" */ -export type Create_Events = { - __typename?: "create_events"; - /** the time at which this action was created */ - created_at: Scalars["timestamptz"]["output"]; - /** errors related to the invocation */ - errors?: Maybe; - /** the unique id of an action */ - id: Scalars["uuid"]["output"]; - /** the output fields of this action */ - output: Events_Create_Mutation_Response; +/** fields of action: "create_events" */ +export type Create_Events = { + __typename?: "create_events"; + /** the time at which this action was created */ + created_at: Scalars["timestamptz"]["output"]; + /** errors related to the invocation */ + errors?: Maybe; + /** the unique id of an action */ + id: Scalars["uuid"]["output"]; + /** the output fields of this action */ + output: Events_Create_Mutation_Response; +}; + +/** columns and relationships of "credentials" */ +export type Credentials = { + __typename?: "credentials"; + /** An object relationship */ + accessTypeByAccessType: Access_Types; + access_type: Access_Types_Enum; + created_at: Scalars["timestamptz"]["output"]; + /** An object relationship */ + datasource: Datasources; + datasource_id: Scalars["uuid"]["output"]; + id: Scalars["uuid"]["output"]; + /** An array relationship */ + member_credentials: Array; + /** An aggregate relationship */ + member_credentials_aggregate: Member_Credentials_Aggregate; + password?: Maybe; + updated_at: Scalars["timestamptz"]["output"]; + /** An object relationship */ + user: Users; + user_id: Scalars["uuid"]["output"]; + username: Scalars["String"]["output"]; +}; + +/** columns and relationships of "credentials" */ +export type CredentialsMember_CredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "credentials" */ +export type CredentialsMember_Credentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** aggregated selection of "credentials" */ +export type Credentials_Aggregate = { + __typename?: "credentials_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +export type Credentials_Aggregate_Bool_Exp = { + count?: InputMaybe; +}; + +export type Credentials_Aggregate_Bool_Exp_Count = { + arguments?: InputMaybe>; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Int_Comparison_Exp; +}; + +/** aggregate fields of "credentials" */ +export type Credentials_Aggregate_Fields = { + __typename?: "credentials_aggregate_fields"; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; +}; + +/** aggregate fields of "credentials" */ +export type Credentials_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** order by aggregate values of table "credentials" */ +export type Credentials_Aggregate_Order_By = { + count?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; +}; + +/** input type for inserting array relation for remote table "credentials" */ +export type Credentials_Arr_Rel_Insert_Input = { + data: Array; + /** upsert condition */ + on_conflict?: InputMaybe; +}; + +/** Boolean expression to filter rows from the table "credentials". All fields are combined with a logical 'AND'. */ +export type Credentials_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + accessTypeByAccessType?: InputMaybe; + access_type?: InputMaybe; + created_at?: InputMaybe; + datasource?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_credentials?: InputMaybe; + member_credentials_aggregate?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** unique or primary key constraints on table "credentials" */ +export enum Credentials_Constraint { + /** unique or primary key constraint on columns "id" */ + CredentialsPkey = "credentials_pkey", +} + +/** input type for inserting data into table "credentials" */ +export type Credentials_Insert_Input = { + accessTypeByAccessType?: InputMaybe; + access_type?: InputMaybe; + created_at?: InputMaybe; + datasource?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_credentials?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** aggregate max on columns */ +export type Credentials_Max_Fields = { + __typename?: "credentials_max_fields"; + created_at?: Maybe; + datasource_id?: Maybe; + id?: Maybe; + password?: Maybe; + updated_at?: Maybe; + user_id?: Maybe; + username?: Maybe; +}; + +/** order by max() on columns of table "credentials" */ +export type Credentials_Max_Order_By = { + created_at?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** aggregate min on columns */ +export type Credentials_Min_Fields = { + __typename?: "credentials_min_fields"; + created_at?: Maybe; + datasource_id?: Maybe; + id?: Maybe; + password?: Maybe; + updated_at?: Maybe; + user_id?: Maybe; + username?: Maybe; +}; + +/** order by min() on columns of table "credentials" */ +export type Credentials_Min_Order_By = { + created_at?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** response of any mutation on the table "credentials" */ +export type Credentials_Mutation_Response = { + __typename?: "credentials_mutation_response"; + /** number of rows affected by the mutation */ + affected_rows: Scalars["Int"]["output"]; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** input type for inserting object relation for remote table "credentials" */ +export type Credentials_Obj_Rel_Insert_Input = { + data: Credentials_Insert_Input; + /** upsert condition */ + on_conflict?: InputMaybe; +}; + +/** on_conflict condition type for table "credentials" */ +export type Credentials_On_Conflict = { + constraint: Credentials_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "credentials". */ +export type Credentials_Order_By = { + accessTypeByAccessType?: InputMaybe; + access_type?: InputMaybe; + created_at?: InputMaybe; + datasource?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_credentials_aggregate?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** primary key columns input for table: credentials */ +export type Credentials_Pk_Columns_Input = { + id: Scalars["uuid"]["input"]; +}; + +/** select columns of table "credentials" */ +export enum Credentials_Select_Column { + /** column name */ + AccessType = "access_type", + /** column name */ + CreatedAt = "created_at", + /** column name */ + DatasourceId = "datasource_id", + /** column name */ + Id = "id", + /** column name */ + Password = "password", + /** column name */ + UpdatedAt = "updated_at", + /** column name */ + UserId = "user_id", + /** column name */ + Username = "username", +} + +/** input type for updating data in table "credentials" */ +export type Credentials_Set_Input = { + access_type?: InputMaybe; + created_at?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** Streaming cursor of the table "credentials" */ +export type Credentials_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Credentials_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Credentials_Stream_Cursor_Value_Input = { + access_type?: InputMaybe; + created_at?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + password?: InputMaybe; + updated_at?: InputMaybe; + user_id?: InputMaybe; + username?: InputMaybe; +}; + +/** update columns of table "credentials" */ +export enum Credentials_Update_Column { + /** column name */ + AccessType = "access_type", + /** column name */ + CreatedAt = "created_at", + /** column name */ + DatasourceId = "datasource_id", + /** column name */ + Id = "id", + /** column name */ + Password = "password", + /** column name */ + UpdatedAt = "updated_at", + /** column name */ + UserId = "user_id", + /** column name */ + Username = "username", +} + +export type Credentials_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: Credentials_Bool_Exp; }; /** ordering argument of a cursor */ @@ -3682,18 +4342,23 @@ export type Dataschemas_Updates = { /** columns and relationships of "datasources" */ export type Datasources = { __typename?: "datasources"; + auth: Auth_Options_Enum; + /** An object relationship */ + auth_option: Auth_Options; /** An array relationship */ branches: Array; /** An aggregate relationship */ branches_aggregate: Branches_Aggregate; created_at: Scalars["timestamptz"]["output"]; /** An array relationship */ + credentials: Array; + /** An aggregate relationship */ + credentials_aggregate: Credentials_Aggregate; + /** An array relationship */ dataschemas: Array; /** An aggregate relationship */ dataschemas_aggregate: Dataschemas_Aggregate; db_params: Scalars["jsonb"]["output"]; - /** A computed field, executes function "hide_password" */ - db_params_computed?: Maybe; db_type: Scalars["String"]["output"]; /** An array relationship */ explorations: Array; @@ -3736,6 +4401,24 @@ export type DatasourcesBranches_AggregateArgs = { where?: InputMaybe; }; +/** columns and relationships of "datasources" */ +export type DatasourcesCredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "datasources" */ +export type DatasourcesCredentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + /** columns and relationships of "datasources" */ export type DatasourcesDataschemasArgs = { distinct_on?: InputMaybe>; @@ -3759,11 +4442,6 @@ export type DatasourcesDb_ParamsArgs = { path?: InputMaybe; }; -/** columns and relationships of "datasources" */ -export type DatasourcesDb_Params_ComputedArgs = { - path?: InputMaybe; -}; - /** columns and relationships of "datasources" */ export type DatasourcesExplorationsArgs = { distinct_on?: InputMaybe>; @@ -3874,13 +4552,16 @@ export type Datasources_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; + auth?: InputMaybe; + auth_option?: InputMaybe; branches?: InputMaybe; branches_aggregate?: InputMaybe; created_at?: InputMaybe; + credentials?: InputMaybe; + credentials_aggregate?: InputMaybe; dataschemas?: InputMaybe; dataschemas_aggregate?: InputMaybe; db_params?: InputMaybe; - db_params_computed?: InputMaybe; db_type?: InputMaybe; explorations?: InputMaybe; explorations_aggregate?: InputMaybe; @@ -3920,8 +4601,11 @@ export type Datasources_Delete_Key_Input = { /** input type for inserting data into table "datasources" */ export type Datasources_Insert_Input = { + auth?: InputMaybe; + auth_option?: InputMaybe; branches?: InputMaybe; created_at?: InputMaybe; + credentials?: InputMaybe; dataschemas?: InputMaybe; db_params?: InputMaybe; db_type?: InputMaybe; @@ -4008,11 +4692,13 @@ export type Datasources_On_Conflict = { /** Ordering options when selecting data from "datasources". */ export type Datasources_Order_By = { + auth?: InputMaybe; + auth_option?: InputMaybe; branches_aggregate?: InputMaybe; created_at?: InputMaybe; + credentials_aggregate?: InputMaybe; dataschemas_aggregate?: InputMaybe; db_params?: InputMaybe; - db_params_computed?: InputMaybe; db_type?: InputMaybe; explorations_aggregate?: InputMaybe; id?: InputMaybe; @@ -4038,6 +4724,8 @@ export type Datasources_Prepend_Input = { /** select columns of table "datasources" */ export enum Datasources_Select_Column { + /** column name */ + Auth = "auth", /** column name */ CreatedAt = "created_at", /** column name */ @@ -4058,6 +4746,7 @@ export enum Datasources_Select_Column { /** input type for updating data in table "datasources" */ export type Datasources_Set_Input = { + auth?: InputMaybe; created_at?: InputMaybe; db_params?: InputMaybe; db_type?: InputMaybe; @@ -4078,6 +4767,7 @@ export type Datasources_Stream_Cursor_Input = { /** Initial value of the column from where the streaming should start */ export type Datasources_Stream_Cursor_Value_Input = { + auth?: InputMaybe; created_at?: InputMaybe; db_params?: InputMaybe; db_type?: InputMaybe; @@ -4090,6 +4780,8 @@ export type Datasources_Stream_Cursor_Value_Input = { /** update columns of table "datasources" */ export enum Datasources_Update_Column { + /** column name */ + Auth = "auth", /** column name */ CreatedAt = "created_at", /** column name */ @@ -4824,6 +5516,246 @@ export type Jsonb_Comparison_Exp = { _nin?: InputMaybe>; }; +/** columns and relationships of "member_credentials" */ +export type Member_Credentials = { + __typename?: "member_credentials"; + created_at: Scalars["timestamptz"]["output"]; + /** An object relationship */ + credential: Credentials; + credential_id: Scalars["uuid"]["output"]; + datasource_id: Scalars["uuid"]["output"]; + id: Scalars["uuid"]["output"]; + /** An object relationship */ + member: Members; + member_id: Scalars["uuid"]["output"]; + updated_at: Scalars["timestamptz"]["output"]; +}; + +/** aggregated selection of "member_credentials" */ +export type Member_Credentials_Aggregate = { + __typename?: "member_credentials_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +export type Member_Credentials_Aggregate_Bool_Exp = { + count?: InputMaybe; +}; + +export type Member_Credentials_Aggregate_Bool_Exp_Count = { + arguments?: InputMaybe>; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Int_Comparison_Exp; +}; + +/** aggregate fields of "member_credentials" */ +export type Member_Credentials_Aggregate_Fields = { + __typename?: "member_credentials_aggregate_fields"; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; +}; + +/** aggregate fields of "member_credentials" */ +export type Member_Credentials_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** order by aggregate values of table "member_credentials" */ +export type Member_Credentials_Aggregate_Order_By = { + count?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; +}; + +/** input type for inserting array relation for remote table "member_credentials" */ +export type Member_Credentials_Arr_Rel_Insert_Input = { + data: Array; + /** upsert condition */ + on_conflict?: InputMaybe; +}; + +/** Boolean expression to filter rows from the table "member_credentials". All fields are combined with a logical 'AND'. */ +export type Member_Credentials_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + created_at?: InputMaybe; + credential?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** unique or primary key constraints on table "member_credentials" */ +export enum Member_Credentials_Constraint { + /** unique or primary key constraint on columns "credential_id", "member_id" */ + MemberCredentialsCredentialIdMemberIdKey = "member_credentials_credential_id_member_id_key", + /** unique or primary key constraint on columns "member_id", "datasource_id" */ + MemberCredentialsDatasourceIdMemberIdKey = "member_credentials_datasource_id_member_id_key", + /** unique or primary key constraint on columns "id" */ + MemberCredentialsPkey = "member_credentials_pkey", +} + +/** input type for inserting data into table "member_credentials" */ +export type Member_Credentials_Insert_Input = { + created_at?: InputMaybe; + credential?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** aggregate max on columns */ +export type Member_Credentials_Max_Fields = { + __typename?: "member_credentials_max_fields"; + created_at?: Maybe; + credential_id?: Maybe; + datasource_id?: Maybe; + id?: Maybe; + member_id?: Maybe; + updated_at?: Maybe; +}; + +/** order by max() on columns of table "member_credentials" */ +export type Member_Credentials_Max_Order_By = { + created_at?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** aggregate min on columns */ +export type Member_Credentials_Min_Fields = { + __typename?: "member_credentials_min_fields"; + created_at?: Maybe; + credential_id?: Maybe; + datasource_id?: Maybe; + id?: Maybe; + member_id?: Maybe; + updated_at?: Maybe; +}; + +/** order by min() on columns of table "member_credentials" */ +export type Member_Credentials_Min_Order_By = { + created_at?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** response of any mutation on the table "member_credentials" */ +export type Member_Credentials_Mutation_Response = { + __typename?: "member_credentials_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 "member_credentials" */ +export type Member_Credentials_On_Conflict = { + constraint: Member_Credentials_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "member_credentials". */ +export type Member_Credentials_Order_By = { + created_at?: InputMaybe; + credential?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** primary key columns input for table: member_credentials */ +export type Member_Credentials_Pk_Columns_Input = { + id: Scalars["uuid"]["input"]; +}; + +/** select columns of table "member_credentials" */ +export enum Member_Credentials_Select_Column { + /** column name */ + CreatedAt = "created_at", + /** column name */ + CredentialId = "credential_id", + /** column name */ + DatasourceId = "datasource_id", + /** column name */ + Id = "id", + /** column name */ + MemberId = "member_id", + /** column name */ + UpdatedAt = "updated_at", +} + +/** input type for updating data in table "member_credentials" */ +export type Member_Credentials_Set_Input = { + created_at?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** Streaming cursor of the table "member_credentials" */ +export type Member_Credentials_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Member_Credentials_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Member_Credentials_Stream_Cursor_Value_Input = { + created_at?: InputMaybe; + credential_id?: InputMaybe; + datasource_id?: InputMaybe; + id?: InputMaybe; + member_id?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** update columns of table "member_credentials" */ +export enum Member_Credentials_Update_Column { + /** column name */ + CreatedAt = "created_at", + /** column name */ + CredentialId = "credential_id", + /** column name */ + DatasourceId = "datasource_id", + /** column name */ + Id = "id", + /** column name */ + MemberId = "member_id", + /** column name */ + UpdatedAt = "updated_at", +} + +export type Member_Credentials_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: Member_Credentials_Bool_Exp; +}; + /** columns and relationships of "member_roles" */ export type Member_Roles = { __typename?: "member_roles"; @@ -5069,6 +6001,10 @@ export type Members = { created_at: Scalars["timestamptz"]["output"]; id: Scalars["uuid"]["output"]; /** An array relationship */ + member_credentials: Array; + /** An aggregate relationship */ + member_credentials_aggregate: Member_Credentials_Aggregate; + /** An array relationship */ member_roles: Array; /** An aggregate relationship */ member_roles_aggregate: Member_Roles_Aggregate; @@ -5081,6 +6017,24 @@ export type Members = { user_id: Scalars["uuid"]["output"]; }; +/** columns and relationships of "members" */ +export type MembersMember_CredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "members" */ +export type MembersMember_Credentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + /** columns and relationships of "members" */ export type MembersMember_RolesArgs = { distinct_on?: InputMaybe>; @@ -5152,6 +6106,8 @@ export type Members_Bool_Exp = { _or?: InputMaybe>; created_at?: InputMaybe; id?: InputMaybe; + member_credentials?: InputMaybe; + member_credentials_aggregate?: InputMaybe; member_roles?: InputMaybe; member_roles_aggregate?: InputMaybe; team?: InputMaybe; @@ -5173,6 +6129,7 @@ export enum Members_Constraint { export type Members_Insert_Input = { created_at?: InputMaybe; id?: InputMaybe; + member_credentials?: InputMaybe; member_roles?: InputMaybe; team?: InputMaybe; team_id?: InputMaybe; @@ -5246,6 +6203,7 @@ export type Members_On_Conflict = { export type Members_Order_By = { created_at?: InputMaybe; id?: InputMaybe; + member_credentials_aggregate?: InputMaybe; member_roles_aggregate?: InputMaybe; team?: InputMaybe; team_id?: InputMaybe; @@ -5330,6 +6288,10 @@ export type Mutation_Root = { delete_access_lists?: Maybe; /** delete single row from the table: "access_lists" */ delete_access_lists_by_pk?: Maybe; + /** delete data from the table: "access_types" */ + delete_access_types?: Maybe; + /** delete single row from the table: "access_types" */ + delete_access_types_by_pk?: Maybe; /** delete data from the table: "alerts" */ delete_alerts?: Maybe; /** delete single row from the table: "alerts" */ @@ -5350,6 +6312,10 @@ export type Mutation_Root = { delete_auth_migrations?: Maybe; /** delete single row from the table: "auth.migrations" */ delete_auth_migrations_by_pk?: Maybe; + /** delete data from the table: "auth_options" */ + delete_auth_options?: Maybe; + /** delete single row from the table: "auth_options" */ + delete_auth_options_by_pk?: Maybe; /** delete data from the table: "auth.providers" */ delete_auth_providers?: Maybe; /** delete single row from the table: "auth.providers" */ @@ -5370,6 +6336,10 @@ export type Mutation_Root = { delete_branches?: Maybe; /** delete single row from the table: "branches" */ delete_branches_by_pk?: Maybe; + /** delete data from the table: "credentials" */ + delete_credentials?: Maybe; + /** delete single row from the table: "credentials" */ + delete_credentials_by_pk?: Maybe; /** delete data from the table: "dashboards" */ delete_dashboards?: Maybe; /** delete single row from the table: "dashboards" */ @@ -5390,6 +6360,10 @@ export type Mutation_Root = { delete_explorations?: Maybe; /** delete single row from the table: "explorations" */ delete_explorations_by_pk?: Maybe; + /** delete data from the table: "member_credentials" */ + delete_member_credentials?: Maybe; + /** delete single row from the table: "member_credentials" */ + delete_member_credentials_by_pk?: Maybe; /** delete data from the table: "member_roles" */ delete_member_roles?: Maybe; /** delete single row from the table: "member_roles" */ @@ -5441,6 +6415,10 @@ export type Mutation_Root = { insert_access_lists?: Maybe; /** insert a single row into the table: "access_lists" */ insert_access_lists_one?: Maybe; + /** insert data into the table: "access_types" */ + insert_access_types?: Maybe; + /** insert a single row into the table: "access_types" */ + insert_access_types_one?: Maybe; /** insert data into the table: "alerts" */ insert_alerts?: Maybe; /** insert a single row into the table: "alerts" */ @@ -5461,6 +6439,10 @@ export type Mutation_Root = { insert_auth_migrations?: Maybe; /** insert a single row into the table: "auth.migrations" */ insert_auth_migrations_one?: Maybe; + /** insert data into the table: "auth_options" */ + insert_auth_options?: Maybe; + /** insert a single row into the table: "auth_options" */ + insert_auth_options_one?: Maybe; /** insert data into the table: "auth.providers" */ insert_auth_providers?: Maybe; /** insert a single row into the table: "auth.providers" */ @@ -5481,6 +6463,10 @@ export type Mutation_Root = { insert_branches?: Maybe; /** insert a single row into the table: "branches" */ insert_branches_one?: Maybe; + /** insert data into the table: "credentials" */ + insert_credentials?: Maybe; + /** insert a single row into the table: "credentials" */ + insert_credentials_one?: Maybe; /** insert data into the table: "dashboards" */ insert_dashboards?: Maybe; /** insert a single row into the table: "dashboards" */ @@ -5501,6 +6487,10 @@ export type Mutation_Root = { insert_explorations?: Maybe; /** insert a single row into the table: "explorations" */ insert_explorations_one?: Maybe; + /** insert data into the table: "member_credentials" */ + insert_member_credentials?: Maybe; + /** insert a single row into the table: "member_credentials" */ + insert_member_credentials_one?: Maybe; /** insert data into the table: "member_roles" */ insert_member_roles?: Maybe; /** insert a single row into the table: "member_roles" */ @@ -5556,6 +6546,14 @@ export type Mutation_Root = { update_access_lists_many?: Maybe< Array> >; + /** update data of the table: "access_types" */ + update_access_types?: Maybe; + /** update single row of the table: "access_types" */ + update_access_types_by_pk?: Maybe; + /** update multiples rows of table: "access_types" */ + update_access_types_many?: Maybe< + Array> + >; /** update data of the table: "alerts" */ update_alerts?: Maybe; /** update single row of the table: "alerts" */ @@ -5594,6 +6592,14 @@ export type Mutation_Root = { update_auth_migrations_many?: Maybe< Array> >; + /** update data of the table: "auth_options" */ + update_auth_options?: Maybe; + /** update single row of the table: "auth_options" */ + update_auth_options_by_pk?: Maybe; + /** update multiples rows of table: "auth_options" */ + update_auth_options_many?: Maybe< + Array> + >; /** update data of the table: "auth.providers" */ update_auth_providers?: Maybe; /** update single row of the table: "auth.providers" */ @@ -5630,6 +6636,12 @@ export type Mutation_Root = { update_branches_by_pk?: Maybe; /** update multiples rows of table: "branches" */ update_branches_many?: Maybe>>; + /** update data of the table: "credentials" */ + update_credentials?: Maybe; + /** update single row of the table: "credentials" */ + update_credentials_by_pk?: Maybe; + /** update multiples rows of table: "credentials" */ + update_credentials_many?: Maybe>>; /** update data of the table: "dashboards" */ update_dashboards?: Maybe; /** update single row of the table: "dashboards" */ @@ -5662,6 +6674,14 @@ export type Mutation_Root = { update_explorations_many?: Maybe< Array> >; + /** update data of the table: "member_credentials" */ + update_member_credentials?: Maybe; + /** update single row of the table: "member_credentials" */ + update_member_credentials_by_pk?: Maybe; + /** update multiples rows of table: "member_credentials" */ + update_member_credentials_many?: Maybe< + Array> + >; /** update data of the table: "member_roles" */ update_member_roles?: Maybe; /** update single row of the table: "member_roles" */ @@ -5765,6 +6785,16 @@ export type Mutation_RootDelete_Access_Lists_By_PkArgs = { id: Scalars["uuid"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_Access_TypesArgs = { + where: Access_Types_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_Access_Types_By_PkArgs = { + access_type: Scalars["String"]["input"]; +}; + /** mutation root */ export type Mutation_RootDelete_AlertsArgs = { where: Alerts_Bool_Exp; @@ -5815,6 +6845,16 @@ export type Mutation_RootDelete_Auth_Migrations_By_PkArgs = { id: Scalars["Int"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_Auth_OptionsArgs = { + where: Auth_Options_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_Auth_Options_By_PkArgs = { + auth: Scalars["String"]["input"]; +}; + /** mutation root */ export type Mutation_RootDelete_Auth_ProvidersArgs = { where: Auth_Providers_Bool_Exp; @@ -5865,6 +6905,16 @@ export type Mutation_RootDelete_Branches_By_PkArgs = { id: Scalars["uuid"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_CredentialsArgs = { + where: Credentials_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_Credentials_By_PkArgs = { + id: Scalars["uuid"]["input"]; +}; + /** mutation root */ export type Mutation_RootDelete_DashboardsArgs = { where: Dashboards_Bool_Exp; @@ -5915,6 +6965,16 @@ export type Mutation_RootDelete_Explorations_By_PkArgs = { id: Scalars["uuid"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_Member_CredentialsArgs = { + where: Member_Credentials_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_Member_Credentials_By_PkArgs = { + id: Scalars["uuid"]["input"]; +}; + /** mutation root */ export type Mutation_RootDelete_Member_RolesArgs = { where: Member_Roles_Bool_Exp; @@ -6056,6 +7116,18 @@ export type Mutation_RootInsert_Access_Lists_OneArgs = { on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_Access_TypesArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_Access_Types_OneArgs = { + object: Access_Types_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInsert_AlertsArgs = { objects: Array; @@ -6116,6 +7188,18 @@ export type Mutation_RootInsert_Auth_Migrations_OneArgs = { on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_Auth_OptionsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_Auth_Options_OneArgs = { + object: Auth_Options_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInsert_Auth_ProvidersArgs = { objects: Array; @@ -6176,6 +7260,18 @@ export type Mutation_RootInsert_Branches_OneArgs = { on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_CredentialsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_Credentials_OneArgs = { + object: Credentials_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInsert_DashboardsArgs = { objects: Array; @@ -6236,6 +7332,18 @@ export type Mutation_RootInsert_Explorations_OneArgs = { on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_Member_CredentialsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_Member_Credentials_OneArgs = { + object: Member_Credentials_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInsert_Member_RolesArgs = { objects: Array; @@ -6418,6 +7526,23 @@ export type Mutation_RootUpdate_Access_Lists_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_Access_TypesArgs = { + _set?: InputMaybe; + where: Access_Types_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Access_Types_By_PkArgs = { + _set?: InputMaybe; + pk_columns: Access_Types_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Access_Types_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootUpdate_AlertsArgs = { _append?: InputMaybe; @@ -6525,6 +7650,23 @@ export type Mutation_RootUpdate_Auth_Migrations_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_Auth_OptionsArgs = { + _set?: InputMaybe; + where: Auth_Options_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Auth_Options_By_PkArgs = { + _set?: InputMaybe; + pk_columns: Auth_Options_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Auth_Options_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootUpdate_Auth_ProvidersArgs = { _set?: InputMaybe; @@ -6610,6 +7752,23 @@ export type Mutation_RootUpdate_Branches_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_CredentialsArgs = { + _set?: InputMaybe; + where: Credentials_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Credentials_By_PkArgs = { + _set?: InputMaybe; + pk_columns: Credentials_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Credentials_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootUpdate_DashboardsArgs = { _append?: InputMaybe; @@ -6735,6 +7894,23 @@ export type Mutation_RootUpdate_Explorations_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_Member_CredentialsArgs = { + _set?: InputMaybe; + where: Member_Credentials_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Member_Credentials_By_PkArgs = { + _set?: InputMaybe; + pk_columns: Member_Credentials_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Member_Credentials_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootUpdate_Member_RolesArgs = { _set?: InputMaybe; @@ -7311,6 +8487,12 @@ export type Query_Root = { access_lists_aggregate: Access_Lists_Aggregate; /** fetch data from the table: "access_lists" using primary key columns */ access_lists_by_pk?: Maybe; + /** fetch data from the table: "access_types" */ + access_types: Array; + /** fetch aggregated fields from the table: "access_types" */ + access_types_aggregate: Access_Types_Aggregate; + /** fetch data from the table: "access_types" using primary key columns */ + access_types_by_pk?: Maybe; /** An array relationship */ alerts: Array; /** An aggregate relationship */ @@ -7341,6 +8523,12 @@ export type Query_Root = { auth_migrations_aggregate: Auth_Migrations_Aggregate; /** fetch data from the table: "auth.migrations" using primary key columns */ auth_migrations_by_pk?: Maybe; + /** fetch data from the table: "auth_options" */ + auth_options: Array; + /** fetch aggregated fields from the table: "auth_options" */ + auth_options_aggregate: Auth_Options_Aggregate; + /** fetch data from the table: "auth_options" using primary key columns */ + auth_options_by_pk?: Maybe; /** fetch data from the table: "auth.providers" */ auth_providers: Array; /** fetch aggregated fields from the table: "auth.providers" */ @@ -7373,6 +8561,12 @@ export type Query_Root = { branches_by_pk?: Maybe; create_events?: Maybe; /** An array relationship */ + credentials: Array; + /** An aggregate relationship */ + credentials_aggregate: Credentials_Aggregate; + /** fetch data from the table: "credentials" using primary key columns */ + credentials_by_pk?: Maybe; + /** An array relationship */ dashboards: Array; /** An aggregate relationship */ dashboards_aggregate: Dashboards_Aggregate; @@ -7406,6 +8600,12 @@ export type Query_Root = { fetch_meta?: Maybe; fetch_tables?: Maybe; /** An array relationship */ + member_credentials: Array; + /** An aggregate relationship */ + member_credentials_aggregate: Member_Credentials_Aggregate; + /** fetch data from the table: "member_credentials" using primary key columns */ + member_credentials_by_pk?: Maybe; + /** An array relationship */ member_roles: Array; /** An aggregate relationship */ member_roles_aggregate: Member_Roles_Aggregate; @@ -7495,6 +8695,26 @@ export type Query_RootAccess_Lists_By_PkArgs = { id: Scalars["uuid"]["input"]; }; +export type Query_RootAccess_TypesArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAccess_Types_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAccess_Types_By_PkArgs = { + access_type: Scalars["String"]["input"]; +}; + export type Query_RootAlertsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -7595,6 +8815,26 @@ export type Query_RootAuth_Migrations_By_PkArgs = { id: Scalars["Int"]["input"]; }; +export type Query_RootAuth_OptionsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAuth_Options_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAuth_Options_By_PkArgs = { + auth: Scalars["String"]["input"]; +}; + export type Query_RootAuth_ProvidersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -7699,6 +8939,26 @@ export type Query_RootCreate_EventsArgs = { id: Scalars["uuid"]["input"]; }; +export type Query_RootCredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootCredentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootCredentials_By_PkArgs = { + id: Scalars["uuid"]["input"]; +}; + export type Query_RootDashboardsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -7814,6 +9074,26 @@ export type Query_RootFetch_TablesArgs = { datasource_id: Scalars["uuid"]["input"]; }; +export type Query_RootMember_CredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootMember_Credentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootMember_Credentials_By_PkArgs = { + id: Scalars["uuid"]["input"]; +}; + export type Query_RootMember_RolesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -9553,6 +10833,14 @@ export type Subscription_Root = { access_lists_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "access_lists" */ access_lists_stream: Array; + /** fetch data from the table: "access_types" */ + access_types: Array; + /** fetch aggregated fields from the table: "access_types" */ + access_types_aggregate: Access_Types_Aggregate; + /** fetch data from the table: "access_types" using primary key columns */ + access_types_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "access_types" */ + access_types_stream: Array; /** An array relationship */ alerts: Array; /** An aggregate relationship */ @@ -9593,6 +10881,14 @@ export type Subscription_Root = { auth_migrations_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "auth.migrations" */ auth_migrations_stream: Array; + /** fetch data from the table: "auth_options" */ + auth_options: Array; + /** fetch aggregated fields from the table: "auth_options" */ + auth_options_aggregate: Auth_Options_Aggregate; + /** fetch data from the table: "auth_options" using primary key columns */ + auth_options_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "auth_options" */ + auth_options_stream: Array; /** fetch data from the table: "auth.providers" */ auth_providers: Array; /** fetch aggregated fields from the table: "auth.providers" */ @@ -9635,6 +10931,14 @@ export type Subscription_Root = { branches_stream: Array; create_events?: Maybe; /** An array relationship */ + credentials: Array; + /** An aggregate relationship */ + credentials_aggregate: Credentials_Aggregate; + /** fetch data from the table: "credentials" using primary key columns */ + credentials_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "credentials" */ + credentials_stream: Array; + /** An array relationship */ dashboards: Array; /** An aggregate relationship */ dashboards_aggregate: Dashboards_Aggregate; @@ -9675,6 +10979,14 @@ export type Subscription_Root = { /** fetch data from the table in a streaming manner: "explorations" */ explorations_stream: Array; /** An array relationship */ + member_credentials: Array; + /** An aggregate relationship */ + member_credentials_aggregate: Member_Credentials_Aggregate; + /** fetch data from the table: "member_credentials" using primary key columns */ + member_credentials_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "member_credentials" */ + member_credentials_stream: Array; + /** An array relationship */ member_roles: Array; /** An aggregate relationship */ member_roles_aggregate: Member_Roles_Aggregate; @@ -9790,6 +11102,32 @@ export type Subscription_RootAccess_Lists_StreamArgs = { where?: InputMaybe; }; +export type Subscription_RootAccess_TypesArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAccess_Types_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAccess_Types_By_PkArgs = { + access_type: Scalars["String"]["input"]; +}; + +export type Subscription_RootAccess_Types_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + export type Subscription_RootAlertsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -9920,6 +11258,32 @@ export type Subscription_RootAuth_Migrations_StreamArgs = { where?: InputMaybe; }; +export type Subscription_RootAuth_OptionsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAuth_Options_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAuth_Options_By_PkArgs = { + auth: Scalars["String"]["input"]; +}; + +export type Subscription_RootAuth_Options_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + export type Subscription_RootAuth_ProvidersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -10054,6 +11418,32 @@ export type Subscription_RootCreate_EventsArgs = { id: Scalars["uuid"]["input"]; }; +export type Subscription_RootCredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootCredentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootCredentials_By_PkArgs = { + id: Scalars["uuid"]["input"]; +}; + +export type Subscription_RootCredentials_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + export type Subscription_RootDashboardsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -10184,6 +11574,32 @@ export type Subscription_RootExplorations_StreamArgs = { where?: InputMaybe; }; +export type Subscription_RootMember_CredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootMember_Credentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootMember_Credentials_By_PkArgs = { + id: Scalars["uuid"]["input"]; +}; + +export type Subscription_RootMember_Credentials_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + export type Subscription_RootMember_RolesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -11063,6 +12479,10 @@ export type Users = { branches_aggregate: Branches_Aggregate; created_at: Scalars["timestamptz"]["output"]; /** An array relationship */ + credentials: Array; + /** An aggregate relationship */ + credentials_aggregate: Credentials_Aggregate; + /** An array relationship */ dataschemas: Array; /** An aggregate relationship */ dataschemas_aggregate: Dataschemas_Aggregate; @@ -11135,6 +12555,24 @@ export type UsersBranches_AggregateArgs = { where?: InputMaybe; }; +/** columns and relationships of "users" */ +export type UsersCredentialsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** columns and relationships of "users" */ +export type UsersCredentials_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + /** columns and relationships of "users" */ export type UsersDataschemasArgs = { distinct_on?: InputMaybe>; @@ -11312,6 +12750,8 @@ export type Users_Bool_Exp = { branches?: InputMaybe; branches_aggregate?: InputMaybe; created_at?: InputMaybe; + credentials?: InputMaybe; + credentials_aggregate?: InputMaybe; dataschemas?: InputMaybe; dataschemas_aggregate?: InputMaybe; datasources?: InputMaybe; @@ -11346,6 +12786,7 @@ export type Users_Insert_Input = { avatar_url?: InputMaybe; branches?: InputMaybe; created_at?: InputMaybe; + credentials?: InputMaybe; dataschemas?: InputMaybe; datasources?: InputMaybe; display_name?: InputMaybe; @@ -11409,6 +12850,7 @@ export type Users_Order_By = { avatar_url?: InputMaybe; branches_aggregate?: InputMaybe; created_at?: InputMaybe; + credentials_aggregate?: InputMaybe; dataschemas_aggregate?: InputMaybe; datasources_aggregate?: InputMaybe; display_name?: InputMaybe; @@ -11948,6 +13390,55 @@ export type CreateBranchMutation = { insert_branches_one?: { __typename?: "branches"; id: any } | null; }; +export type InsertCredentialMutationVariables = Exact<{ + object: Credentials_Insert_Input; +}>; + +export type InsertCredentialMutation = { + __typename?: "mutation_root"; + insert_credentials_one?: { __typename?: "credentials"; id: any } | null; +}; + +export type UpdateCredentialMutationVariables = Exact<{ + pk_columns: Credentials_Pk_Columns_Input; + _set: Credentials_Set_Input; +}>; + +export type UpdateCredentialMutation = { + __typename?: "mutation_root"; + update_credentials_by_pk?: { __typename?: "credentials"; id: any } | null; +}; + +export type DeleteCredentialMutationVariables = Exact<{ + id: Scalars["uuid"]["input"]; +}>; + +export type DeleteCredentialMutation = { + __typename?: "mutation_root"; + delete_credentials_by_pk?: { __typename?: "credentials"; id: any } | null; +}; + +export type UpdateCredentialsMutationVariables = Exact<{ + id: Scalars["uuid"]["input"]; + object?: InputMaybe; + members: + | Array + | Member_Credentials_Insert_Input; +}>; + +export type UpdateCredentialsMutation = { + __typename?: "mutation_root"; + update_credentials_by_pk?: { __typename?: "credentials"; id: any } | null; + delete_member_credentials?: { + __typename?: "member_credentials_mutation_response"; + affected_rows: number; + } | null; + insert_member_credentials?: { + __typename?: "member_credentials_mutation_response"; + affected_rows: number; + } | null; +}; + export type BranchesFieldsFragment = { __typename?: "branches"; id: any; @@ -12141,7 +13632,7 @@ export type TeamDataQuery = { __typename?: "datasources"; id: any; name: string; - db_params_computed?: any | null; + db_params: any; db_type: string; created_at: any; updated_at: any; @@ -12159,6 +13650,20 @@ export type TeamDataQuery = { updated_at: any; user: { __typename?: "users"; id: any; display_name?: string | null }; }>; + credentials: Array<{ + __typename?: "credentials"; + id: any; + user_id: any; + username: string; + access_type: Access_Types_Enum; + created_at: any; + updated_at: any; + user: { __typename?: "users"; id: any; display_name?: string | null }; + member_credentials: Array<{ + __typename?: "member_credentials"; + member_id: any; + }>; + }>; }>; alerts: Array<{ __typename?: "alerts"; @@ -12245,7 +13750,7 @@ export type SubTeamDataSubscription = { __typename?: "datasources"; id: any; name: string; - db_params_computed?: any | null; + db_params: any; db_type: string; created_at: any; updated_at: any; @@ -12263,6 +13768,16 @@ export type SubTeamDataSubscription = { updated_at: any; user: { __typename?: "users"; id: any; display_name?: string | null }; }>; + credentials: Array<{ + __typename?: "credentials"; + id: any; + user_id: any; + username: string; + access_type: Access_Types_Enum; + created_at: any; + updated_at: any; + user: { __typename?: "users"; id: any; display_name?: string | null }; + }>; }>; alerts: Array<{ __typename?: "alerts"; @@ -12380,7 +13895,7 @@ export type DatasourcesQuery = { __typename?: "datasources"; id: any; name: string; - db_params_computed?: any | null; + db_params: any; db_type: string; created_at: any; updated_at: any; @@ -12416,7 +13931,7 @@ export type AllDataSourcesSubscription = { __typename?: "datasources"; id: any; name: string; - db_params_computed?: any | null; + db_params: any; db_type: string; created_at: any; updated_at: any; @@ -12465,7 +13980,7 @@ export type CurrentDataSourceQuery = { id: any; name: string; db_type: string; - db_params_computed?: any | null; + db_params: any; created_at: any; updated_at: any; } | null; @@ -12846,11 +14361,11 @@ export type DeleteSchemaMutation = { update_branches_by_pk?: { __typename?: "branches"; id: any } | null; }; -export type CredentialsQueryVariables = Exact<{ +export type SqlCredentialsQueryVariables = Exact<{ teamId: Scalars["uuid"]["input"]; }>; -export type CredentialsQuery = { +export type SqlCredentialsQuery = { __typename?: "query_root"; sql_credentials: Array<{ __typename?: "sql_credentials"; @@ -12863,16 +14378,16 @@ export type CredentialsQuery = { id: any; name: string; db_type: string; - db_params_computed?: any | null; + db_params: any; }; }>; }; -export type SubCredentialsSubscriptionVariables = Exact<{ +export type SubSqlCredentialsSubscriptionVariables = Exact<{ teamId: Scalars["uuid"]["input"]; }>; -export type SubCredentialsSubscription = { +export type SubSqlCredentialsSubscription = { __typename?: "subscription_root"; sql_credentials: Array<{ __typename?: "sql_credentials"; id: any }>; }; @@ -12889,11 +14404,11 @@ export type InsertSqlCredentialsMutation = { } | null; }; -export type DeleteCredentialsMutationVariables = Exact<{ +export type DeleteSqlCredentialsMutationVariables = Exact<{ id: Scalars["uuid"]["input"]; }>; -export type DeleteCredentialsMutation = { +export type DeleteSqlCredentialsMutation = { __typename?: "mutation_root"; delete_sql_credentials_by_pk?: { __typename?: "sql_credentials"; @@ -13370,6 +14885,75 @@ export function useCreateBranchMutation() { CreateBranchDocument ); } +export const InsertCredentialDocument = gql` + mutation InsertCredential($object: credentials_insert_input!) { + insert_credentials_one(object: $object) { + id + } + } +`; + +export function useInsertCredentialMutation() { + return Urql.useMutation< + InsertCredentialMutation, + InsertCredentialMutationVariables + >(InsertCredentialDocument); +} +export const UpdateCredentialDocument = gql` + mutation UpdateCredential( + $pk_columns: credentials_pk_columns_input! + $_set: credentials_set_input! + ) { + update_credentials_by_pk(pk_columns: $pk_columns, _set: $_set) { + id + } + } +`; + +export function useUpdateCredentialMutation() { + return Urql.useMutation< + UpdateCredentialMutation, + UpdateCredentialMutationVariables + >(UpdateCredentialDocument); +} +export const DeleteCredentialDocument = gql` + mutation DeleteCredential($id: uuid!) { + delete_credentials_by_pk(id: $id) { + id + } + } +`; + +export function useDeleteCredentialMutation() { + return Urql.useMutation< + DeleteCredentialMutation, + DeleteCredentialMutationVariables + >(DeleteCredentialDocument); +} +export const UpdateCredentialsDocument = gql` + mutation UpdateCredentials( + $id: uuid! + $object: credentials_set_input + $members: [member_credentials_insert_input!]! + ) { + update_credentials_by_pk(pk_columns: { id: $id }, _set: $object) { + id + } + delete_member_credentials(where: { credential_id: { _eq: $id } }) { + affected_rows + } + insert_member_credentials(objects: $members) { + affected_rows + } + } +`; + +export function useUpdateCredentialsMutation() { + return Urql.useMutation< + UpdateCredentialsMutation, + UpdateCredentialsMutationVariables + >(UpdateCredentialsDocument); +} export const CurrentUserDocument = gql` query CurrentUser($id: uuid!) { users_by_pk(id: $id) { @@ -13470,7 +15054,7 @@ export const TeamDataDocument = gql` datasources(order_by: { updated_at: desc }) { id name - db_params_computed + db_params db_type created_at updated_at @@ -13490,6 +15074,21 @@ export const TeamDataDocument = gql` display_name } } + credentials(order_by: { updated_at: desc }) { + id + user_id + username + access_type + created_at + updated_at + user { + id + display_name + } + member_credentials { + member_id + } + } } alerts(order_by: { created_at: desc }) { id @@ -13555,7 +15154,7 @@ export const SubTeamDataDocument = gql` datasources(order_by: { updated_at: desc }) { id name - db_params_computed + db_params db_type created_at updated_at @@ -13575,6 +15174,18 @@ export const SubTeamDataDocument = gql` display_name } } + credentials(order_by: { updated_at: desc }) { + id + user_id + username + access_type + created_at + updated_at + user { + id + display_name + } + } } alerts(order_by: { created_at: desc }) { id @@ -13701,7 +15312,7 @@ export const DatasourcesDocument = gql` ) { id name - db_params_computed + db_params db_type created_at updated_at @@ -13750,7 +15361,7 @@ export const AllDataSourcesDocument = gql` ) { id name - db_params_computed + db_params db_type created_at updated_at @@ -13824,7 +15435,7 @@ export const CurrentDataSourceDocument = gql` id name db_type - db_params_computed + db_params created_at updated_at } @@ -14331,8 +15942,8 @@ export function useDeleteSchemaMutation() { DeleteSchemaDocument ); } -export const CredentialsDocument = gql` - query Credentials($teamId: uuid!) { +export const SqlCredentialsDocument = gql` + query SqlCredentials($teamId: uuid!) { sql_credentials( where: { datasource: { team_id: { _eq: $teamId } } } order_by: { created_at: desc } @@ -14348,42 +15959,42 @@ export const CredentialsDocument = gql` id name db_type - db_params_computed + db_params } } } `; -export function useCredentialsQuery( - options: Omit, "query"> +export function useSqlCredentialsQuery( + options: Omit, "query"> ) { - return Urql.useQuery({ - query: CredentialsDocument, + return Urql.useQuery({ + query: SqlCredentialsDocument, ...options, }); } -export const SubCredentialsDocument = gql` - subscription SubCredentials($teamId: uuid!) { +export const SubSqlCredentialsDocument = gql` + subscription SubSqlCredentials($teamId: uuid!) { sql_credentials(where: { datasource: { team_id: { _eq: $teamId } } }) { id } } `; -export function useSubCredentialsSubscription< - TData = SubCredentialsSubscription +export function useSubSqlCredentialsSubscription< + TData = SubSqlCredentialsSubscription >( options: Omit< - Urql.UseSubscriptionArgs, + Urql.UseSubscriptionArgs, "query" >, - handler?: Urql.SubscriptionHandler + handler?: Urql.SubscriptionHandler ) { return Urql.useSubscription< - SubCredentialsSubscription, + SubSqlCredentialsSubscription, TData, - SubCredentialsSubscriptionVariables - >({ query: SubCredentialsDocument, ...options }, handler); + SubSqlCredentialsSubscriptionVariables + >({ query: SubSqlCredentialsDocument, ...options }, handler); } export const InsertSqlCredentialsDocument = gql` mutation InsertSqlCredentials($object: sql_credentials_insert_input!) { @@ -14399,19 +16010,19 @@ export function useInsertSqlCredentialsMutation() { InsertSqlCredentialsMutationVariables >(InsertSqlCredentialsDocument); } -export const DeleteCredentialsDocument = gql` - mutation DeleteCredentials($id: uuid!) { +export const DeleteSqlCredentialsDocument = gql` + mutation DeleteSqlCredentials($id: uuid!) { delete_sql_credentials_by_pk(id: $id) { id } } `; -export function useDeleteCredentialsMutation() { +export function useDeleteSqlCredentialsMutation() { return Urql.useMutation< - DeleteCredentialsMutation, - DeleteCredentialsMutationVariables - >(DeleteCredentialsDocument); + DeleteSqlCredentialsMutation, + DeleteSqlCredentialsMutationVariables + >(DeleteSqlCredentialsDocument); } export const CreateTeamDocument = gql` mutation CreateTeam($name: String!) { @@ -14642,7 +16253,7 @@ export const namedOperations = { CurrentLog: "CurrentLog", AllLogs: "AllLogs", AllDataSchemas: "AllDataSchemas", - Credentials: "Credentials", + SqlCredentials: "SqlCredentials", CurrentTeam: "CurrentTeam", GetUsers: "GetUsers", versionByBranchId: "versionByBranchId", @@ -14659,6 +16270,10 @@ export const namedOperations = { SetDefaultBranch: "SetDefaultBranch", ExportData: "ExportData", CreateBranch: "CreateBranch", + InsertCredential: "InsertCredential", + UpdateCredential: "UpdateCredential", + DeleteCredential: "DeleteCredential", + UpdateCredentials: "UpdateCredentials", UpdateUserInfo: "UpdateUserInfo", CreateDataSource: "CreateDataSource", UpdateDataSource: "UpdateDataSource", @@ -14677,7 +16292,7 @@ export const namedOperations = { DeleteReport: "DeleteReport", DeleteSchema: "DeleteSchema", InsertSqlCredentials: "InsertSqlCredentials", - DeleteCredentials: "DeleteCredentials", + DeleteSqlCredentials: "DeleteSqlCredentials", CreateTeam: "CreateTeam", EditTeam: "EditTeam", DeleteTeam: "DeleteTeam", @@ -14690,7 +16305,7 @@ export const namedOperations = { AllDataSources: "AllDataSources", SubAllLogs: "SubAllLogs", AllSchemas: "AllSchemas", - SubCredentials: "SubCredentials", + SubSqlCredentials: "SubSqlCredentials", VersionDoc: "VersionDoc", VersionsCount: "VersionsCount", }, diff --git a/src/graphql/gql/credentials.gql b/src/graphql/gql/credentials.gql new file mode 100644 index 00000000..4268d9ee --- /dev/null +++ b/src/graphql/gql/credentials.gql @@ -0,0 +1,37 @@ +mutation InsertCredential($object: credentials_insert_input!) { + insert_credentials_one(object: $object) { + id + } +} + +mutation UpdateCredential( + $pk_columns: credentials_pk_columns_input! + $_set: credentials_set_input! +) { + update_credentials_by_pk(pk_columns: $pk_columns, _set: $_set) { + id + } +} + +mutation DeleteCredential($id: uuid!) { + delete_credentials_by_pk(id: $id) { + id + } +} + +mutation UpdateCredentials($id: uuid!, $object: credentials_set_input, $members: [member_credentials_insert_input!]!) { + update_credentials_by_pk( + pk_columns: { id: $id } + _set: $object + ) { + id + } + + delete_member_credentials(where: {credential_id: {_eq: $id}}) { + affected_rows + } + + insert_member_credentials(objects: $members) { + affected_rows + } +} diff --git a/src/graphql/gql/currentUser.gql b/src/graphql/gql/currentUser.gql index d8b98b35..2360f85a 100644 --- a/src/graphql/gql/currentUser.gql +++ b/src/graphql/gql/currentUser.gql @@ -125,7 +125,7 @@ query TeamData($team_id: uuid!) { datasources(order_by: { updated_at: desc }) { id name - db_params_computed + db_params db_type created_at updated_at @@ -145,6 +145,21 @@ query TeamData($team_id: uuid!) { display_name } } + credentials(order_by: { updated_at: desc }) { + id + user_id + username + access_type + created_at + updated_at + user { + id + display_name + } + member_credentials { + member_id + } + } } alerts(order_by: { created_at: desc }) { @@ -201,7 +216,7 @@ subscription SubTeamData($team_id: uuid!) { datasources(order_by: { updated_at: desc }) { id name - db_params_computed + db_params db_type created_at updated_at @@ -221,6 +236,18 @@ subscription SubTeamData($team_id: uuid!) { display_name } } + credentials(order_by: { updated_at: desc }) { + id + user_id + username + access_type + created_at + updated_at + user { + id + display_name + } + } } alerts(order_by: { created_at: desc }) { diff --git a/src/graphql/gql/datasources.gql b/src/graphql/gql/datasources.gql index 5cda2244..8449c95b 100644 --- a/src/graphql/gql/datasources.gql +++ b/src/graphql/gql/datasources.gql @@ -25,7 +25,7 @@ query Datasources( ) { id name - db_params_computed + db_params db_type created_at updated_at @@ -64,7 +64,7 @@ subscription AllDataSources( ) { id name - db_params_computed + db_params db_type created_at updated_at @@ -101,7 +101,7 @@ query CurrentDataSource($id: uuid!) { id name db_type - db_params_computed + db_params created_at updated_at } diff --git a/src/graphql/gql/sqlCredentials.gql b/src/graphql/gql/sqlCredentials.gql index d32a83ba..2fcdde5c 100644 --- a/src/graphql/gql/sqlCredentials.gql +++ b/src/graphql/gql/sqlCredentials.gql @@ -1,4 +1,4 @@ -query Credentials($teamId: uuid!) { +query SqlCredentials($teamId: uuid!) { sql_credentials( where: { datasource: { team_id: { _eq: $teamId } } } order_by: { created_at: desc } @@ -14,12 +14,12 @@ query Credentials($teamId: uuid!) { id name db_type - db_params_computed + db_params } } } -subscription SubCredentials($teamId: uuid!) { +subscription SubSqlCredentials($teamId: uuid!) { sql_credentials(where: { datasource: { team_id: { _eq: $teamId } } }) { id } @@ -31,7 +31,7 @@ mutation InsertSqlCredentials($object: sql_credentials_insert_input!) { } } -mutation DeleteCredentials($id: uuid!) { +mutation DeleteSqlCredentials($id: uuid!) { delete_sql_credentials_by_pk(id: $id) { id } diff --git a/src/graphql/schemas/hasura.json b/src/graphql/schemas/hasura.json index 4a88d10a..b51f7bb9 100644 --- a/src/graphql/schemas/hasura.json +++ b/src/graphql/schemas/hasura.json @@ -3508,11 +3508,11 @@ }, { "kind": "OBJECT", - "name": "alerts", - "description": "columns and relationships of \"alerts\"", + "name": "access_types", + "description": "columns and relationships of \"access_types\"", "fields": [ { - "name": "created_at", + "name": "access_type", "description": null, "args": [], "type": { @@ -3520,7 +3520,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null } }, @@ -3528,106 +3528,71 @@ "deprecationReason": null }, { - "name": "delivery_config", - "description": null, + "name": "credentials", + "description": "An array relationship", "args": [ { - "name": "path", - "description": "JSON select path", + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locks_config", - "description": null, - "args": [ + }, { - "name": "path", - "description": "JSON select path", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -3637,139 +3602,99 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "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": "credentials", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_config", - "description": null, + "name": "credentials_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "path", - "description": "JSON select path", + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null } ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "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 - }, - { - "name": "user", - "description": "An object relationship", - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", + "name": "credentials_aggregate", "ofType": null } }, @@ -3784,8 +3709,8 @@ }, { "kind": "OBJECT", - "name": "alerts_aggregate", - "description": "aggregated selection of \"alerts\"", + "name": "access_types_aggregate", + "description": "aggregated selection of \"access_types\"", "fields": [ { "name": "aggregate", @@ -3793,7 +3718,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "alerts_aggregate_fields", + "name": "access_types_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -3814,7 +3739,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "alerts", + "name": "access_types", "ofType": null } } @@ -3829,94 +3754,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_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": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "alerts_aggregate_fields", - "description": "aggregate fields of \"alerts\"", + "name": "access_types_aggregate_fields", + "description": "aggregate fields of \"access_types\"", "fields": [ { "name": "count", @@ -3933,7 +3774,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "alerts_select_column", + "name": "access_types_select_column", "ofType": null } } @@ -3969,7 +3810,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "alerts_max_fields", + "name": "access_types_max_fields", "ofType": null }, "isDeprecated": false, @@ -3981,7 +3822,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "alerts_min_fields", + "name": "access_types_min_fields", "ofType": null }, "isDeprecated": false, @@ -3995,77 +3836,82 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_order_by", - "description": "order by aggregate values of table \"alerts\"", + "name": "access_types_bool_exp", + "description": "Boolean expression to filter rows from the table \"access_types\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "count", + "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": "access_types_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "max", + "name": "_not", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "alerts_max_order_by", + "name": "access_types_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "min", + "name": "_or", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_min_order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ + }, { - "name": "delivery_config", + "name": "access_type", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "locks_config", + "name": "credentials", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "trigger_config", + "name": "credentials_aggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "credentials_aggregate_bool_exp", "ofType": null }, "defaultValue": null @@ -4076,56 +3922,63 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "alerts_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"alerts\"", + "kind": "ENUM", + "name": "access_types_constraint", + "description": "unique or primary key constraints on table \"access_types\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "data", + "name": "access_types_pkey", + "description": "unique or primary key constraint on columns \"access_type\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "access_types_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "shared", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "ofType": null - }, - "defaultValue": null + "name": "specific_users", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "description": "Boolean expression to filter rows from the table \"alerts\". All fields are combined with a logical 'AND'.", + "name": "access_types_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"access_types_enum\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "_and", + "name": "_eq", + "description": null, + "type": { + "kind": "ENUM", + "name": "access_types_enum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_in", "description": null, "type": { "kind": "LIST", @@ -4134,8 +3987,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "kind": "ENUM", + "name": "access_types_enum", "ofType": null } } @@ -4143,17 +3996,27 @@ "defaultValue": null }, { - "name": "_not", + "name": "_is_null", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "_or", + "name": "_neq", + "description": null, + "type": { + "kind": "ENUM", + "name": "access_types_enum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_nin", "description": null, "type": { "kind": "LIST", @@ -4162,161 +4025,287 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "kind": "ENUM", + "name": "access_types_enum", "ofType": null } } }, "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "access_types_insert_input", + "description": "input type for inserting data into table \"access_types\"", + "fields": null, + "inputFields": [ { - "name": "delivery_config", + "name": "access_type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "credentials", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "credentials_arr_rel_insert_input", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "access_types_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "exploration", + "name": "access_type", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "access_types_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "exploration_id", + "name": "access_type", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "access_types_mutation_response", + "description": "response of any mutation on the table \"access_types\"", + "fields": [ { - "name": "id", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "locks_config", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types", + "ofType": null + } + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "access_types_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"access_types\"", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_insert_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "schedule", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "access_types_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "access_types_on_conflict", + "description": "on_conflict condition type for table \"access_types\"", + "fields": null, + "inputFields": [ { - "name": "team", + "name": "constraint", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_constraint", + "ofType": null + } }, "defaultValue": null }, { - "name": "team_id", + "name": "update_columns", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_update_column", + "ofType": null + } + } + } }, - "defaultValue": null + "defaultValue": "[]" }, { - "name": "trigger_config", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "access_types_bool_exp", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "access_types_order_by", + "description": "Ordering options when selecting data from \"access_types\".", + "fields": null, + "inputFields": [ { - "name": "updated_at", + "name": "access_type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "user", + "name": "credentials_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "name": "credentials_aggregate_order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "access_types_pk_columns_input", + "description": "primary key columns input for table: access_types", + "fields": null, + "inputFields": [ { - "name": "user_id", + "name": "access_type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -4327,15 +4316,15 @@ }, { "kind": "ENUM", - "name": "alerts_constraint", - "description": "unique or primary key constraints on table \"alerts\"", + "name": "access_types_select_column", + "description": "select columns of table \"access_types\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "alerts_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "access_type", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -4344,61 +4333,52 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "access_types_set_input", + "description": "input type for updating data in table \"access_types\"", "fields": null, "inputFields": [ { - "name": "delivery_config", + "name": "access_type", "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 - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "access_types_stream_cursor_input", + "description": "Streaming cursor of the table \"access_types\"", + "fields": null, + "inputFields": [ { - "name": "locks_config", - "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": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "access_types_stream_cursor_value_input", + "ofType": null } }, "defaultValue": null }, { - "name": "trigger_config", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null }, "defaultValue": null } @@ -4409,36 +4389,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_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": "access_types_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", + "name": "access_type", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -4448,39 +4408,50 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "access_types_update_column", + "description": "update columns of table \"access_types\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "access_type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "access_types_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "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": "access_types_set_input", "ofType": null }, "defaultValue": null }, { - "name": "trigger_config", - "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": "access_types_bool_exp", + "ofType": null + } }, "defaultValue": null } @@ -4490,274 +4461,481 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "description": "input type for inserting data into table \"alerts\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "alerts", + "description": "columns and relationships of \"alerts\"", + "fields": [ { "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": "delivery_config", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "delivery_type", "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": "exploration", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "exploration_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "locks_config", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "name", "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": "schedule", "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": "team", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", + "kind": "OBJECT", + "name": "teams", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "team_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "trigger_config", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "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": "user", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "user_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "alerts_max_fields", - "description": "aggregate max on columns", + "name": "alerts_aggregate", + "description": "aggregated selection of \"alerts\"", "fields": [ { - "name": "created_at", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "alerts_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delivery_type", + "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": "alerts", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "exploration_id", + "name": "count", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "alerts_aggregate_bool_exp_count", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "id", + "name": "arguments", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "alerts_select_column", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "distinct", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "schedule", + "name": "filter", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team_id", + "name": "predicate", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "alerts_aggregate_fields", + "description": "aggregate fields of \"alerts\"", + "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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "max", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "alerts_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "min", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "alerts_min_fields", "ofType": null }, "isDeprecated": false, @@ -4771,22 +4949,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_max_order_by", - "description": "order by max() on columns of table \"alerts\"", + "name": "alerts_aggregate_order_by", + "description": "order by aggregate values of table \"alerts\"", "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", + "name": "count", "description": null, "type": { "kind": "ENUM", @@ -4796,71 +4964,105 @@ "defaultValue": null }, { - "name": "exploration_id", + "name": "max", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "alerts_max_order_by", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "min", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "alerts_min_order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "delivery_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "locks_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "trigger_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"alerts\"", + "fields": null, + "inputFields": [ { - "name": "updated_at", + "name": "data", "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": "INPUT_OBJECT", + "name": "alerts_insert_input", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "user_id", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "alerts_on_conflict", "ofType": null }, "defaultValue": null @@ -4871,206 +5073,193 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "alerts_min_fields", - "description": "aggregate min on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "description": "Boolean expression to filter rows from the table \"alerts\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "created_at", + "name": "_and", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delivery_type", + "name": "_not", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "exploration_id", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "delivery_config", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "schedule", + "name": "delivery_type", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team_id", + "name": "exploration", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updated_at", + "name": "exploration_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "user_id", + "name": "id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_min_order_by", - "description": "order by min() on columns of table \"alerts\"", - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "created_at", + "name": "locks_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "exploration_id", + "name": "schedule", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "team", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "trigger_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", "ofType": null }, "defaultValue": null @@ -5079,8 +5268,8 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -5091,104 +5280,119 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "description": "response of any mutation on the table \"alerts\"", - "fields": [ + "kind": "ENUM", + "name": "alerts_constraint", + "description": "unique or primary key constraints on table \"alerts\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "alerts_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_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": "delivery_config", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "locks_config", + "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": "alerts", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "trigger_config", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "description": "on_conflict condition type for table \"alerts\"", + "name": "alerts_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": "constraint", + "name": "delivery_config", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "update_columns", + "name": "locks_config", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": "[]" + "defaultValue": null }, { - "name": "where", + "name": "trigger_config", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -5200,16 +5404,57 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "description": "Ordering options when selecting data from \"alerts\".", + "name": "alerts_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": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locks_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_insert_input", + "description": "input type for inserting data into table \"alerts\"", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -5218,8 +5463,8 @@ "name": "delivery_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -5228,8 +5473,8 @@ "name": "delivery_type", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -5239,7 +5484,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "name": "explorations_obj_rel_insert_input", "ofType": null }, "defaultValue": null @@ -5248,8 +5493,8 @@ "name": "exploration_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -5258,8 +5503,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -5268,8 +5513,8 @@ "name": "locks_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -5278,8 +5523,8 @@ "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -5288,8 +5533,8 @@ "name": "schedule", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -5299,7 +5544,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "teams_order_by", + "name": "teams_obj_rel_insert_input", "ofType": null }, "defaultValue": null @@ -5308,8 +5553,8 @@ "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -5318,8 +5563,8 @@ "name": "trigger_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -5328,8 +5573,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -5339,7 +5584,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_order_by", + "name": "users_obj_rel_insert_input", "ofType": null }, "defaultValue": null @@ -5348,8 +5593,8 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -5360,256 +5605,416 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "alerts_pk_columns_input", - "description": "primary key columns input for table: alerts", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "alerts_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "delivery_config", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "timestamptz", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "locks_config", + "name": "delivery_type", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "trigger_config", + "name": "exploration_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "uuid", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "alerts_select_column", - "description": "select columns of table \"alerts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locks_config", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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": "schedule", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_config", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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": "user_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "description": "input type for updating data in table \"alerts\"", + "name": "alerts_max_order_by", + "description": "order by max() on columns of table \"alerts\"", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "delivery_config", + "name": "delivery_type", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "alerts_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": "delivery_type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "exploration_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "locks_config", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "schedule", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "schedule", + "name": "team_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team_id", + "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": "uuid", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_min_order_by", + "description": "order by min() on columns of table \"alerts\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, "defaultValue": null }, { - "name": "trigger_config", + "name": "delivery_type", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5618,8 +6023,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5628,8 +6033,8 @@ "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5639,32 +6044,105 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "alerts_mutation_response", + "description": "response of any mutation on the table \"alerts\"", + "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": "alerts", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_input", - "description": "Streaming cursor of the table \"alerts\"", + "name": "alerts_on_conflict", + "description": "on_conflict condition type for table \"alerts\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "constraint", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_value_input", + "kind": "ENUM", + "name": "alerts_constraint", "ofType": null } }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "update_columns", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "alerts_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]" + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", "ofType": null }, "defaultValue": null @@ -5676,16 +6154,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "alerts_order_by", + "description": "Ordering options when selecting data from \"alerts\".", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5694,8 +6172,8 @@ "name": "delivery_config", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5704,8 +6182,18 @@ "name": "delivery_type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", "ofType": null }, "defaultValue": null @@ -5714,8 +6202,8 @@ "name": "exploration_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5724,8 +6212,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5734,8 +6222,8 @@ "name": "locks_config", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5744,8 +6232,8 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5754,8 +6242,18 @@ "name": "schedule", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_order_by", "ofType": null }, "defaultValue": null @@ -5764,8 +6262,8 @@ "name": "team_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -5773,6 +6271,82 @@ { "name": "trigger_config", "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_pk_columns_input", + "description": "primary key columns input for table: alerts", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "delivery_config", + "description": null, "type": { "kind": "SCALAR", "name": "jsonb", @@ -5781,21 +6355,21 @@ "defaultValue": null }, { - "name": "updated_at", + "name": "locks_config", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "trigger_config", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -5807,8 +6381,8 @@ }, { "kind": "ENUM", - "name": "alerts_update_column", - "description": "update columns of table \"alerts\"", + "name": "alerts_select_column", + "description": "select columns of table \"alerts\"", "fields": null, "inputFields": null, "interfaces": null, @@ -5890,42 +6464,422 @@ }, { "kind": "INPUT_OBJECT", - "name": "alerts_updates", - "description": null, + "name": "alerts_set_input", + "description": "input type for updating data in table \"alerts\"", "fields": null, "inputFields": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "created_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "delivery_config", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "delivery_type", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", + "name": "exploration_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locks_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_stream_cursor_input", + "description": "Streaming cursor of the table \"alerts\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "alerts_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locks_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "alerts_update_column", + "description": "update columns of table \"alerts\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_config", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locks_config", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedule", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trigger_config", + "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": "alerts_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { "kind": "INPUT_OBJECT", @@ -13491,11 +14445,27 @@ }, { "kind": "OBJECT", - "name": "auth_providers", - "description": "columns and relationships of \"auth.providers\"", + "name": "auth_options", + "description": "columns and relationships of \"auth_options\"", "fields": [ { - "name": "account_providers", + "name": "auth", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasources", "description": "An array relationship", "args": [ { @@ -13509,7 +14479,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_account_providers_select_column", + "name": "datasources_select_column", "ofType": null } } @@ -13547,7 +14517,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", + "name": "datasources_order_by", "ofType": null } } @@ -13559,7 +14529,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -13576,7 +14546,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_providers", + "name": "datasources", "ofType": null } } @@ -13586,7 +14556,7 @@ "deprecationReason": null }, { - "name": "account_providers_aggregate", + "name": "datasources_aggregate", "description": "An aggregate relationship", "args": [ { @@ -13600,7 +14570,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_account_providers_select_column", + "name": "datasources_select_column", "ofType": null } } @@ -13638,7 +14608,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", + "name": "datasources_order_by", "ofType": null } } @@ -13650,7 +14620,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -13661,23 +14631,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "datasources_aggregate", "ofType": null } }, @@ -13692,8 +14646,8 @@ }, { "kind": "OBJECT", - "name": "auth_providers_aggregate", - "description": "aggregated selection of \"auth.providers\"", + "name": "auth_options_aggregate", + "description": "aggregated selection of \"auth_options\"", "fields": [ { "name": "aggregate", @@ -13701,7 +14655,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_providers_aggregate_fields", + "name": "auth_options_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -13722,7 +14676,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_providers", + "name": "auth_options", "ofType": null } } @@ -13739,8 +14693,8 @@ }, { "kind": "OBJECT", - "name": "auth_providers_aggregate_fields", - "description": "aggregate fields of \"auth.providers\"", + "name": "auth_options_aggregate_fields", + "description": "aggregate fields of \"auth_options\"", "fields": [ { "name": "count", @@ -13757,7 +14711,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_providers_select_column", + "name": "auth_options_select_column", "ofType": null } } @@ -13793,7 +14747,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_providers_max_fields", + "name": "auth_options_max_fields", "ofType": null }, "isDeprecated": false, @@ -13805,7 +14759,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_providers_min_fields", + "name": "auth_options_min_fields", "ofType": null }, "isDeprecated": false, @@ -13819,8 +14773,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.providers\". All fields are combined with a logical 'AND'.", + "name": "auth_options_bool_exp", + "description": "Boolean expression to filter rows from the table \"auth_options\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -13834,7 +14788,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_options_bool_exp", "ofType": null } } @@ -13846,7 +14800,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_options_bool_exp", "ofType": null }, "defaultValue": null @@ -13862,7 +14816,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_options_bool_exp", "ofType": null } } @@ -13870,31 +14824,31 @@ "defaultValue": null }, { - "name": "account_providers", + "name": "auth", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "account_providers_aggregate", + "name": "datasources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_bool_exp", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "datasources_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "datasources_aggregate_bool_exp", "ofType": null }, "defaultValue": null @@ -13906,15 +14860,38 @@ }, { "kind": "ENUM", - "name": "auth_providers_constraint", - "description": "unique or primary key constraints on table \"auth.providers\"", + "name": "auth_options_constraint", + "description": "unique or primary key constraints on table \"auth_options\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "providers_pkey", - "description": "unique or primary key constraint on columns \"provider\"", + "name": "auth_options_pkey", + "description": "unique or primary key constraint on columns \"auth\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "auth_options_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "private", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shared", + "description": null, "isDeprecated": false, "deprecationReason": null } @@ -13923,22 +14900,89 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", - "description": "input type for inserting data into table \"auth.providers\"", + "name": "auth_options_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"auth_options_enum\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "account_providers", + "name": "_eq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_arr_rel_insert_input", + "kind": "ENUM", + "name": "auth_options_enum", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_options_enum", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "ENUM", + "name": "auth_options_enum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_options_enum", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_options_insert_input", + "description": "input type for inserting data into table \"auth_options\"", + "fields": null, + "inputFields": [ + { + "name": "auth", "description": null, "type": { "kind": "SCALAR", @@ -13946,6 +14990,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "datasources", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -13954,11 +15008,11 @@ }, { "kind": "OBJECT", - "name": "auth_providers_max_fields", + "name": "auth_options_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "provider", + "name": "auth", "description": null, "args": [], "type": { @@ -13977,11 +15031,11 @@ }, { "kind": "OBJECT", - "name": "auth_providers_min_fields", + "name": "auth_options_min_fields", "description": "aggregate min on columns", "fields": [ { - "name": "provider", + "name": "auth", "description": null, "args": [], "type": { @@ -14000,8 +15054,8 @@ }, { "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "description": "response of any mutation on the table \"auth.providers\"", + "name": "auth_options_mutation_response", + "description": "response of any mutation on the table \"auth_options\"", "fields": [ { "name": "affected_rows", @@ -14034,7 +15088,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_providers", + "name": "auth_options", "ofType": null } } @@ -14051,8 +15105,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"auth.providers\"", + "name": "auth_options_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"auth_options\"", "fields": null, "inputFields": [ { @@ -14063,7 +15117,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", + "name": "auth_options_insert_input", "ofType": null } }, @@ -14074,7 +15128,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", + "name": "auth_options_on_conflict", "ofType": null }, "defaultValue": null @@ -14086,8 +15140,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "description": "on_conflict condition type for table \"auth.providers\"", + "name": "auth_options_on_conflict", + "description": "on_conflict condition type for table \"auth_options\"", "fields": null, "inputFields": [ { @@ -14098,7 +15152,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_providers_constraint", + "name": "auth_options_constraint", "ofType": null } }, @@ -14118,7 +15172,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_providers_update_column", + "name": "auth_options_update_column", "ofType": null } } @@ -14131,7 +15185,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_options_bool_exp", "ofType": null }, "defaultValue": null @@ -14143,26 +15197,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "description": "Ordering options when selecting data from \"auth.providers\".", + "name": "auth_options_order_by", + "description": "Ordering options when selecting data from \"auth_options\".", "fields": null, "inputFields": [ { - "name": "account_providers_aggregate", + "name": "auth", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "datasources_aggregate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "datasources_aggregate_order_by", "ofType": null }, "defaultValue": null @@ -14174,12 +15228,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_pk_columns_input", - "description": "primary key columns input for table: auth.providers", + "name": "auth_options_pk_columns_input", + "description": "primary key columns input for table: auth_options", "fields": null, "inputFields": [ { - "name": "provider", + "name": "auth", "description": null, "type": { "kind": "NON_NULL", @@ -14199,14 +15253,14 @@ }, { "kind": "ENUM", - "name": "auth_providers_select_column", - "description": "select columns of table \"auth.providers\"", + "name": "auth_options_select_column", + "description": "select columns of table \"auth_options\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "provider", + "name": "auth", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -14216,12 +15270,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "description": "input type for updating data in table \"auth.providers\"", + "name": "auth_options_set_input", + "description": "input type for updating data in table \"auth_options\"", "fields": null, "inputFields": [ { - "name": "provider", + "name": "auth", "description": null, "type": { "kind": "SCALAR", @@ -14237,8 +15291,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_providers\"", + "name": "auth_options_stream_cursor_input", + "description": "Streaming cursor of the table \"auth_options\"", "fields": null, "inputFields": [ { @@ -14249,7 +15303,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_value_input", + "name": "auth_options_stream_cursor_value_input", "ofType": null } }, @@ -14272,12 +15326,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_value_input", + "name": "auth_options_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "provider", + "name": "auth", "description": null, "type": { "kind": "SCALAR", @@ -14293,14 +15347,14 @@ }, { "kind": "ENUM", - "name": "auth_providers_update_column", - "description": "update columns of table \"auth.providers\"", + "name": "auth_options_update_column", + "description": "update columns of table \"auth_options\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "provider", + "name": "auth", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -14310,7 +15364,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_providers_updates", + "name": "auth_options_updates", "description": null, "fields": null, "inputFields": [ @@ -14319,7 +15373,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", + "name": "auth_options_set_input", "ofType": null }, "defaultValue": null @@ -14332,7 +15386,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_options_bool_exp", "ofType": null } }, @@ -14345,67 +15399,177 @@ }, { "kind": "OBJECT", - "name": "auth_refresh_tokens", - "description": "columns and relationships of \"auth.refresh_tokens\"", + "name": "auth_providers", + "description": "columns and relationships of \"auth.providers\"", "fields": [ { - "name": "account", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null + "name": "account_providers", + "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": "auth_account_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_id", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_providers", + "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 + "name": "account_providers_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": "auth_account_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "auth_account_providers_aggregate", "ofType": null } }, @@ -14413,7 +15577,7 @@ "deprecationReason": null }, { - "name": "refresh_token", + "name": "provider", "description": null, "args": [], "type": { @@ -14421,7 +15585,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -14436,8 +15600,8 @@ }, { "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", - "description": "aggregated selection of \"auth.refresh_tokens\"", + "name": "auth_providers_aggregate", + "description": "aggregated selection of \"auth.providers\"", "fields": [ { "name": "aggregate", @@ -14445,7 +15609,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate_fields", + "name": "auth_providers_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -14466,7 +15630,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_refresh_tokens", + "name": "auth_providers", "ofType": null } } @@ -14482,134 +15646,50 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "auth_providers_aggregate_fields", + "description": "aggregate fields of \"auth.providers\"", + "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_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate_fields", - "description": "aggregate fields of \"auth.refresh_tokens\"", - "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_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, @@ -14621,7 +15701,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_refresh_tokens_max_fields", + "name": "auth_providers_max_fields", "ofType": null }, "isDeprecated": false, @@ -14633,7 +15713,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_refresh_tokens_min_fields", + "name": "auth_providers_min_fields", "ofType": null }, "isDeprecated": false, @@ -14647,92 +15727,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_order_by", - "description": "order by aggregate values of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"auth.refresh_tokens\"", - "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": "auth_refresh_tokens_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.refresh_tokens\". All fields are combined with a logical 'AND'.", + "name": "auth_providers_bool_exp", + "description": "Boolean expression to filter rows from the table \"auth.providers\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -14746,7 +15742,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null } } @@ -14758,7 +15754,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null }, "defaultValue": null @@ -14774,7 +15770,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null } } @@ -14782,51 +15778,31 @@ "defaultValue": null }, { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", + "name": "account_providers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "auth_account_providers_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "expires_at", + "name": "account_providers_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "auth_account_providers_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "refresh_token", + "name": "provider", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null @@ -14838,15 +15814,15 @@ }, { "kind": "ENUM", - "name": "auth_refresh_tokens_constraint", - "description": "unique or primary key constraints on table \"auth.refresh_tokens\"", + "name": "auth_providers_constraint", + "description": "unique or primary key constraints on table \"auth.providers\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "refresh_tokens_pkey", - "description": "unique or primary key constraint on columns \"refresh_token\"", + "name": "providers_pkey", + "description": "unique or primary key constraint on columns \"provider\"", "isDeprecated": false, "deprecationReason": null } @@ -14855,56 +15831,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_insert_input", - "description": "input type for inserting data into table \"auth.refresh_tokens\"", + "name": "auth_providers_insert_input", + "description": "input type for inserting data into table \"auth.providers\"", "fields": null, "inputFields": [ { - "name": "account", + "name": "account_providers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", + "name": "auth_account_providers_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "refresh_token", + "name": "provider", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -14916,52 +15862,16 @@ }, { "kind": "OBJECT", - "name": "auth_refresh_tokens_max_fields", + "name": "auth_providers_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", + "name": "provider", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -14973,105 +15883,18 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_max_order_by", - "description": "order by max() on columns of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "auth_refresh_tokens_min_fields", + "name": "auth_providers_min_fields", "description": "aggregate min on columns", "fields": [ { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", + "name": "provider", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -15083,61 +15906,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_min_order_by", - "description": "order by min() on columns of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "description": "response of any mutation on the table \"auth.refresh_tokens\"", + "name": "auth_providers_mutation_response", + "description": "response of any mutation on the table \"auth.providers\"", "fields": [ { "name": "affected_rows", @@ -15170,7 +15942,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_refresh_tokens", + "name": "auth_providers", "ofType": null } } @@ -15187,8 +15959,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "description": "on_conflict condition type for table \"auth.refresh_tokens\"", + "name": "auth_providers_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"auth.providers\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_insert_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_on_conflict", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_providers_on_conflict", + "description": "on_conflict condition type for table \"auth.providers\"", "fields": null, "inputFields": [ { @@ -15199,7 +16006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_refresh_tokens_constraint", + "name": "auth_providers_constraint", "ofType": null } }, @@ -15219,7 +16026,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_refresh_tokens_update_column", + "name": "auth_providers_update_column", "ofType": null } } @@ -15232,7 +16039,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null }, "defaultValue": null @@ -15244,52 +16051,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "description": "Ordering options when selecting data from \"auth.refresh_tokens\".", + "name": "auth_providers_order_by", + "description": "Ordering options when selecting data from \"auth.providers\".", "fields": null, "inputFields": [ { - "name": "account", + "name": "account_providers_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", + "name": "auth_account_providers_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", + "name": "provider", "description": null, "type": { "kind": "ENUM", @@ -15305,19 +16082,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_pk_columns_input", - "description": "primary key columns input for table: auth.refresh_tokens", + "name": "auth_providers_pk_columns_input", + "description": "primary key columns input for table: auth.providers", "fields": null, "inputFields": [ { - "name": "refresh_token", + "name": "provider", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -15330,32 +16107,14 @@ }, { "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "description": "select columns of table \"auth.refresh_tokens\"", + "name": "auth_providers_select_column", + "description": "select columns of table \"auth.providers\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "account_id", - "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": "refresh_token", + "name": "provider", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -15365,46 +16124,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "description": "input type for updating data in table \"auth.refresh_tokens\"", + "name": "auth_providers_set_input", + "description": "input type for updating data in table \"auth.providers\"", "fields": null, "inputFields": [ { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", + "name": "provider", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -15416,8 +16145,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_refresh_tokens\"", + "name": "auth_providers_stream_cursor_input", + "description": "Streaming cursor of the table \"auth_providers\"", "fields": null, "inputFields": [ { @@ -15428,7 +16157,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_value_input", + "name": "auth_providers_stream_cursor_value_input", "ofType": null } }, @@ -15451,46 +16180,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_value_input", + "name": "auth_providers_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", + "name": "provider", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -15502,32 +16201,14 @@ }, { "kind": "ENUM", - "name": "auth_refresh_tokens_update_column", - "description": "update columns of table \"auth.refresh_tokens\"", + "name": "auth_providers_update_column", + "description": "update columns of table \"auth.providers\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "account_id", - "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": "refresh_token", + "name": "provider", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -15537,7 +16218,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_updates", + "name": "auth_providers_updates", "description": null, "fields": null, "inputFields": [ @@ -15546,7 +16227,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", + "name": "auth_providers_set_input", "ofType": null }, "defaultValue": null @@ -15559,7 +16240,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null } }, @@ -15572,177 +16253,35 @@ }, { "kind": "OBJECT", - "name": "auth_roles", - "description": "columns and relationships of \"auth.roles\"", + "name": "auth_refresh_tokens", + "description": "columns and relationships of \"auth.refresh_tokens\"", "fields": [ { - "name": "account_roles", - "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": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "account", + "description": "An object relationship", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } + "kind": "OBJECT", + "name": "auth_accounts", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "account_roles_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": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "account_id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, @@ -15750,173 +16289,31 @@ "deprecationReason": null }, { - "name": "accounts", - "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": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "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": "auth_accounts", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "accounts_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": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "expires_at", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_aggregate", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null } }, @@ -15924,7 +16321,7 @@ "deprecationReason": null }, { - "name": "role", + "name": "refresh_token", "description": null, "args": [], "type": { @@ -15932,7 +16329,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -15947,8 +16344,8 @@ }, { "kind": "OBJECT", - "name": "auth_roles_aggregate", - "description": "aggregated selection of \"auth.roles\"", + "name": "auth_refresh_tokens_aggregate", + "description": "aggregated selection of \"auth.refresh_tokens\"", "fields": [ { "name": "aggregate", @@ -15956,7 +16353,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_roles_aggregate_fields", + "name": "auth_refresh_tokens_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -15977,7 +16374,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_roles", + "name": "auth_refresh_tokens", "ofType": null } } @@ -15992,10 +16389,94 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_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": "auth_refresh_tokens_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "auth_roles_aggregate_fields", - "description": "aggregate fields of \"auth.roles\"", + "name": "auth_refresh_tokens_aggregate_fields", + "description": "aggregate fields of \"auth.refresh_tokens\"", "fields": [ { "name": "count", @@ -16012,7 +16493,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_roles_select_column", + "name": "auth_refresh_tokens_select_column", "ofType": null } } @@ -16048,7 +16529,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_roles_max_fields", + "name": "auth_refresh_tokens_max_fields", "ofType": null }, "isDeprecated": false, @@ -16060,7 +16541,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "auth_roles_min_fields", + "name": "auth_refresh_tokens_min_fields", "ofType": null }, "isDeprecated": false, @@ -16074,8 +16555,92 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.roles\". All fields are combined with a logical 'AND'.", + "name": "auth_refresh_tokens_aggregate_order_by", + "description": "order by aggregate values of table \"auth.refresh_tokens\"", + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_min_order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"auth.refresh_tokens\"", + "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": "auth_refresh_tokens_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_on_conflict", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_bool_exp", + "description": "Boolean expression to filter rows from the table \"auth.refresh_tokens\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -16089,7 +16654,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null } } @@ -16101,7 +16666,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null }, "defaultValue": null @@ -16117,7 +16682,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null } } @@ -16125,51 +16690,51 @@ "defaultValue": null }, { - "name": "account_roles", + "name": "account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", + "name": "auth_accounts_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "account_roles_aggregate", + "name": "account_id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_bool_exp", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "accounts", + "name": "created_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "accounts_aggregate", + "name": "expires_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "role", + "name": "refresh_token", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -16181,15 +16746,15 @@ }, { "kind": "ENUM", - "name": "auth_roles_constraint", - "description": "unique or primary key constraints on table \"auth.roles\"", + "name": "auth_refresh_tokens_constraint", + "description": "unique or primary key constraints on table \"auth.refresh_tokens\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "roles_pkey", - "description": "unique or primary key constraint on columns \"role\"", + "name": "refresh_tokens_pkey", + "description": "unique or primary key constraint on columns \"refresh_token\"", "isDeprecated": false, "deprecationReason": null } @@ -16198,36 +16763,56 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "description": "input type for inserting data into table \"auth.roles\"", + "name": "auth_refresh_tokens_insert_input", + "description": "input type for inserting data into table \"auth.refresh_tokens\"", "fields": null, "inputFields": [ { - "name": "account_roles", + "name": "account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_arr_rel_insert_input", + "name": "auth_accounts_obj_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "accounts", + "name": "account_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_arr_rel_insert_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "role", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expires_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -16239,16 +16824,52 @@ }, { "kind": "OBJECT", - "name": "auth_roles_max_fields", + "name": "auth_refresh_tokens_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "role", + "name": "account_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expires_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refresh_token", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, @@ -16260,18 +16881,105 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_max_order_by", + "description": "order by max() on columns of table \"auth.refresh_tokens\"", + "fields": null, + "inputFields": [ + { + "name": "account_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expires_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "auth_roles_min_fields", + "name": "auth_refresh_tokens_min_fields", "description": "aggregate min on columns", "fields": [ { - "name": "role", + "name": "account_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expires_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refresh_token", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, @@ -16283,10 +16991,61 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_min_order_by", + "description": "order by min() on columns of table \"auth.refresh_tokens\"", + "fields": null, + "inputFields": [ + { + "name": "account_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expires_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "description": "response of any mutation on the table \"auth.roles\"", + "name": "auth_refresh_tokens_mutation_response", + "description": "response of any mutation on the table \"auth.refresh_tokens\"", "fields": [ { "name": "affected_rows", @@ -16319,7 +17078,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_roles", + "name": "auth_refresh_tokens", "ofType": null } } @@ -16336,43 +17095,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"auth.roles\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "description": "on_conflict condition type for table \"auth.roles\"", + "name": "auth_refresh_tokens_on_conflict", + "description": "on_conflict condition type for table \"auth.refresh_tokens\"", "fields": null, "inputFields": [ { @@ -16383,7 +17107,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_roles_constraint", + "name": "auth_refresh_tokens_constraint", "ofType": null } }, @@ -16403,7 +17127,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_roles_update_column", + "name": "auth_refresh_tokens_update_column", "ofType": null } } @@ -16416,7 +17140,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null }, "defaultValue": null @@ -16428,32 +17152,52 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "description": "Ordering options when selecting data from \"auth.roles\".", + "name": "auth_refresh_tokens_order_by", + "description": "Ordering options when selecting data from \"auth.refresh_tokens\".", "fields": null, "inputFields": [ { - "name": "account_roles_aggregate", + "name": "account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_order_by", + "name": "auth_accounts_order_by", "ofType": null }, "defaultValue": null }, { - "name": "accounts_aggregate", + "name": "account_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "role", + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expires_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "refresh_token", "description": null, "type": { "kind": "ENUM", @@ -16469,19 +17213,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_pk_columns_input", - "description": "primary key columns input for table: auth.roles", + "name": "auth_refresh_tokens_pk_columns_input", + "description": "primary key columns input for table: auth.refresh_tokens", "fields": null, "inputFields": [ { - "name": "role", + "name": "refresh_token", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -16494,14 +17238,32 @@ }, { "kind": "ENUM", - "name": "auth_roles_select_column", - "description": "select columns of table \"auth.roles\"", + "name": "auth_refresh_tokens_select_column", + "description": "select columns of table \"auth.refresh_tokens\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "role", + "name": "account_id", + "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": "refresh_token", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -16511,16 +17273,46 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "description": "input type for updating data in table \"auth.roles\"", + "name": "auth_refresh_tokens_set_input", + "description": "input type for updating data in table \"auth.refresh_tokens\"", "fields": null, "inputFields": [ { - "name": "role", + "name": "account_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expires_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -16532,8 +17324,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_roles\"", + "name": "auth_refresh_tokens_stream_cursor_input", + "description": "Streaming cursor of the table \"auth_refresh_tokens\"", "fields": null, "inputFields": [ { @@ -16544,7 +17336,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_value_input", + "name": "auth_refresh_tokens_stream_cursor_value_input", "ofType": null } }, @@ -16567,16 +17359,46 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_value_input", + "name": "auth_refresh_tokens_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "role", + "name": "account_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expires_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -16588,14 +17410,32 @@ }, { "kind": "ENUM", - "name": "auth_roles_update_column", - "description": "update columns of table \"auth.roles\"", + "name": "auth_refresh_tokens_update_column", + "description": "update columns of table \"auth.refresh_tokens\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "role", + "name": "account_id", + "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": "refresh_token", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -16605,7 +17445,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_roles_updates", + "name": "auth_refresh_tokens_updates", "description": null, "fields": null, "inputFields": [ @@ -16614,7 +17454,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", + "name": "auth_refresh_tokens_set_input", "ofType": null }, "defaultValue": null @@ -16627,7 +17467,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null } }, @@ -16640,52 +17480,254 @@ }, { "kind": "OBJECT", - "name": "branch_statuses", - "description": "columns and relationships of \"branch_statuses\"", + "name": "auth_roles", + "description": "columns and relationships of \"auth.roles\"", "fields": [ { - "name": "status", - "description": null, - "args": [], + "name": "account_roles", + "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": "auth_account_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "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": "auth_account_roles", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_aggregate", - "description": "aggregated selection of \"branch_statuses\"", - "fields": [ + }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "account_roles_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": "auth_account_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "branch_statuses_aggregate_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_roles_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], + "name": "accounts", + "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": "auth_accounts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -16697,7 +17739,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branch_statuses", + "name": "auth_accounts", "ofType": null } } @@ -16705,25 +17747,14 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_aggregate_fields", - "description": "aggregate fields of \"branch_statuses\"", - "fields": [ + }, { - "name": "count", - "description": null, + "name": "accounts_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "columns", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { "kind": "LIST", "name": null, @@ -16732,7 +17763,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branch_statuses_select_column", + "name": "auth_accounts_select_column", "ofType": null } } @@ -16740,11 +17771,49 @@ "defaultValue": 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 + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", "ofType": null }, "defaultValue": null @@ -16754,8 +17823,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "auth_accounts_aggregate", "ofType": null } }, @@ -16763,24 +17832,143 @@ "deprecationReason": null }, { - "name": "max", + "name": "role", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "branch_statuses_max_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "min", - "description": null, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "auth_roles_aggregate", + "description": "aggregated selection of \"auth.roles\"", + "fields": [ + { + "name": "aggregate", + "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "branch_statuses_min_fields", + "name": "auth_roles_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": "auth_roles", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "auth_roles_aggregate_fields", + "description": "aggregate fields of \"auth.roles\"", + "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_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "auth_roles_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "auth_roles_min_fields", "ofType": null }, "isDeprecated": false, @@ -16794,8 +17982,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "description": "Boolean expression to filter rows from the table \"branch_statuses\". All fields are combined with a logical 'AND'.", + "name": "auth_roles_bool_exp", + "description": "Boolean expression to filter rows from the table \"auth.roles\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -16809,7 +17997,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null } } @@ -16821,7 +18009,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -16837,7 +18025,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null } } @@ -16845,7 +18033,47 @@ "defaultValue": null }, { - "name": "status", + "name": "account_roles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "account_roles_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accounts", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accounts_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "role", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -16861,44 +18089,15 @@ }, { "kind": "ENUM", - "name": "branch_statuses_constraint", - "description": "unique or primary key constraints on table \"branch_statuses\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_statuses_pkey", - "description": "unique or primary key constraint on columns \"status\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branch_statuses_enum", - "description": null, + "name": "auth_roles_constraint", + "description": "unique or primary key constraints on table \"auth.roles\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archived", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, + "name": "roles_pkey", + "description": "unique or primary key constraint on columns \"role\"", "isDeprecated": false, "deprecationReason": null } @@ -16907,89 +18106,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"branch_statuses_enum\". All fields are combined with logical 'AND'.", + "name": "auth_roles_insert_input", + "description": "input type for inserting data into table \"auth.roles\"", "fields": null, "inputFields": [ { - "name": "_eq", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", + "name": "account_roles", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "_neq", + "name": "accounts", "description": null, "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", - "description": "input type for inserting data into table \"branch_statuses\"", - "fields": null, - "inputFields": [ - { - "name": "status", + "name": "role", "description": null, "type": { "kind": "SCALAR", @@ -17005,11 +18147,11 @@ }, { "kind": "OBJECT", - "name": "branch_statuses_max_fields", + "name": "auth_roles_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "status", + "name": "role", "description": null, "args": [], "type": { @@ -17028,11 +18170,11 @@ }, { "kind": "OBJECT", - "name": "branch_statuses_min_fields", + "name": "auth_roles_min_fields", "description": "aggregate min on columns", "fields": [ { - "name": "status", + "name": "role", "description": null, "args": [], "type": { @@ -17051,8 +18193,8 @@ }, { "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "description": "response of any mutation on the table \"branch_statuses\"", + "name": "auth_roles_mutation_response", + "description": "response of any mutation on the table \"auth.roles\"", "fields": [ { "name": "affected_rows", @@ -17085,7 +18227,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branch_statuses", + "name": "auth_roles", "ofType": null } } @@ -17102,8 +18244,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"branch_statuses\"", + "name": "auth_roles_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"auth.roles\"", "fields": null, "inputFields": [ { @@ -17114,7 +18256,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", + "name": "auth_roles_insert_input", "ofType": null } }, @@ -17125,7 +18267,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", + "name": "auth_roles_on_conflict", "ofType": null }, "defaultValue": null @@ -17137,8 +18279,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "description": "on_conflict condition type for table \"branch_statuses\"", + "name": "auth_roles_on_conflict", + "description": "on_conflict condition type for table \"auth.roles\"", "fields": null, "inputFields": [ { @@ -17149,7 +18291,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branch_statuses_constraint", + "name": "auth_roles_constraint", "ofType": null } }, @@ -17169,7 +18311,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branch_statuses_update_column", + "name": "auth_roles_update_column", "ofType": null } } @@ -17182,7 +18324,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -17194,12 +18336,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "description": "Ordering options when selecting data from \"branch_statuses\".", + "name": "auth_roles_order_by", + "description": "Ordering options when selecting data from \"auth.roles\".", "fields": null, "inputFields": [ { - "name": "status", + "name": "account_roles_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_aggregate_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accounts_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_aggregate_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "role", "description": null, "type": { "kind": "ENUM", @@ -17215,12 +18377,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_pk_columns_input", - "description": "primary key columns input for table: branch_statuses", + "name": "auth_roles_pk_columns_input", + "description": "primary key columns input for table: auth.roles", "fields": null, "inputFields": [ { - "name": "status", + "name": "role", "description": null, "type": { "kind": "NON_NULL", @@ -17240,14 +18402,14 @@ }, { "kind": "ENUM", - "name": "branch_statuses_select_column", - "description": "select columns of table \"branch_statuses\"", + "name": "auth_roles_select_column", + "description": "select columns of table \"auth.roles\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "status", + "name": "role", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -17257,12 +18419,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "description": "input type for updating data in table \"branch_statuses\"", + "name": "auth_roles_set_input", + "description": "input type for updating data in table \"auth.roles\"", "fields": null, "inputFields": [ { - "name": "status", + "name": "role", "description": null, "type": { "kind": "SCALAR", @@ -17278,8 +18440,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_input", - "description": "Streaming cursor of the table \"branch_statuses\"", + "name": "auth_roles_stream_cursor_input", + "description": "Streaming cursor of the table \"auth_roles\"", "fields": null, "inputFields": [ { @@ -17290,7 +18452,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_value_input", + "name": "auth_roles_stream_cursor_value_input", "ofType": null } }, @@ -17313,12 +18475,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_value_input", + "name": "auth_roles_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "status", + "name": "role", "description": null, "type": { "kind": "SCALAR", @@ -17334,14 +18496,14 @@ }, { "kind": "ENUM", - "name": "branch_statuses_update_column", - "description": "update columns of table \"branch_statuses\"", + "name": "auth_roles_update_column", + "description": "update columns of table \"auth.roles\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "status", + "name": "role", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -17351,7 +18513,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "branch_statuses_updates", + "name": "auth_roles_updates", "description": null, "fields": null, "inputFields": [ @@ -17360,7 +18522,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", + "name": "auth_roles_set_input", "ofType": null }, "defaultValue": null @@ -17373,7 +18535,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null } }, @@ -17386,75 +18548,11 @@ }, { "kind": "OBJECT", - "name": "branches", - "description": "columns and relationships of \"branches\"", + "name": "branch_statuses", + "description": "columns and relationships of \"branch_statuses\"", "fields": [ { - "name": "branch_status", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "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": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations", + "name": "branches", "description": "An array relationship", "args": [ { @@ -17468,7 +18566,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "explorations_select_column", + "name": "branches_select_column", "ofType": null } } @@ -17506,7 +18604,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "name": "branches_order_by", "ofType": null } } @@ -17518,7 +18616,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -17535,7 +18633,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations", + "name": "branches", "ofType": null } } @@ -17545,7 +18643,7 @@ "deprecationReason": null }, { - "name": "explorations_aggregate", + "name": "branches_aggregate", "description": "An aggregate relationship", "args": [ { @@ -17559,7 +18657,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "explorations_select_column", + "name": "branches_select_column", "ofType": null } } @@ -17597,7 +18695,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "name": "branches_order_by", "ofType": null } } @@ -17609,7 +18707,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -17620,7 +18718,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations_aggregate", + "name": "branches_aggregate", "ofType": null } }, @@ -17628,7 +18726,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "status", "description": null, "args": [], "type": { @@ -17636,164 +18734,40 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branch_statuses_aggregate", + "description": "aggregated selection of \"branch_statuses\"", + "fields": [ { - "name": "name", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "branch_statuses_aggregate_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "nodes", "description": null, "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "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 - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "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": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], "type": { "kind": "NON_NULL", "name": null, @@ -17805,7 +18779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "versions", + "name": "branch_statuses", "ofType": null } } @@ -17813,14 +18787,25 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branch_statuses_aggregate_fields", + "description": "aggregate fields of \"branch_statuses\"", + "fields": [ { - "name": "versions_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, @@ -17829,7 +18814,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "versions_select_column", + "name": "branch_statuses_select_column", "ofType": null } } @@ -17837,49 +18822,11 @@ "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "distinct", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -17889,57 +18836,34 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "versions_aggregate", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_aggregate", - "description": "aggregated selection of \"branches\"", - "fields": [ + }, { - "name": "aggregate", + "name": "max", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "branches_aggregate_fields", + "name": "branch_statuses_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "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": "branches", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "branch_statuses_min_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -17952,33 +18876,40 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp", - "description": null, + "name": "branch_statuses_bool_exp", + "description": "Boolean expression to filter rows from the table \"branch_statuses\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "count", + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_not", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp_count", + "name": "branch_statuses_bool_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "_or", "description": null, "type": { "kind": "LIST", @@ -17987,8 +18918,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "branches_select_column", + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", "ofType": null } } @@ -17996,36 +18927,32 @@ "defaultValue": null }, { - "name": "distinct", + "name": "branches", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "branches_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "branches_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "status", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, "defaultValue": null } @@ -18035,205 +18962,107 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "branches_aggregate_fields", - "description": "aggregate fields of \"branches\"", - "fields": [ + "kind": "ENUM", + "name": "branch_statuses_constraint", + "description": "unique or primary key constraints on table \"branch_statuses\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "count", + "name": "branch_statuses_pkey", + "description": "unique or primary key constraint on columns \"status\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "branch_statuses_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "active", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "archived", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branches_max_fields", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "created", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branches_min_fields", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "branches_aggregate_order_by", - "description": "order by aggregate values of table \"branches\"", + "name": "branch_statuses_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"branch_statuses_enum\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "count", + "name": "_eq", "description": null, "type": { "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_max_order_by", + "name": "branch_statuses_enum", "ofType": null }, "defaultValue": null }, { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "data", + "name": "_in", "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": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } + "kind": "ENUM", + "name": "branch_statuses_enum", + "ofType": null } } }, "defaultValue": null }, { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "description": "Boolean expression to filter rows from the table \"branches\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", + "name": "_is_null", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "_not", + "name": "_neq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "kind": "ENUM", + "name": "branch_statuses_enum", "ofType": null }, "defaultValue": null }, { - "name": "_or", + "name": "_nin", "description": null, "type": { "kind": "LIST", @@ -18242,151 +19071,287 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "kind": "ENUM", + "name": "branch_statuses_enum", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_insert_input", + "description": "input type for inserting data into table \"branch_statuses\"", + "fields": null, + "inputFields": [ { - "name": "branch_status", + "name": "branches", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "branches_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branch_statuses_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "datasource", + "name": "status", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branch_statuses_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "datasource_id", + "name": "status", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branch_statuses_mutation_response", + "description": "response of any mutation on the table \"branch_statuses\"", + "fields": [ { - "name": "explorations", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "explorations_aggregate", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branch_statuses", + "ofType": null + } + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"branch_statuses\"", + "fields": null, + "inputFields": [ { - "name": "id", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_insert_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "branch_statuses_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_on_conflict", + "description": "on_conflict condition type for table \"branch_statuses\"", + "fields": null, + "inputFields": [ { - "name": "status", + "name": "constraint", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_enum_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branch_statuses_constraint", + "ofType": null + } }, "defaultValue": null }, { - "name": "updated_at", + "name": "update_columns", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branch_statuses_update_column", + "ofType": null + } + } + } }, - "defaultValue": null + "defaultValue": "[]" }, { - "name": "user", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "name": "branch_statuses_bool_exp", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_order_by", + "description": "Ordering options when selecting data from \"branch_statuses\".", + "fields": null, + "inputFields": [ { - "name": "user_id", + "name": "branches_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "branches_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "versions", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_pk_columns_input", + "description": "primary key columns input for table: branch_statuses", + "fields": null, + "inputFields": [ { - "name": "versions_aggregate", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -18397,21 +19362,15 @@ }, { "kind": "ENUM", - "name": "branches_constraint", - "description": "unique or primary key constraints on table \"branches\"", + "name": "branch_statuses_select_column", + "description": "select columns of table \"branch_statuses\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "branches_datasource_id_name_key", - "description": "unique or primary key constraint on columns \"datasource_id\", \"name\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "status", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -18420,72 +19379,68 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "description": "input type for inserting data into table \"branches\"", + "name": "branch_statuses_set_input", + "description": "input type for updating data in table \"branch_statuses\"", "fields": null, "inputFields": [ { - "name": "branch_status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", + "name": "status", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_stream_cursor_input", + "description": "Streaming cursor of the table \"branch_statuses\"", + "fields": null, + "inputFields": [ { - "name": "explorations", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_arr_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "id", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -18493,54 +19448,56 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "branch_statuses_update_column", + "description": "update columns of table \"branch_statuses\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "user", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", + "name": "branch_statuses_set_input", "ofType": null }, "defaultValue": null }, { - "name": "versions", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "INPUT_OBJECT", - "name": "versions_arr_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", + "ofType": null + } }, "defaultValue": null } @@ -18551,231 +19508,560 @@ }, { "kind": "OBJECT", - "name": "branches_max_fields", - "description": "aggregate max on columns", + "name": "branches", + "description": "columns and relationships of \"branches\"", "fields": [ { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, + "name": "branch_status", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branch_statuses", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "datasource", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "datasource_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_max_order_by", - "description": "order by max() on columns of table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "name": "explorations", + "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": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "datasource_id", - "description": null, + "name": "explorations_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": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations_aggregate", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "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": "updated_at", + "name": "status", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branch_statuses_enum", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", + "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_min_fields", - "description": "aggregate min on columns", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "created_at", - "description": null, + "name": "user", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_id", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "versions", + "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": "versions_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "versions", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], + "name": "versions_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": "versions_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "versions_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branches_aggregate", + "description": "aggregated selection of \"branches\"", + "fields": [ { - "name": "updated_at", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "branches_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "nodes", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -18788,67 +20074,80 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_min_order_by", - "description": "order by min() on columns of table \"branches\"", + "name": "branches_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "created_at", + "name": "count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "branches_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branches_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "datasource_id", + "name": "arguments", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branches_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "predicate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null } @@ -18859,13 +20158,42 @@ }, { "kind": "OBJECT", - "name": "branches_mutation_response", - "description": "response of any mutation on the table \"branches\"", + "name": "branches_aggregate_fields", + "description": "aggregate fields of \"branches\"", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branches_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -18879,25 +20207,25 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "max", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "branches_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "branches_min_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -18910,30 +20238,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"branches\"", + "name": "branches_aggregate_order_by", + "description": "order by aggregate values of table \"branches\"", "fields": null, "inputFields": [ { - "name": "data", + "name": "count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "max", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", + "name": "branches_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_min_order_by", "ofType": null }, "defaultValue": null @@ -18945,26 +20279,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "description": "on_conflict condition type for table \"branches\"", + "name": "branches_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"branches\"", "fields": null, "inputFields": [ { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", + "name": "data", "description": null, "type": { "kind": "NON_NULL", @@ -18976,21 +20296,21 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "branches_update_column", + "kind": "INPUT_OBJECT", + "name": "branches_insert_input", "ofType": null } } } }, - "defaultValue": "[]" + "defaultValue": null }, { - "name": "where", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "branches_on_conflict", "ofType": null }, "defaultValue": null @@ -19002,16 +20322,62 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "description": "Ordering options when selecting data from \"branches\".", + "name": "branches_bool_exp", + "description": "Boolean expression to filter rows from the table \"branches\". 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": "branches_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, { "name": "branch_status", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", + "name": "branch_statuses_bool_exp", "ofType": null }, "defaultValue": null @@ -19020,8 +20386,8 @@ "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null @@ -19031,7 +20397,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "datasources_order_by", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -19040,8 +20406,18 @@ "name": "datasource_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "explorations", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null @@ -19051,7 +20427,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_order_by", + "name": "explorations_aggregate_bool_exp", "ofType": null }, "defaultValue": null @@ -19060,8 +20436,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -19070,8 +20446,8 @@ "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null @@ -19080,8 +20456,8 @@ "name": "status", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "branch_statuses_enum_comparison_exp", "ofType": null }, "defaultValue": null @@ -19090,8 +20466,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null @@ -19101,7 +20477,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_order_by", + "name": "users_bool_exp", "ofType": null }, "defaultValue": null @@ -19110,44 +20486,29 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "versions_aggregate", + "name": "versions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "versions_aggregate_order_by", + "name": "versions_bool_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_pk_columns_input", - "description": "primary key columns input for table: branches", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "versions_aggregate", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "versions_aggregate_bool_exp", + "ofType": null }, "defaultValue": null } @@ -19158,51 +20519,21 @@ }, { "kind": "ENUM", - "name": "branches_select_column", - "description": "select columns of table \"branches\"", + "name": "branches_constraint", + "description": "unique or primary key constraints on table \"branches\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "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": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", + "name": "branches_datasource_id_name_key", + "description": "unique or primary key constraint on columns \"datasource_id\", \"name\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", + "name": "branches_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -19211,10 +20542,20 @@ }, { "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "description": "input type for updating data in table \"branches\"", + "name": "branches_insert_input", + "description": "input type for inserting data into table \"branches\"", "fields": null, "inputFields": [ + { + "name": "branch_status", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, { "name": "created_at", "description": null, @@ -19225,6 +20566,16 @@ }, "defaultValue": null }, + { + "name": "datasource", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, { "name": "datasource_id", "description": null, @@ -19235,6 +20586,16 @@ }, "defaultValue": null }, + { + "name": "explorations", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": null, @@ -19276,46 +20637,31 @@ "defaultValue": null }, { - "name": "user_id", + "name": "user", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_input", - "description": "Streaming cursor of the table \"branches\"", - "fields": null, - "inputFields": [ + }, { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "user_id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_value_input", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "versions", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "versions_arr_rel_insert_input", "ofType": null }, "defaultValue": null @@ -19326,392 +20672,578 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "branches_max_fields", + "description": "aggregate max on columns", + "fields": [ { "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "datasource_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "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 }, { "name": "user_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "branches_update_column", - "description": "update columns of table \"branches\"", + "kind": "INPUT_OBJECT", + "name": "branches_max_order_by", + "description": "order by max() on columns of table \"branches\"", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { "name": "name", - "description": "column name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branches_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": "status", - "description": "column name", + "name": "datasource_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "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": "user_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "branches_updates", - "description": null, + "name": "branches_min_order_by", + "description": "order by min() on columns of table \"branches\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "created_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "datasource_id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "citext", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "citext_comparison_exp", - "description": "Boolean expression to compare columns of type \"citext\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_eq", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_gt", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_gte", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_ilike", - "description": "does the column match the given case-insensitive pattern", + "name": "user_id", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "branches_mutation_response", + "description": "response of any mutation on the table \"branches\"", + "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": "_in", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "citext", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + } } } }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branches_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"branches\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_insert_input", + "ofType": null + } + }, "defaultValue": null }, { - "name": "_iregex", - "description": "does the column match the given POSIX regular expression, case insensitive", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "INPUT_OBJECT", + "name": "branches_on_conflict", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branches_on_conflict", + "description": "on_conflict condition type for table \"branches\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branches_constraint", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "_is_null", + "name": "update_columns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branches_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]" + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branches_order_by", + "description": "Ordering options when selecting data from \"branches\".", + "fields": null, + "inputFields": [ { - "name": "_like", - "description": "does the column match the given pattern", + "name": "branch_status", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "INPUT_OBJECT", + "name": "branch_statuses_order_by", "ofType": null }, "defaultValue": null }, { - "name": "_lt", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_lte", + "name": "datasource", "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "INPUT_OBJECT", + "name": "datasources_order_by", "ofType": null }, "defaultValue": null }, { - "name": "_neq", + "name": "datasource_id", "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_nilike", - "description": "does the column NOT match the given case-insensitive pattern", + "name": "explorations_aggregate", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "INPUT_OBJECT", + "name": "explorations_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "_nin", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "_niregex", - "description": "does the column NOT match the given POSIX regular expression, case insensitive", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_nlike", - "description": "does the column NOT match the given pattern", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_nregex", - "description": "does the column NOT match the given POSIX regular expression, case sensitive", + "name": "updated_at", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_nsimilar", - "description": "does the column NOT match the given SQL regular expression", + "name": "user", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "INPUT_OBJECT", + "name": "users_order_by", "ofType": null }, "defaultValue": null }, { - "name": "_regex", - "description": "does the column match the given POSIX regular expression, case sensitive", + "name": "user_id", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_similar", - "description": "does the column match the given SQL regular expression", + "name": "versions_aggregate", + "description": null, "type": { - "kind": "SCALAR", - "name": "citext", + "kind": "INPUT_OBJECT", + "name": "versions_aggregate_order_by", "ofType": null }, "defaultValue": null @@ -19722,42 +21254,14 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "create_events", - "description": "fields of action: \"create_events\"", - "fields": [ - { - "name": "created_at", - "description": "the time at which this action was created", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": "errors related to the invocation", - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "branches_pk_columns_input", + "description": "primary key columns input for table: branches", + "fields": null, + "inputFields": [ { "name": "id", - "description": "the unique id of an action", - "args": [], + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -19767,425 +21271,173 @@ "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "output", - "description": "the output fields of this action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_create_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "cursor_ordering", - "description": "ordering argument of a cursor", + "name": "branches_select_column", + "description": "select columns of table \"branches\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "ASC", - "description": "ascending ordering of the cursor", + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "DESC", - "description": "descending ordering of the cursor", + "name": "datasource_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards", - "description": "columns and relationships of \"dashboards\"", - "fields": [ + }, { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "layout", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, + "name": "status", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "updated_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "pinned_items", - "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": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, + "name": "user_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "branches_set_input", + "description": "input type for updating data in table \"branches\"", + "fields": null, + "inputFields": [ { - "name": "pinned_items_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": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "teams", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team_id", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updated_at", + "name": "name", "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 + "defaultValue": null }, { - "name": "user_id", + "name": "status", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "ENUM", + "name": "branch_statuses_enum", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_aggregate", - "description": "aggregated selection of \"dashboards\"", - "fields": [ + "defaultValue": null + }, { - "name": "aggregate", + "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards_aggregate_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", + "name": "user_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": "dashboards", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp", - "description": null, + "name": "branches_stream_cursor_input", + "description": "Streaming cursor of the table \"branches\"", "fields": null, "inputFields": [ { - "name": "count", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp_count", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null @@ -20197,434 +21449,319 @@ }, { "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp_count", - "description": null, + "name": "branches_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "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": "dashboards_select_column", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", + "name": "datasource_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_aggregate_fields", - "description": "aggregate fields of \"dashboards\"", - "fields": [ + }, { - "name": "count", + "name": "status", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "branch_statuses_enum", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "max", + "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards_max_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "min", + "name": "user_id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards_min_fields", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_order_by", - "description": "order by aggregate values of table \"dashboards\"", + "kind": "ENUM", + "name": "branches_update_column", + "description": "update columns of table \"branches\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "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": "dashboards_max_order_by", - "ofType": null - }, - "defaultValue": null + "name": "datasource_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_min_order_by", - "ofType": null - }, - "defaultValue": null + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "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 } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "branches_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "layout", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "branches_set_input", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"dashboards\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", - "description": null, + "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": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null } ], "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "SCALAR", + "name": "citext", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "description": "Boolean expression to filter rows from the table \"dashboards\". All fields are combined with a logical 'AND'.", + "name": "citext_comparison_exp", + "description": "Boolean expression to compare columns of type \"citext\". All fields are combined with 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": "dashboards_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", + "name": "_eq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "_or", + "name": "_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "citext", + "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "_gte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "id", - "description": null, + "name": "_ilike", + "description": "does the column match the given case-insensitive pattern", "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "layout", + "name": "_in", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "citext", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "_iregex", + "description": "does the column match the given POSIX regular expression, case insensitive", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "pinned_items", + "name": "_is_null", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "pinned_items_aggregate", - "description": null, + "name": "_like", + "description": "does the column match the given pattern", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "_lte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "_neq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "user_id", - "description": null, + "name": "_nilike", + "description": "does the column NOT match the given case-insensitive pattern", "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dashboards_constraint", - "description": "unique or primary key constraints on table \"dashboards\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "dashboards_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_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": "layout", + "name": "_nin", "description": null, "type": { "kind": "LIST", @@ -20634,388 +21771,543 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "citext", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_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": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_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": "layout", - "description": null, + "name": "_niregex", + "description": "does the column NOT match the given POSIX regular expression, case insensitive", "type": { "kind": "SCALAR", - "name": "String", + "name": "citext", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "description": "input type for inserting data into table \"dashboards\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", - "description": null, + "name": "_nlike", + "description": "does the column NOT match the given pattern", "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "id", - "description": null, + "name": "_nregex", + "description": "does the column NOT match the given POSIX regular expression, case sensitive", "type": { "kind": "SCALAR", - "name": "uuid", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "layout", - "description": null, + "name": "_nsimilar", + "description": "does the column NOT match the given SQL regular expression", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "_regex", + "description": "does the column match the given POSIX regular expression, case sensitive", "type": { "kind": "SCALAR", - "name": "String", + "name": "citext", "ofType": null }, "defaultValue": null }, { - "name": "pinned_items", - "description": null, + "name": "_similar", + "description": "does the column match the given SQL regular expression", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_arr_rel_insert_input", + "kind": "SCALAR", + "name": "citext", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "create_events", + "description": "fields of action: \"create_events\"", + "fields": [ { - "name": "team", - "description": null, + "name": "created_at", + "description": "the time at which this action was created", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team_id", - "description": null, + "name": "errors", + "description": "errors related to the invocation", + "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "id", + "description": "the unique id of an action", + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "output", + "description": "the output fields of this action", + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events_create_mutation_response", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "dashboards_max_fields", - "description": "aggregate max on columns", + "name": "credentials", + "description": "columns and relationships of \"credentials\"", "fields": [ { - "name": "created_at", - "description": null, + "name": "accessTypeByAccessType", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "access_type", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_enum", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": null, + "name": "datasource", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "datasource_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_max_order_by", - "description": "order by max() on columns of table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null }, { - "name": "id", - "description": null, + "name": "member_credentials", + "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": "member_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_credentials", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "member_credentials_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": "member_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_credentials_aggregate", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team_id", + "name": "password", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "updated_at", "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "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", - "description": null, + "name": "user", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "username", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "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": "credentials_aggregate", + "description": "aggregated selection of \"credentials\"", + "fields": [ { - "name": "updated_at", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "credentials_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "nodes", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -21028,67 +22320,80 @@ }, { "kind": "INPUT_OBJECT", - "name": "dashboards_min_order_by", - "description": "order by min() on columns of table \"dashboards\"", + "name": "credentials_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", + "name": "count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "credentials_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "credentials_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "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": "credentials_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "team_id", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "predicate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null } @@ -21099,13 +22404,42 @@ }, { "kind": "OBJECT", - "name": "dashboards_mutation_response", - "description": "response of any mutation on the table \"dashboards\"", + "name": "credentials_aggregate_fields", + "description": "aggregate fields of \"credentials\"", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -21119,25 +22453,25 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "max", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "credentials_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "credentials_min_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -21150,30 +22484,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "dashboards_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"dashboards\"", + "name": "credentials_aggregate_order_by", + "description": "order by aggregate values of table \"credentials\"", "fields": null, "inputFields": [ { - "name": "data", + "name": "count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "max", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", + "name": "credentials_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_min_order_by", "ofType": null }, "defaultValue": null @@ -21185,26 +22525,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "description": "on_conflict condition type for table \"dashboards\"", + "name": "credentials_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"credentials\"", "fields": null, "inputFields": [ { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", + "name": "data", "description": null, "type": { "kind": "NON_NULL", @@ -21216,21 +22542,21 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "dashboards_update_column", + "kind": "INPUT_OBJECT", + "name": "credentials_insert_input", "ofType": null } } } }, - "defaultValue": "[]" + "defaultValue": null }, { - "name": "where", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "name": "credentials_on_conflict", "ofType": null }, "defaultValue": null @@ -21242,276 +22568,182 @@ }, { "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "description": "Ordering options when selecting data from \"dashboards\".", + "name": "credentials_bool_exp", + "description": "Boolean expression to filter rows from the table \"credentials\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", + "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": "credentials_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "layout", + "name": "_not", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "name", + "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": "credentials_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "pinned_items_aggregate", + "name": "accessTypeByAccessType", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_order_by", + "name": "access_types_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "access_type", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "teams_order_by", + "name": "access_types_enum_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "datasource", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "datasource_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_pk_columns_input", - "description": "primary key columns input for table: dashboards", - "fields": null, - "inputFields": [ + }, { "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dashboards_select_column", - "description": "select columns of table \"dashboards\"", - "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": "layout", - "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 }, { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "description": "input type for updating data in table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", + "name": "member_credentials", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "member_credentials_aggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "member_credentials_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "layout", + "name": "password", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "user", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "username", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null @@ -21521,47 +22753,49 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "credentials_constraint", + "description": "unique or primary key constraints on table \"credentials\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "credentials_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_input", - "description": "Streaming cursor of the table \"dashboards\"", + "name": "credentials_insert_input", + "description": "input type for inserting data into table \"credentials\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "accessTypeByAccessType", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_value_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "access_types_obj_rel_insert_input", + "ofType": null }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "access_type", + "description": null, "type": { "kind": "ENUM", - "name": "cursor_ordering", + "name": "access_types_enum", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { "name": "created_at", "description": null, @@ -21573,7 +22807,17 @@ "defaultValue": null }, { - "name": "id", + "name": "datasource", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datasource_id", "description": null, "type": { "kind": "SCALAR", @@ -21583,31 +22827,31 @@ "defaultValue": null }, { - "name": "layout", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "member_credentials", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "member_credentials_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "password", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -21622,6 +22866,16 @@ }, "defaultValue": null }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, { "name": "user_id", "description": null, @@ -21631,6 +22885,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "username", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -21638,135 +22902,173 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "dashboards_update_column", - "description": "update columns of table \"dashboards\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "credentials_max_fields", + "description": "aggregate max on columns", + "fields": [ { "name": "created_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "datasource_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "layout", - "description": "column name", + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "column name", + "name": "password", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": "column name", + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "user_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", + "name": "username", + "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": "dashboards_updates", - "description": null, + "name": "credentials_max_order_by", + "description": "order by max() on columns of table \"credentials\"", "fields": null, "inputFields": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "created_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "datasource_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "password", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "updated_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "user_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "username", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null } @@ -21777,184 +23079,88 @@ }, { "kind": "OBJECT", - "name": "dataschemas", - "description": "columns and relationships of \"dataschemas\"", + "name": "credentials_min_fields", + "description": "aggregate min on columns", "fields": [ { - "name": "checksum", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code", + "name": "datasource_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource", - "description": "An object relationship", + "name": "password", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_id", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "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": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version_id", + "name": "username", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -21967,128 +23173,78 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "description": "aggregated selection of \"dataschemas\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "credentials_min_order_by", + "description": "order by min() on columns of table \"credentials\"", + "fields": null, + "inputFields": [ { - "name": "aggregate", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "dataschemas_aggregate_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", + "name": "datasource_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": "dataschemas", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "count", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp_count", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "password", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "username", "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 } @@ -22099,42 +23255,13 @@ }, { "kind": "OBJECT", - "name": "dataschemas_aggregate_fields", - "description": "aggregate fields of \"dataschemas\"", + "name": "credentials_mutation_response", + "description": "response of any mutation on the table \"credentials\"", "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": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -22148,25 +23275,25 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dataschemas_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "dataschemas_min_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -22179,36 +23306,30 @@ }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_order_by", - "description": "order by aggregate values of table \"dataschemas\"", + "name": "credentials_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"credentials\"", "fields": null, "inputFields": [ { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_max_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_insert_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "min", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_min_order_by", + "name": "credentials_on_conflict", "ofType": null }, "defaultValue": null @@ -22220,12 +23341,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"dataschemas\"", + "name": "credentials_on_conflict", + "description": "on_conflict condition type for table \"credentials\"", "fields": null, "inputFields": [ { - "name": "data", + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "credentials_constraint", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "update_columns", "description": null, "type": { "kind": "NON_NULL", @@ -22237,21 +23372,21 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_insert_input", + "kind": "ENUM", + "name": "credentials_update_column", "ofType": null } } } }, - "defaultValue": null + "defaultValue": "[]" }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "where", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -22263,122 +23398,86 @@ }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "description": "Boolean expression to filter rows from the table \"dataschemas\". All fields are combined with a logical 'AND'.", + "name": "credentials_order_by", + "description": "Ordering options when selecting data from \"credentials\".", "fields": null, "inputFields": [ { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", + "name": "accessTypeByAccessType", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "access_types_order_by", "ofType": null }, "defaultValue": null }, { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "checksum", + "name": "access_type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "datasource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "datasources_order_by", "ofType": null }, "defaultValue": null }, { - "name": "datasource", + "name": "datasource_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "member_credentials_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "member_credentials_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -22387,8 +23486,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -22398,7 +23497,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "name": "users_order_by", "ofType": null }, "defaultValue": null @@ -22407,29 +23506,44 @@ "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "version", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "credentials_pk_columns_input", + "description": "primary key columns input for table: credentials", + "fields": null, + "inputFields": [ { - "name": "version_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "defaultValue": null } @@ -22440,15 +23554,57 @@ }, { "kind": "ENUM", - "name": "dataschemas_constraint", - "description": "unique or primary key constraints on table \"dataschemas\"", + "name": "credentials_select_column", + "description": "select columns of table \"credentials\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "dataschemas_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "access_type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "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 + }, + { + "name": "username", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -22457,26 +23613,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_insert_input", - "description": "input type for inserting data into table \"dataschemas\"", + "name": "credentials_set_input", + "description": "input type for updating data in table \"credentials\"", "fields": null, "inputFields": [ { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", + "name": "access_type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "access_types_enum", "ofType": null }, "defaultValue": null @@ -22491,16 +23637,6 @@ }, "defaultValue": null }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, { "name": "datasource_id", "description": null, @@ -22522,7 +23658,7 @@ "defaultValue": null }, { - "name": "name", + "name": "password", "description": null, "type": { "kind": "SCALAR", @@ -22542,41 +23678,56 @@ "defaultValue": null }, { - "name": "user", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "username", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_obj_rel_insert_input", - "ofType": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "credentials_stream_cursor_input", + "description": "Streaming cursor of the table \"credentials\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "version_id", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null @@ -22587,217 +23738,182 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "dataschemas_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "credentials_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "code", + "name": "access_type", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "access_types_enum", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "datasource_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "password", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "user_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "version_id", + "name": "username", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "dataschemas_max_order_by", - "description": "order by max() on columns of table \"dataschemas\"", + "kind": "ENUM", + "name": "credentials_update_column", + "description": "update columns of table \"credentials\"", "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "code", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null + "name": "access_type", + "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": "datasource_id", - "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": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null + "name": "password", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { "name": "updated_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, + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "credentials_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "credentials_set_input", "ofType": null }, "defaultValue": null }, { - "name": "version_id", - "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": "credentials_bool_exp", + "ofType": null + } }, "defaultValue": null } @@ -22806,115 +23922,331 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "cursor_ordering", + "description": "ordering argument of a cursor", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ASC", + "description": "ascending ordering of the cursor", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DESC", + "description": "descending ordering of the cursor", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "dataschemas_min_fields", - "description": "aggregate min on columns", + "name": "dashboards", + "description": "columns and relationships of \"dashboards\"", "fields": [ { - "name": "checksum", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "layout", "description": null, - "args": [], + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "jsonb", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_id", + "name": "name", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "pinned_items", + "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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "pinned_items_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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "teams", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "team_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version_id", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -22926,98 +24258,128 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "dataschemas_min_order_by", - "description": "order by min() on columns of table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "dashboards_aggregate", + "description": "aggregated selection of \"dashboards\"", + "fields": [ { - "name": "created_at", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "dashboards_aggregate_fields", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "datasource_id", + "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": "dashboards", + "ofType": null + } + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "id", + "name": "count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "dashboards_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "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": "dashboards_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "updated_at", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "version_id", + "name": "predicate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null } @@ -23028,13 +24390,42 @@ }, { "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "description": "response of any mutation on the table \"dataschemas\"", + "name": "dashboards_aggregate_fields", + "description": "aggregate fields of \"dashboards\"", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "dashboards_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -23048,25 +24439,25 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "max", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "dashboards_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "dashboards_min_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -23079,26 +24470,74 @@ }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "description": "on_conflict condition type for table \"dataschemas\"", + "name": "dashboards_aggregate_order_by", + "description": "order by aggregate values of table \"dashboards\"", "fields": null, "inputFields": [ { - "name": "constraint", + "name": "count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_constraint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "update_columns", + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_min_order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "layout", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"dashboards\"", + "fields": null, + "inputFields": [ + { + "name": "data", "description": null, "type": { "kind": "NON_NULL", @@ -23110,21 +24549,21 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "dataschemas_update_column", + "kind": "INPUT_OBJECT", + "name": "dashboards_insert_input", "ofType": null } } } }, - "defaultValue": "[]" + "defaultValue": null }, { - "name": "where", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "dashboards_on_conflict", "ofType": null }, "defaultValue": null @@ -23136,126 +24575,152 @@ }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "description": "Ordering options when selecting data from \"dataschemas\".", + "name": "dashboards_bool_exp", + "description": "Boolean expression to filter rows from the table \"dashboards\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "checksum", + "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": "dashboards_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", + "name": "_not", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", "ofType": null }, "defaultValue": null }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, { "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "datasource", + "name": "id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "datasources_order_by", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "layout", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "pinned_items", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "pinned_items_aggregate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user", + "name": "team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_order_by", + "name": "teams_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "version", + "name": "updated_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "versions_order_by", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "version_id", + "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -23265,22 +24730,43 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "dashboards_constraint", + "description": "unique or primary key constraints on table \"dashboards\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "dashboards_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_pk_columns_input", - "description": "primary key columns input for table: dataschemas", + "name": "dashboards_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": "id", + "name": "layout", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null @@ -23291,78 +24777,34 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "dataschemas_select_column", - "description": "select columns of table \"dataschemas\"", + "kind": "INPUT_OBJECT", + "name": "dashboards_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, - "interfaces": null, - "enumValues": [ - { - "name": "checksum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "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 - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "version_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "layout", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "description": "input type for updating data in table \"dataschemas\"", + "name": "dashboards_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": "checksum", + "name": "layout", "description": null, "type": { "kind": "SCALAR", @@ -23370,69 +24812,80 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_insert_input", + "description": "input type for inserting data into table \"dashboards\"", + "fields": null, + "inputFields": [ { - "name": "code", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "layout", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "pinned_items", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "pinned_items_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "team", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "teams_obj_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", @@ -23442,7 +24895,17 @@ "defaultValue": null }, { - "name": "version_id", + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", "description": null, "type": { "kind": "SCALAR", @@ -23457,92 +24920,110 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_input", - "description": "Streaming cursor of the table \"dataschemas\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "dashboards_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_value_input", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "checksum", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", + "name": "team_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "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": "datasource_id", + "name": "user_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_max_order_by", + "description": "order by max() on columns of table \"dashboards\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, "defaultValue": null }, { "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -23551,38 +25032,38 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "team_id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "version_id", + "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -23593,97 +25074,151 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "dataschemas_update_column", - "description": "update columns of table \"dataschemas\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "checksum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "dashboards_min_fields", + "description": "aggregate min on columns", + "fields": [ { "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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": "updated_at", - "description": "column name", + "name": "team_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version_id", - "description": "column name", + "name": "user_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "dataschemas_updates", - "description": null, + "name": "dashboards_min_order_by", + "description": "order by min() on columns of table \"dashboards\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "created_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": 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": "dataschemas_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null } @@ -23694,80 +25229,29 @@ }, { "kind": "OBJECT", - "name": "datasources", - "description": "columns and relationships of \"datasources\"", + "name": "dashboards_mutation_response", + "description": "response of any mutation on the table \"dashboards\"", "fields": [ { - "name": "branches", - "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": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": 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, @@ -23779,7 +25263,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branches", + "name": "dashboards", "ofType": null } } @@ -23787,177 +25271,71 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "branches_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": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"dashboards\"", + "fields": null, + "inputFields": [ { - "name": "created_at", + "name": "data", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "dashboards_insert_input", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "dataschemas", - "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": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_on_conflict", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_on_conflict", + "description": "on_conflict condition type for table \"dashboards\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "dashboards_constraint", + "ofType": null } - ], + }, + "defaultValue": null + }, + { + "name": "update_columns", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -23968,920 +25346,303 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "dataschemas", + "kind": "ENUM", + "name": "dashboards_update_column", "ofType": null } } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": "[]" }, { - "name": "dataschemas_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": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "where", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_order_by", + "description": "Ordering options when selecting data from \"dashboards\".", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { - "name": "db_params", + "name": "id", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "db_params_computed", - "description": "A computed field, executes function \"hide_password\"", - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "layout", + "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "db_type", + "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 }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "explorations", - "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": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "pinned_items_aggregate", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "explorations_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": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "team", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_aggregate", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "teams_order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "team_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_pk_columns_input", + "description": "primary key columns input for table: dashboards", + "fields": null, + "inputFields": [ + { + "name": "id", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ { - "name": "request_logs", - "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": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "layout", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "dashboards_select_column", + "description": "select columns of table \"dashboards\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "request_logs_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": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "ofType": null - } - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials", - "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": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials_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": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "ofType": null - } - }, + "name": "layout", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "description": "column name", "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 - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "datasources_aggregate", - "description": "aggregated selection of \"datasources\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "dashboards_set_input", + "description": "input type for updating data in table \"dashboards\"", + "fields": null, + "inputFields": [ { - "name": "aggregate", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "datasources_aggregate_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", + "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": "datasources", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "count", + "name": "layout", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "user_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null } @@ -24891,181 +25652,112 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "datasources_aggregate_fields", - "description": "aggregate fields of \"datasources\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "dashboards_stream_cursor_input", + "description": "Streaming cursor of the table \"dashboards\"", + "fields": null, + "inputFields": [ { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "initial_value", + "description": "Stream column input with initial value", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dashboards_stream_cursor_value_input", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "datasources_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "min", - "description": null, - "args": [], + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "OBJECT", - "name": "datasources_min_fields", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_order_by", - "description": "order by aggregate values of table \"datasources\"", + "name": "dashboards_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "count", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "max", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_max_order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "min", + "name": "layout", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_min_order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ + }, { - "name": "db_params", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"datasources\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "team_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": "datasources_insert_input", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "updated_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -25076,297 +25768,410 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "description": "Boolean expression to filter rows from the table \"datasources\". All fields are combined with a logical 'AND'.", + "kind": "ENUM", + "name": "dashboards_update_column", + "description": "update columns of table \"dashboards\"", "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": "datasources_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null + "name": "id", + "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": "datasources_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null + "name": "layout", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branches", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branches_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null + "name": "team_id", + "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": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - }, + "name": "user_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dashboards_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataschemas_aggregate", - "description": null, + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp", + "name": "dashboards_append_input", "ofType": null }, "defaultValue": null }, { - "name": "db_params", - "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": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "dashboards_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "db_params_computed", - "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": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "dashboards_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "db_type", - "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": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "dashboards_delete_key_input", "ofType": null }, "defaultValue": null }, { - "name": "explorations", - "description": null, + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "dashboards_prepend_input", "ofType": null }, "defaultValue": null }, { - "name": "explorations_aggregate", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp", + "name": "dashboards_set_input", "ofType": null }, "defaultValue": null }, { - "name": "id", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "dataschemas", + "description": "columns and relationships of \"dataschemas\"", + "fields": [ { - "name": "name", + "name": "checksum", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "request_logs", + "name": "code", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "request_logs_aggregate", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sql_credentials", - "description": null, + "name": "datasource", + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sql_credentials_aggregate", + "name": "datasource_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team_id", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_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", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "user", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "user_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": "An object relationship", + "args": [], + "type": { + "kind": "OBJECT", + "name": "versions", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "datasources_constraint", - "description": "unique or primary key constraints on table \"datasources\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "dataschemas_aggregate", + "description": "aggregated selection of \"dataschemas\"", + "fields": [ { - "name": "datasources_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "dataschemas_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": "dataschemas", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "dataschemas_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "db_params", + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dataschemas_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", "description": null, "type": { "kind": "LIST", @@ -25375,31 +26180,165 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "dataschemas_select_column", "ofType": null } } }, "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null } ], "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "dataschemas_aggregate_fields", + "description": "aggregate fields of \"dataschemas\"", + "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": "dataschemas_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "dataschemas_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "dataschemas_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "datasources_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": "dataschemas_aggregate_order_by", + "description": "order by aggregate values of table \"dataschemas\"", "fields": null, "inputFields": [ { - "name": "db_params", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_min_order_by", "ofType": null }, "defaultValue": null @@ -25411,16 +26350,38 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "dataschemas_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"dataschemas\"", "fields": null, "inputFields": [ { - "name": "db_params", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_on_conflict", "ofType": null }, "defaultValue": null @@ -25432,156 +26393,172 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "description": "input type for inserting data into table \"datasources\"", + "name": "dataschemas_bool_exp", + "description": "Boolean expression to filter rows from the table \"dataschemas\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "branches", + "name": "_and", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "branches_arr_rel_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "created_at", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "dataschemas", + "name": "_or", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_arr_rel_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "db_params", + "name": "checksum", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "db_type", + "name": "code", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "explorations", + "name": "created_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_arr_rel_insert_input", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "datasource", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "datasource_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "request_logs", + "name": "id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "request_logs_arr_rel_insert_input", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "sql_credentials", + "name": "name", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "sql_credentials_arr_rel_insert_input", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "updated_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "user", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "user", + "name": "version", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", + "name": "versions_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "version_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -25592,118 +26569,280 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "datasources_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "ENUM", + "name": "dataschemas_constraint", + "description": "unique or primary key constraints on table \"dataschemas\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "created_at", + "name": "dataschemas_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dataschemas_insert_input", + "description": "input type for inserting data into table \"dataschemas\"", + "fields": null, + "inputFields": [ + { + "name": "checksum", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "db_type", + "name": "code", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "datasource", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "datasources_obj_rel_insert_input", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team_id", + "name": "datasource_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updated_at", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "user_id", + "name": "name", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_max_order_by", - "description": "order by max() on columns of table \"datasources\"", - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "created_at", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "db_type", + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "dataschemas_max_fields", + "description": "aggregate max on columns", + "fields": [ + { + "name": "checksum", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "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": "datasource_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "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": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "dataschemas_max_order_by", + "description": "order by max() on columns of table \"dataschemas\"", + "fields": null, + "inputFields": [ + { + "name": "checksum", "description": null, "type": { "kind": "ENUM", @@ -25713,7 +26852,7 @@ "defaultValue": null }, { - "name": "id", + "name": "code", "description": null, "type": { "kind": "ENUM", @@ -25723,7 +26862,7 @@ "defaultValue": null }, { - "name": "name", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -25733,7 +26872,27 @@ "defaultValue": null }, { - "name": "team_id", + "name": "datasource_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": null, "type": { "kind": "ENUM", @@ -25761,6 +26920,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "version_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -25769,9 +26938,33 @@ }, { "kind": "OBJECT", - "name": "datasources_min_fields", + "name": "dataschemas_min_fields", "description": "aggregate min on columns", "fields": [ + { + "name": "checksum", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", "description": null, @@ -25785,12 +26978,12 @@ "deprecationReason": null }, { - "name": "db_type", + "name": "datasource_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, "isDeprecated": false, @@ -25821,31 +27014,31 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "version_id", "description": null, "args": [], "type": { @@ -25864,10 +27057,30 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_min_order_by", - "description": "order by min() on columns of table \"datasources\"", + "name": "dataschemas_min_order_by", + "description": "order by min() on columns of table \"dataschemas\"", "fields": null, "inputFields": [ + { + "name": "checksum", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, { "name": "created_at", "description": null, @@ -25879,7 +27092,7 @@ "defaultValue": null }, { - "name": "db_type", + "name": "datasource_id", "description": null, "type": { "kind": "ENUM", @@ -25909,7 +27122,7 @@ "defaultValue": null }, { - "name": "team_id", + "name": "updated_at", "description": null, "type": { "kind": "ENUM", @@ -25919,7 +27132,7 @@ "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { "kind": "ENUM", @@ -25929,7 +27142,7 @@ "defaultValue": null }, { - "name": "user_id", + "name": "version_id", "description": null, "type": { "kind": "ENUM", @@ -25945,8 +27158,8 @@ }, { "kind": "OBJECT", - "name": "datasources_mutation_response", - "description": "response of any mutation on the table \"datasources\"", + "name": "dataschemas_mutation_response", + "description": "response of any mutation on the table \"dataschemas\"", "fields": [ { "name": "affected_rows", @@ -25979,7 +27192,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "datasources", + "name": "dataschemas", "ofType": null } } @@ -25996,43 +27209,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "description": "on_conflict condition type for table \"datasources\"", + "name": "dataschemas_on_conflict", + "description": "on_conflict condition type for table \"dataschemas\"", "fields": null, "inputFields": [ { @@ -26043,7 +27221,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "datasources_constraint", + "name": "dataschemas_constraint", "ofType": null } }, @@ -26063,7 +27241,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "datasources_update_column", + "name": "dataschemas_update_column", "ofType": null } } @@ -26076,7 +27254,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "name": "dataschemas_bool_exp", "ofType": null }, "defaultValue": null @@ -26088,22 +27266,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "description": "Ordering options when selecting data from \"datasources\".", + "name": "dataschemas_order_by", + "description": "Ordering options when selecting data from \"dataschemas\".", "fields": null, "inputFields": [ { - "name": "branches_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", + "name": "checksum", "description": null, "type": { "kind": "ENUM", @@ -26113,17 +27281,7 @@ "defaultValue": null }, { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params", + "name": "code", "description": null, "type": { "kind": "ENUM", @@ -26133,7 +27291,7 @@ "defaultValue": null }, { - "name": "db_params_computed", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -26143,21 +27301,21 @@ "defaultValue": null }, { - "name": "db_type", + "name": "datasource", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "datasources_order_by", "ofType": null }, "defaultValue": null }, { - "name": "explorations_aggregate", + "name": "datasource_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -26183,47 +27341,27 @@ "defaultValue": null }, { - "name": "request_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials_aggregate", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "user", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "name": "users_order_by", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { "kind": "ENUM", @@ -26233,17 +27371,17 @@ "defaultValue": null }, { - "name": "user", + "name": "version", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_order_by", + "name": "versions_order_by", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "version_id", "description": null, "type": { "kind": "ENUM", @@ -26259,8 +27397,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_pk_columns_input", - "description": "primary key columns input for table: datasources", + "name": "dataschemas_pk_columns_input", + "description": "primary key columns input for table: dataschemas", "fields": null, "inputFields": [ { @@ -26282,67 +27420,46 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "ENUM", - "name": "datasources_select_column", - "description": "select columns of table \"datasources\"", + "name": "dataschemas_select_column", + "description": "select columns of table \"dataschemas\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created_at", + "name": "checksum", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "db_params", + "name": "code", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "db_type", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "datasource_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "name", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -26358,48 +27475,54 @@ "description": "column name", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "version_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null } ], "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "description": "input type for updating data in table \"datasources\"", + "name": "dataschemas_set_input", + "description": "input type for updating data in table \"dataschemas\"", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "checksum", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "db_params", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "db_type", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "datasource_id", "description": null, "type": { "kind": "SCALAR", @@ -26409,21 +27532,21 @@ "defaultValue": null }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -26447,6 +27570,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "version_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -26455,8 +27588,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_input", - "description": "Streaming cursor of the table \"datasources\"", + "name": "dataschemas_stream_cursor_input", + "description": "Streaming cursor of the table \"dataschemas\"", "fields": null, "inputFields": [ { @@ -26467,7 +27600,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_value_input", + "name": "dataschemas_stream_cursor_value_input", "ofType": null } }, @@ -26490,42 +27623,42 @@ }, { "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_value_input", + "name": "dataschemas_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "checksum", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "db_params", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "db_type", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "datasource_id", "description": null, "type": { "kind": "SCALAR", @@ -26535,21 +27668,21 @@ "defaultValue": null }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -26573,6 +27706,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "version_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -26581,44 +27724,44 @@ }, { "kind": "ENUM", - "name": "datasources_update_column", - "description": "update columns of table \"datasources\"", + "name": "dataschemas_update_column", + "description": "update columns of table \"dataschemas\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created_at", + "name": "checksum", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "db_params", + "name": "code", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "db_type", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "datasource_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "name", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -26634,72 +27777,28 @@ "description": "column name", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "version_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null } ], "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "datasources_updates", + "name": "dataschemas_updates", "description": null, "fields": null, "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "ofType": null - }, - "defaultValue": null - }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "datasources_set_input", + "name": "dataschemas_set_input", "ofType": null }, "defaultValue": null @@ -26712,7 +27811,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "name": "dataschemas_bool_exp", "ofType": null } }, @@ -26725,19 +27824,19 @@ }, { "kind": "OBJECT", - "name": "events", - "description": "suitable for Events Analytics", + "name": "datasources", + "description": "columns and relationships of \"datasources\"", "fields": [ { - "name": "created_at", + "name": "auth", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "auth_options_enum", "ofType": null } }, @@ -26745,26 +27844,15 @@ "deprecationReason": null }, { - "name": "data", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "auth_option", + "description": "An object relationship", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "auth_options", "ofType": null } }, @@ -26772,15 +27860,71 @@ "deprecationReason": null }, { - "name": "device_context", - "description": null, + "name": "branches", + "description": "An array relationship", "args": [ { - "name": "path", - "description": "JSON select path", + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branches_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -26790,40 +27934,88 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "page_context", - "description": null, + "name": "branches_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "path", - "description": "JSON select path", + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branches_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -26833,8 +28025,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "branches_aggregate", "ofType": null } }, @@ -26842,7 +28034,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -26858,59 +28050,76 @@ "deprecationReason": null }, { - "name": "user", - "description": null, + "name": "credentials", + "description": "An array relationship", "args": [ { - "name": "path", - "description": "JSON select path", + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null } ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_aggregate", - "description": "aggregated selection of \"events\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "events_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -26922,7 +28131,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "events", + "name": "credentials", "ofType": null } } @@ -26930,25 +28139,14 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_aggregate_fields", - "description": "aggregate fields of \"events\"", - "fields": [ + }, { - "name": "count", - "description": null, + "name": "credentials_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "columns", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { "kind": "LIST", "name": null, @@ -26957,7 +28155,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "events_select_column", + "name": "credentials_select_column", "ofType": null } } @@ -26965,11 +28163,49 @@ "defaultValue": 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 + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -26979,8 +28215,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "credentials_aggregate", "ofType": null } }, @@ -26988,638 +28224,392 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "events_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "events_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "description": "Boolean expression to filter rows from the table \"events\". 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": "dataschemas", + "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": "dataschemas_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { "kind": "INPUT_OBJECT", - "name": "events_bool_exp", + "name": "dataschemas_bool_exp", "ofType": null - } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dataschemas", + "ofType": null + } } } }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "events_constraint", - "description": "unique or primary key constraints on table \"events\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "events_pkey", - "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_create_input", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "data", - "description": null, + "name": "dataschemas_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": "dataschemas_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "json", + "kind": "OBJECT", + "name": "dataschemas_aggregate", "ofType": null } }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", + "name": "db_params", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "json", + "name": "jsonb", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_create_mutation_response", - "description": null, - "fields": [ - { - "name": "affected_rows", - "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": "events_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "db_type", "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 } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "device_context", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "explorations", + "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": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, + ], "type": { - "kind": "LIST", + "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": "OBJECT", + "name": "explorations", + "ofType": null + } } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "explorations_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": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_insert_input", - "description": "input type for inserting data into table \"events\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_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": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -27629,46 +28619,27 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "name", "description": null, "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_mutation_response", - "description": "response of any mutation on the table \"events\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -27676,9 +28647,76 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "request_logs", + "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": "request_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -27690,7 +28728,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "events", + "name": "request_logs", "ofType": null } } @@ -27698,168 +28736,402 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_on_conflict", - "description": "on_conflict condition type for table \"events\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_constraint", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "name": "request_logs_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "events_update_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "request_logs_select_column", + "ofType": null + } } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_logs_aggregate", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "description": "Ordering options when selecting data from \"events\".", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "created_at", - "description": null, + "name": "sql_credentials", + "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": "sql_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sql_credentials", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", - "description": null, + "name": "sql_credentials_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": "sql_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sql_credentials_aggregate", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "device_context", - "description": null, + "name": "team", + "description": "An object relationship", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "teams", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "team_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "page_context", + "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": "updated_at", + "name": "user", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "datasources_aggregate", + "description": "aggregated selection of \"datasources\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "datasources_aggregate_fields", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", + "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": "datasources", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "events_pk_columns_input", - "description": "primary key columns input for table: events", + "name": "datasources_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "datasources_aggregate_bool_exp_count", + "ofType": null }, "defaultValue": null } @@ -27870,47 +29142,59 @@ }, { "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "datasources_aggregate_bool_exp_count", + "description": null, "fields": null, "inputFields": [ { - "name": "data", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "datasources_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "device_context", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "page_context", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null } @@ -27920,126 +29204,134 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "events_select_column", - "description": "select columns of table \"events\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "datasources_aggregate_fields", + "description": "aggregate fields of \"datasources\"", + "fields": [ { - "name": "data", - "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": "datasources_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "device_context", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "datasources_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "column name", + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "datasources_min_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "events_set_input", - "description": "input type for updating data in table \"events\"", + "name": "datasources_aggregate_order_by", + "description": "order by aggregate values of table \"datasources\"", "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "page_context", + "name": "max", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "datasources_max_order_by", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "min", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "datasources_min_order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ { - "name": "user", + "name": "db_params", "description": null, "type": { "kind": "SCALAR", @@ -28055,30 +29347,38 @@ }, { "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_input", - "description": "Streaming cursor of the table \"events\"", + "name": "datasources_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"datasources\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "data", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_value_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_insert_input", + "ofType": null + } + } } }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "datasources_on_conflict", "ofType": null }, "defaultValue": null @@ -28090,215 +29390,293 @@ }, { "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "datasources_bool_exp", + "description": "Boolean expression to filter rows from the table \"datasources\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "auth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_options_enum_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "device_context", + "name": "auth_option", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "auth_options_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "branches", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "page_context", + "name": "branches_aggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "branches_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "user", + "name": "credentials", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "events_update_column", - "description": "update columns of table \"events\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "credentials_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "data", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "dataschemas", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "device_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "dataschemas_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "db_params", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "db_type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "explorations", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "explorations_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "page_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "request_logs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "user", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_updates", - "description": null, - "fields": null, - "inputFields": [ + "name": "request_logs_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null + }, { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "sql_credentials", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "events_append_input", + "name": "sql_credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "sql_credentials_aggregate", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", + "name": "sql_credentials_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "team", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", + "name": "teams_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "team_id", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "updated_at", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "events_prepend_input", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "user", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "events_set_input", + "name": "users_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "user_id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, "defaultValue": null } @@ -28308,198 +29686,315 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "explorations", - "description": "columns and relationships of \"explorations\"", - "fields": [ + "kind": "ENUM", + "name": "datasources_constraint", + "description": "unique or primary key constraints on table \"datasources\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "alerts", - "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": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasources_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_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": "db_params", + "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": "alerts", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_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": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_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": "db_params", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_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": "db_params", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_insert_input", + "description": "input type for inserting data into table \"datasources\"", + "fields": null, + "inputFields": [ + { + "name": "auth", + "description": null, + "type": { + "kind": "ENUM", + "name": "auth_options_enum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "auth_option", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_options_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branches", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "credentials", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dataschemas", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "db_params", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "db_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "explorations", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "request_logs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sql_credentials", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "datasources_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": "branch", - "description": "An object relationship", + "name": "db_type", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "branches", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_id", + "name": "id", "description": null, "args": [], "type": { @@ -28511,467 +30006,201 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "name", "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": "datasource", - "description": "An object relationship", + "name": "team_id", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_id", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_max_order_by", + "description": "order by max() on columns of table \"datasources\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { - "name": "pinned_items", - "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": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "db_type", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pinned_items_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": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "datasources_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": "playground_settings", + "name": "db_type", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "playground_state", + "name": "id", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reports", - "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": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "name", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reports_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": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "team_id", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -28981,13 +30210,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 @@ -28997,13 +30222,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -29014,26 +30235,111 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_min_order_by", + "description": "order by min() on columns of table \"datasources\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "db_type", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "explorations_aggregate", - "description": "aggregated selection of \"explorations\"", + "name": "datasources_mutation_response", + "description": "response of any mutation on the table \"datasources\"", "fields": [ { - "name": "aggregate", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "explorations_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", @@ -29046,7 +30352,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations", + "name": "datasources", "ofType": null } } @@ -29063,16 +30369,30 @@ }, { "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp", - "description": null, + "name": "datasources_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"datasources\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "data", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_insert_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp_count", + "name": "datasources_on_conflict", "ofType": null }, "defaultValue": null @@ -29084,227 +30404,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp_count", - "description": null, + "name": "datasources_on_conflict", + "description": "on_conflict condition type for table \"datasources\"", "fields": null, "inputFields": [ { - "name": "arguments", + "name": "constraint", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } + "kind": "ENUM", + "name": "datasources_constraint", + "ofType": null } }, "defaultValue": null }, { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations_aggregate_fields", - "description": "aggregate fields of \"explorations\"", - "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": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "explorations_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "explorations_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_order_by", - "description": "order by aggregate values of table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "data", + "name": "update_columns", "description": null, "type": { "kind": "NON_NULL", @@ -29316,21 +30435,21 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", + "kind": "ENUM", + "name": "datasources_update_column", "ofType": null } } } }, - "defaultValue": null + "defaultValue": "[]" }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "where", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -29342,122 +30461,96 @@ }, { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "description": "Boolean expression to filter rows from the table \"explorations\". All fields are combined with a logical 'AND'.", + "name": "datasources_order_by", + "description": "Ordering options when selecting data from \"datasources\".", "fields": null, "inputFields": [ { - "name": "_and", + "name": "auth", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "_not", + "name": "auth_option", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "auth_options_order_by", "ofType": null }, "defaultValue": null }, { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "alerts", + "name": "branches_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "branches_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "alerts_aggregate", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "branch", + "name": "credentials_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "credentials_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "branch_id", + "name": "dataschemas_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "dataschemas_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "db_params", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "datasource", + "name": "db_type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "explorations_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "explorations_aggregate_order_by", "ofType": null }, "defaultValue": null @@ -29466,78 +30559,78 @@ "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "pinned_items", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "pinned_items_aggregate", + "name": "request_logs_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp", + "name": "request_logs_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "playground_settings", + "name": "sql_credentials_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "sql_credentials_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "playground_state", + "name": "team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "teams_order_by", "ofType": null }, "defaultValue": null }, { - "name": "reports", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "reports_aggregate", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "users_order_by", "ofType": null }, "defaultValue": null @@ -29546,8 +30639,8 @@ "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -29557,61 +30650,22 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "explorations_constraint", - "description": "unique or primary key constraints on table \"explorations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "explorations_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "datasources_pk_columns_input", + "description": "primary key columns input for table: datasources", "fields": null, "inputFields": [ { - "name": "playground_settings", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "playground_state", + "name": "id", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null @@ -29623,26 +30677,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "explorations_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": "datasources_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "fields": null, "inputFields": [ { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", + "name": "db_params", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -29653,104 +30697,138 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "kind": "ENUM", + "name": "datasources_select_column", + "description": "select columns of table \"datasources\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "auth", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "db_params", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "db_type", + "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": "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 } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "description": "input type for inserting data into table \"explorations\"", + "name": "datasources_set_input", + "description": "input type for updating data in table \"datasources\"", "fields": null, "inputFields": [ { - "name": "alerts", + "name": "auth", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_arr_rel_insert_input", + "kind": "ENUM", + "name": "auth_options_enum", "ofType": null }, "defaultValue": null }, { - "name": "branch", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "branches_obj_rel_insert_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "branch_id", + "name": "db_params", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "db_type", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "datasource", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", @@ -29760,61 +30838,56 @@ "defaultValue": null }, { - "name": "pinned_items", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_arr_rel_insert_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", + "name": "uuid", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "datasources_stream_cursor_input", + "description": "Streaming cursor of the table \"datasources\"", + "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": "datasources_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "user_id", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null @@ -29825,130 +30898,77 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "explorations_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "datasources_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "branch_id", + "name": "auth", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "auth_options_enum", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "db_params", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updated_at", + "name": "db_type", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "user_id", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_max_order_by", - "description": "order by max() on columns of table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, "defaultValue": null }, { - "name": "datasource_id", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -29957,8 +30977,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -29967,8 +30987,8 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -29979,153 +30999,149 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "explorations_min_fields", - "description": "aggregate min on columns", - "fields": [ + "kind": "ENUM", + "name": "datasources_update_column", + "description": "update columns of table \"datasources\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "name": "auth", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "name": "db_params", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "db_type", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "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": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "explorations_min_order_by", - "description": "order by min() on columns of table \"explorations\"", + "name": "datasources_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "branch_id", - "description": null, + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "datasources_append_input", "ofType": null }, "defaultValue": null }, { - "name": "created_at", - "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": "datasources_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", - "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": "datasources_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "id", - "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": "datasources_delete_key_input", "ofType": null }, "defaultValue": 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": "datasources_prepend_input", "ofType": null }, "defaultValue": null }, { - "name": "user_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": "datasources_set_input", "ofType": null }, "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", + "ofType": null + } + }, + "defaultValue": null } ], "interfaces": null, @@ -30134,19 +31150,19 @@ }, { "kind": "OBJECT", - "name": "explorations_mutation_response", - "description": "response of any mutation on the table \"explorations\"", + "name": "events", + "description": "suitable for Events Analytics", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "created_at", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null } }, @@ -30154,315 +31170,447 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "data", + "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"explorations\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "device_context", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "description": "on_conflict condition type for table \"explorations\"", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "constraint", + "name": "page_context", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "explorations_constraint", + "kind": "SCALAR", + "name": "jsonb", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "update_columns", + "name": "updated_at", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_update_column", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, - "defaultValue": "[]" + "isDeprecated": false, + "deprecationReason": null }, { - "name": "where", + "name": "user", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "description": "Ordering options when selecting data from \"explorations\".", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "events_aggregate", + "description": "aggregated selection of \"events\"", + "fields": [ { - "name": "alerts_aggregate", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_order_by", + "kind": "OBJECT", + "name": "events_aggregate_fields", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branch", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "events_aggregate_fields", + "description": "aggregate fields of \"events\"", + "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": "events_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branch_id", + "name": "max", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "events_max_fields", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "created_at", + "name": "min", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "events_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "datasource", + "name": "device_context", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "page_context", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "user", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "description": "Boolean expression to filter rows from the table \"events\". 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": "events_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "pinned_items_aggregate", + "name": "_not", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_order_by", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "playground_settings", + "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": "events_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "playground_state", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "reports_aggregate", + "name": "data", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "device_context", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_pk_columns_input", - "description": "primary key columns input for table: explorations", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "page_context", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ + }, { - "name": "playground_settings", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "playground_state", + "name": "user", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null @@ -30474,57 +31622,15 @@ }, { "kind": "ENUM", - "name": "explorations_select_column", - "description": "select columns of table \"explorations\"", + "name": "events_constraint", + "description": "unique or primary key constraints on table \"events\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "branch_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_settings", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_state", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", + "name": "events_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -30533,122 +31639,161 @@ }, { "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "description": "input type for updating data in table \"explorations\"", + "name": "events_create_input", + "description": null, "fields": null, "inputFields": [ { - "name": "branch_id", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "json", + "ofType": null + } }, "defaultValue": null }, { - "name": "created_at", + "name": "device_context", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "json", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "page_context", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "json", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "user", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "json", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "events_create_mutation_response", + "description": null, + "fields": [ { - "name": "playground_settings", + "name": "affected_rows", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "Int", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_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": "playground_state", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "updated_at", + "name": "device_context", "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 }, { - "name": "user_id", + "name": "page_context", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_input", - "description": "Streaming cursor of the table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_value_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "user", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null } @@ -30659,86 +31804,97 @@ }, { "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "events_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": "branch_id", + "name": "data", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "device_context", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", + "name": "page_context", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "user", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_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": "playground_settings", + "name": "data", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "playground_state", + "name": "device_context", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "page_context", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "user", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null @@ -30748,142 +31904,79 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "explorations_update_column", - "description": "update columns of table \"explorations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_settings", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_state", - "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": "explorations_updates", - "description": null, + "name": "events_insert_input", + "description": "input type for inserting data into table \"events\"", "fields": null, "inputFields": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "created_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "data", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "device_context", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "page_context", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "updated_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "user", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, "defaultValue": null } @@ -30893,164 +31986,198 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "float8", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "float8_comparison_exp", - "description": "Boolean expression to compare columns of type \"float8\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "events_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "_eq", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "timestamptz", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_gt", + "name": "id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_gte", + "name": "updated_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "timestamptz", "ofType": null }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - } - } - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "events_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "_is_null", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_lt", + "name": "id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_lte", + "name": "updated_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "timestamptz", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "events_mutation_response", + "description": "response of any mutation on the table \"events\"", + "fields": [ { - "name": "_neq", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_nin", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "float8", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events", + "ofType": null + } } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "json", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "jsonb", - "description": null, - "fields": null, "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "description": null, + "name": "events_on_conflict", + "description": "on_conflict condition type for table \"events\"", "fields": null, "inputFields": [ { - "name": "String", + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "events_constraint", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "events_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]" + }, + { + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null @@ -31062,146 +32189,128 @@ }, { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", + "name": "events_order_by", + "description": "Ordering options when selecting data from \"events\".", "fields": null, "inputFields": [ { - "name": "_cast", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_contained_in", - "description": "is the column contained in the given json value", + "name": "data", + "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_contains", - "description": "does the column contain the given json value at the top level", + "name": "device_context", + "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_eq", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_gt", + "name": "page_context", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_gte", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "_has_key", - "description": "does the string exist as a top-level key in the column", + "name": "user", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - }, - { - "name": "_has_keys_all", - "description": "do all of these strings exist as top-level keys in the column", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_has_keys_any", - "description": "do any of these strings exist as top-level keys in the column", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_pk_columns_input", + "description": "primary key columns input for table: events", + "fields": null, + "inputFields": [ { - "name": "_in", + "name": "id", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ { - "name": "_is_null", + "name": "data", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "_lt", + "name": "device_context", "description": null, "type": { "kind": "SCALAR", @@ -31211,7 +32320,7 @@ "defaultValue": null }, { - "name": "_lte", + "name": "page_context", "description": null, "type": { "kind": "SCALAR", @@ -31221,7 +32330,7 @@ "defaultValue": null }, { - "name": "_neq", + "name": "user", "description": null, "type": { "kind": "SCALAR", @@ -31229,24 +32338,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - } - }, - "defaultValue": null } ], "interfaces": null, @@ -31254,387 +32345,130 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "member_roles", - "description": "columns and relationships of \"member_roles\"", - "fields": [ - { - "name": "access_list", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_list_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "ENUM", + "name": "events_select_column", + "description": "select columns of table \"events\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { "name": "created_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": "uuid", - "ofType": null - } - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "member", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - }, + "name": "data", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "member_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, + "name": "device_context", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "teamRoleByTeamRole", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_role", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - } - }, + "name": "page_context", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "description": "aggregated selection of \"member_roles\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "member_roles_aggregate_fields", - "ofType": null - }, + "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": "member_roles", - "ofType": null - } - } - } - }, + "name": "user", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp", - "description": null, + "name": "events_set_input", + "description": "input type for updating data in table \"events\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_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": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "distinct", + "name": "data", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "device_context", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_aggregate_fields", - "description": "aggregate fields of \"member_roles\"", - "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": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "member_roles_max_fields", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "member_roles_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_order_by", - "description": "order by aggregate values of table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "count", + "name": "page_context", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "max", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_max_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "min", + "name": "user", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_min_order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -31646,38 +32480,30 @@ }, { "kind": "INPUT_OBJECT", - "name": "member_roles_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"member_roles\"", + "name": "events_stream_cursor_input", + "description": "Streaming cursor of the table \"events\"", "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": "member_roles_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "events_stream_cursor_value_input", + "ofType": null } }, "defaultValue": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null @@ -31689,267 +32515,215 @@ }, { "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "description": "Boolean expression to filter rows from the table \"member_roles\". All fields are combined with a logical 'AND'.", + "name": "events_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "_and", + "name": "created_at", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null }, { - "name": "_not", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "_or", + "name": "device_context", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, "defaultValue": null }, { - "name": "access_list", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "access_list_id", + "name": "page_context", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "user", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "events_update_column", + "description": "update columns of table \"events\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "member", - "description": null, + "name": "data", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "device_context", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "page_context", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "members_bool_exp", + "name": "events_append_input", "ofType": null }, "defaultValue": null }, { - "name": "member_id", - "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": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "events_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "teamRoleByTeamRole", - "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": "INPUT_OBJECT", - "name": "team_roles_bool_exp", + "name": "events_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "team_role", - "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": "INPUT_OBJECT", - "name": "team_roles_enum_comparison_exp", + "name": "events_delete_key_input", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", - "description": null, + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "member_roles_constraint", - "description": "unique or primary key constraints on table \"member_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "member_roles_member_id_team_role_key", - "description": "unique or primary key constraint on columns \"team_role\", \"member_id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_insert_input", - "description": "input type for inserting data into table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", + "name": "events_prepend_input", "ofType": null }, "defaultValue": null }, { - "name": "teamRoleByTeamRole", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "team_roles_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "team_roles_enum", + "name": "events_set_input", "ofType": null }, "defaultValue": 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": "events_bool_exp", + "ofType": null + } }, "defaultValue": null } @@ -31960,47 +32734,197 @@ }, { "kind": "OBJECT", - "name": "member_roles_max_fields", - "description": "aggregate max on columns", + "name": "explorations", + "description": "columns and relationships of \"explorations\"", "fields": [ { - "name": "access_list_id", - "description": null, - "args": [], + "name": "alerts", + "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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], + "name": "alerts_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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "branch", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "branches", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "member_id", + "name": "branch_id", "description": null, "args": [], "type": { @@ -32012,109 +32936,49 @@ "deprecationReason": null }, { - "name": "updated_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 - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_max_order_by", - "description": "order by max() on columns of table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null }, { - "name": "member_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "access_list_id", - "description": null, + "name": "datasource", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "datasource_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -32124,119 +32988,429 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "member_id", - "description": null, - "args": [], + "name": "pinned_items", + "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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items", + "ofType": null + } + } + } + }, + "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], + "name": "pinned_items_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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_min_order_by", - "description": "order by min() on columns of table \"member_roles\"", - "fields": null, - "inputFields": [ + }, { - "name": "access_list_id", + "name": "playground_settings", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "created_at", + "name": "playground_state", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "reports", + "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": "reports_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "member_id", - "description": null, + "name": "reports_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": "reports_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports_aggregate", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "updated_at", "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "description": "response of any mutation on the table \"member_roles\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null } }, @@ -32244,24 +33418,16 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "user_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": "member_roles", - "ofType": null - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "isDeprecated": false, @@ -32274,28 +33440,26 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "description": "on_conflict condition type for table \"member_roles\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "explorations_aggregate", + "description": "aggregated selection of \"explorations\"", + "fields": [ { - "name": "constraint", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_constraint", - "ofType": null - } + "kind": "OBJECT", + "name": "explorations_aggregate_fields", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "update_columns", + "name": "nodes", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -32306,21 +33470,34 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "member_roles_update_column", + "kind": "OBJECT", + "name": "explorations", "ofType": null } } } }, - "defaultValue": "[]" - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "where", + "name": "count", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", + "name": "explorations_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null @@ -32332,96 +33509,210 @@ }, { "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "description": "Ordering options when selecting data from \"member_roles\".", + "name": "explorations_aggregate_bool_exp_count", + "description": null, "fields": null, "inputFields": [ { - "name": "access_list", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "access_list_id", + "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": "explorations_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "created_at", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "member", + "name": "predicate", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "explorations_aggregate_fields", + "description": "aggregate fields of \"explorations\"", + "fields": [ { - "name": "member_id", + "name": "count", "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "explorations_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "explorations_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_aggregate_order_by", + "description": "order by aggregate values of table \"explorations\"", + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, "defaultValue": null }, { - "name": "teamRoleByTeamRole", + "name": "max", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", + "name": "explorations_max_order_by", "ofType": null }, "defaultValue": null }, { - "name": "team_role", + "name": "min", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "explorations_min_order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "playground_settings", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "playground_state", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null @@ -32433,23 +33724,41 @@ }, { "kind": "INPUT_OBJECT", - "name": "member_roles_pk_columns_input", - "description": "primary key columns input for table: member_roles", + "name": "explorations_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"explorations\"", "fields": null, "inputFields": [ { - "name": "id", + "name": "data", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_insert_input", + "ofType": null + } + } } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -32457,220 +33766,213 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "member_roles_select_column", - "description": "select columns of table \"member_roles\"", + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "description": "Boolean expression to filter rows from the table \"explorations\". All fields are combined with a logical 'AND'.", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "access_list_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "id", - "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": "explorations_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "member_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "alerts", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "team_role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "alerts_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null }, { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "description": "input type for updating data in table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list_id", + "name": "branch", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "branch_id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "member_id", + "name": "datasource", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_role", + "name": "datasource_id", "description": null, "type": { - "kind": "ENUM", - "name": "team_roles_enum", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_input", - "description": "Streaming cursor of the table \"member_roles\"", - "fields": null, - "inputFields": [ + }, { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "pinned_items", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_value_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "pinned_items_aggregate", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_bool_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "access_list_id", + "name": "playground_settings", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "created_at", + "name": "playground_state", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "reports", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "member_id", + "name": "reports_aggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "reports_aggregate_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_role", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "team_roles_enum", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -32682,45 +33984,15 @@ }, { "kind": "ENUM", - "name": "member_roles_update_column", - "description": "update columns of table \"member_roles\"", + "name": "explorations_constraint", + "description": "unique or primary key constraints on table \"explorations\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "access_list_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": "member_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", + "name": "explorations_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -32729,30 +34001,42 @@ }, { "kind": "INPUT_OBJECT", - "name": "member_roles_updates", - "description": null, + "name": "explorations_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": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "playground_settings", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "playground_state", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null @@ -32763,425 +34047,200 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "members", - "description": "columns and relationships of \"members\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "explorations_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": "created_at", + "name": "playground_settings", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "playground_state", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_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": "playground_settings", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "member_roles", - "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": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "playground_state", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_insert_input", + "description": "input type for inserting data into table \"explorations\"", + "fields": null, + "inputFields": [ { - "name": "member_roles_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": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "alerts", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "alerts_arr_rel_insert_input", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "branch", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "branches_obj_rel_insert_input", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "team_id", + "name": "branch_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updated_at", + "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 }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "user", - "description": "An object relationship", - "args": [], + "name": "datasource", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "datasources_obj_rel_insert_input", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "user_id", + "name": "datasource_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_aggregate", - "description": "aggregated selection of \"members\"", - "fields": [ + "defaultValue": null + }, { - "name": "aggregate", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "members_aggregate_fields", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", + "name": "pinned_items", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "pinned_items_arr_rel_insert_input", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "count", + "name": "playground_settings", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "playground_state", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", + "name": "reports", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "reports_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "user_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null } @@ -33192,73 +34251,76 @@ }, { "kind": "OBJECT", - "name": "members_aggregate_fields", - "description": "aggregate fields of \"members\"", + "name": "explorations_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "count", + "name": "branch_id", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "members_max_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "datasource_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "members_min_fields", + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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": "uuid", "ofType": null }, "isDeprecated": false, @@ -33272,12 +34334,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_aggregate_order_by", - "description": "order by aggregate values of table \"members\"", + "name": "explorations_max_order_by", + "description": "order by max() on columns of table \"explorations\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "branch_id", "description": null, "type": { "kind": "ENUM", @@ -33287,131 +34349,21 @@ "defaultValue": null }, { - "name": "max", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "members_max_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "min", + "name": "datasource_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "members_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"members\"", - "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": "members_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "description": "Boolean expression to filter rows from the table \"members\". 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": "members_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -33420,48 +34372,8 @@ "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -33470,18 +34382,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -33490,8 +34392,8 @@ "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -33502,124 +34404,22 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "members_constraint", - "description": "unique or primary key constraints on table \"members\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "members_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_user_id_team_id_key", - "description": "unique or primary key constraint on columns \"user_id\", \"team_id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "description": "input type for inserting data into table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "explorations_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "team_id", + "name": "branch_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_max_fields", - "description": "aggregate max on columns", - "fields": [ { "name": "created_at", "description": null, @@ -33633,7 +34433,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "datasource_id", "description": null, "args": [], "type": { @@ -33645,7 +34445,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "id", "description": null, "args": [], "type": { @@ -33688,52 +34488,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_max_order_by", - "description": "order by max() on columns of table \"members\"", + "name": "explorations_min_order_by", + "description": "order by min() on columns of table \"explorations\"", "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", + "name": "branch_id", "description": null, "type": { "kind": "ENUM", @@ -33741,89 +34501,7 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_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": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "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": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_min_order_by", - "description": "order by min() on columns of table \"members\"", - "fields": null, - "inputFields": [ { "name": "created_at", "description": null, @@ -33835,7 +34513,7 @@ "defaultValue": null }, { - "name": "id", + "name": "datasource_id", "description": null, "type": { "kind": "ENUM", @@ -33845,7 +34523,7 @@ "defaultValue": null }, { - "name": "team_id", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -33881,8 +34559,8 @@ }, { "kind": "OBJECT", - "name": "members_mutation_response", - "description": "response of any mutation on the table \"members\"", + "name": "explorations_mutation_response", + "description": "response of any mutation on the table \"explorations\"", "fields": [ { "name": "affected_rows", @@ -33915,7 +34593,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "members", + "name": "explorations", "ofType": null } } @@ -33932,8 +34610,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"members\"", + "name": "explorations_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"explorations\"", "fields": null, "inputFields": [ { @@ -33944,7 +34622,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "members_insert_input", + "name": "explorations_insert_input", "ofType": null } }, @@ -33955,7 +34633,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "members_on_conflict", + "name": "explorations_on_conflict", "ofType": null }, "defaultValue": null @@ -33967,8 +34645,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "description": "on_conflict condition type for table \"members\"", + "name": "explorations_on_conflict", + "description": "on_conflict condition type for table \"explorations\"", "fields": null, "inputFields": [ { @@ -33979,7 +34657,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "members_constraint", + "name": "explorations_constraint", "ofType": null } }, @@ -33999,7 +34677,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "members_update_column", + "name": "explorations_update_column", "ofType": null } } @@ -34012,7 +34690,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "members_bool_exp", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null @@ -34024,22 +34702,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_order_by", - "description": "Ordering options when selecting data from \"members\".", + "name": "explorations_order_by", + "description": "Ordering options when selecting data from \"explorations\".", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "alerts_aggregate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "alerts_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "branch", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch_id", "description": null, "type": { "kind": "ENUM", @@ -34049,27 +34737,27 @@ "defaultValue": null }, { - "name": "member_roles_aggregate", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "datasource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "teams_order_by", + "name": "datasources_order_by", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "datasource_id", "description": null, "type": { "kind": "ENUM", @@ -34079,7 +34767,7 @@ "defaultValue": null }, { - "name": "updated_at", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -34089,17 +34777,17 @@ "defaultValue": null }, { - "name": "user", + "name": "pinned_items_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_order_by", + "name": "pinned_items_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "playground_settings", "description": null, "type": { "kind": "ENUM", @@ -34107,31 +34795,102 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_pk_columns_input", - "description": "primary key columns input for table: members", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "playground_state", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reports_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_aggregate_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_pk_columns_input", + "description": "primary key columns input for table: explorations", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "explorations_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "playground_settings", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "playground_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -34140,18 +34899,30 @@ }, { "kind": "ENUM", - "name": "members_select_column", - "description": "select columns of table \"members\"", + "name": "explorations_select_column", + "description": "select columns of table \"explorations\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ + { + "name": "branch_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, + { + "name": "datasource_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": "column name", @@ -34159,7 +34930,13 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "playground_settings", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "playground_state", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -34181,10 +34958,20 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_set_input", - "description": "input type for updating data in table \"members\"", + "name": "explorations_set_input", + "description": "input type for updating data in table \"explorations\"", "fields": null, "inputFields": [ + { + "name": "branch_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, { "name": "created_at", "description": null, @@ -34196,7 +34983,7 @@ "defaultValue": null }, { - "name": "id", + "name": "datasource_id", "description": null, "type": { "kind": "SCALAR", @@ -34206,7 +34993,7 @@ "defaultValue": null }, { - "name": "team_id", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -34215,6 +35002,26 @@ }, "defaultValue": null }, + { + "name": "playground_settings", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "playground_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, { "name": "updated_at", "description": null, @@ -34242,8 +35049,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_input", - "description": "Streaming cursor of the table \"members\"", + "name": "explorations_stream_cursor_input", + "description": "Streaming cursor of the table \"explorations\"", "fields": null, "inputFields": [ { @@ -34254,7 +35061,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_value_input", + "name": "explorations_stream_cursor_value_input", "ofType": null } }, @@ -34277,10 +35084,20 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_value_input", + "name": "explorations_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ + { + "name": "branch_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, { "name": "created_at", "description": null, @@ -34292,7 +35109,7 @@ "defaultValue": null }, { - "name": "id", + "name": "datasource_id", "description": null, "type": { "kind": "SCALAR", @@ -34302,7 +35119,7 @@ "defaultValue": null }, { - "name": "team_id", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -34311,6 +35128,26 @@ }, "defaultValue": null }, + { + "name": "playground_settings", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "playground_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, { "name": "updated_at", "description": null, @@ -34338,18 +35175,30 @@ }, { "kind": "ENUM", - "name": "members_update_column", - "description": "update columns of table \"members\"", + "name": "explorations_update_column", + "description": "update columns of table \"explorations\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ + { + "name": "branch_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, + { + "name": "datasource_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": "column name", @@ -34357,7 +35206,13 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "playground_settings", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "playground_state", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -34379,16 +35234,66 @@ }, { "kind": "INPUT_OBJECT", - "name": "members_updates", + "name": "explorations_updates", "description": null, "fields": null, "inputFields": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_prepend_input", + "ofType": null + }, + "defaultValue": null + }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "members_set_input", + "name": "explorations_set_input", "ofType": null }, "defaultValue": null @@ -34401,7 +35306,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "members_bool_exp", + "name": "explorations_bool_exp", "ofType": null } }, @@ -34413,5851 +35318,2879 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "mutation_root", - "description": "mutation root", - "fields": [ + "kind": "SCALAR", + "name": "float8", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "float8_comparison_exp", + "description": "Boolean expression to compare columns of type \"float8\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "check_connection", + "name": "_eq", "description": null, - "args": [ - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], "type": { - "kind": "OBJECT", - "name": "CheckConnectionOutput", + "kind": "SCALAR", + "name": "float8", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "create_events", + "name": "_gt", "description": null, - "args": [ - { - "name": "objects", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_create_input", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "float8", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "create_team", + "name": "_gte", "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], "type": { - "kind": "OBJECT", - "name": "CreateTeamOutput", + "kind": "SCALAR", + "name": "float8", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_access_lists", - "description": "delete data from the table: \"access_lists\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - }, - "defaultValue": null + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "_is_null", + "description": null, "type": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_access_lists_by_pk", - "description": "delete single row from the table: \"access_lists\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_lt", + "description": null, "type": { - "kind": "OBJECT", - "name": "access_lists", + "kind": "SCALAR", + "name": "float8", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_alerts", - "description": "delete data from the table: \"alerts\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_lte", + "description": null, "type": { - "kind": "OBJECT", - "name": "alerts_mutation_response", + "kind": "SCALAR", + "name": "float8", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_alerts_by_pk", - "description": "delete single row from the table: \"alerts\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_neq", + "description": null, "type": { - "kind": "OBJECT", - "name": "alerts", + "kind": "SCALAR", + "name": "float8", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_account_providers", - "description": "delete data from the table: \"auth.account_providers\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + } } - ], + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "json", + "description": null, + "fields": null, + "inputFields": 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": "jsonb_cast_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "String", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "delete_auth_account_providers_by_pk", - "description": "delete single row from the table: \"auth.account_providers\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_cast", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_account_providers", + "kind": "INPUT_OBJECT", + "name": "jsonb_cast_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_account_roles", - "description": "delete data from the table: \"auth.account_roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_contained_in", + "description": "is the column contained in the given json value", "type": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_account_roles_by_pk", - "description": "delete single row from the table: \"auth.account_roles\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_contains", + "description": "does the column contain the given json value at the top level", "type": { - "kind": "OBJECT", - "name": "auth_account_roles", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_accounts", - "description": "delete data from the table: \"auth.accounts\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_eq", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_accounts_by_pk", - "description": "delete single row from the table: \"auth.accounts\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_gt", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_accounts", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_migrations", - "description": "delete data from the table: \"auth.migrations\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_gte", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_migrations_by_pk", - "description": "delete single row from the table: \"auth.migrations\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_has_key", + "description": "does the string exist as a top-level key in the column", "type": { - "kind": "OBJECT", - "name": "auth_migrations", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_providers", - "description": "delete data from the table: \"auth.providers\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_has_keys_all", + "description": "do all of these strings exist as top-level keys in the column", "type": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_providers_by_pk", - "description": "delete single row from the table: \"auth.providers\"", - "args": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_has_keys_any", + "description": "do any of these strings exist as top-level keys in the column", "type": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_refresh_tokens", - "description": "delete data from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_in", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_refresh_tokens_by_pk", - "description": "delete single row from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_is_null", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_roles", - "description": "delete data from the table: \"auth.roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_lt", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_auth_roles_by_pk", - "description": "delete single row from the table: \"auth.roles\"", - "args": [ - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_lte", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_roles", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_branch_statuses", - "description": "delete data from the table: \"branch_statuses\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_neq", + "description": null, "type": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_branch_statuses_by_pk", - "description": "delete single row from the table: \"branch_statuses\"", - "args": [ - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_nin", + "description": null, "type": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_credentials", + "description": "columns and relationships of \"member_credentials\"", + "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": "delete_branches", - "description": "delete data from the table: \"branches\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "An object relationship", + "args": [], "type": { - "kind": "OBJECT", - "name": "branches_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_branches_by_pk", - "description": "delete single row from the table: \"branches\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_dashboards", - "description": "delete data from the table: \"dashboards\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_dashboards_by_pk", - "description": "delete single row from the table: \"dashboards\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_dataschemas", - "description": "delete data from the table: \"dataschemas\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member", + "description": "An object relationship", + "args": [], "type": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "members", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_dataschemas_by_pk", - "description": "delete single row from the table: \"dataschemas\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_datasources", - "description": "delete data from the table: \"datasources\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null + "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": "member_credentials_aggregate", + "description": "aggregated selection of \"member_credentials\"", + "fields": [ { - "name": "delete_datasources_by_pk", - "description": "delete single row from the table: \"datasources\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "aggregate", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "datasources", + "name": "member_credentials_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_events", - "description": "delete data from the table: \"events\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "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": "INPUT_OBJECT", - "name": "events_bool_exp", + "kind": "OBJECT", + "name": "member_credentials", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "events_mutation_response", - "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "delete_events_by_pk", - "description": "delete single row from the table: \"events\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_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": "member_credentials_select_column", + "ofType": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, "type": { - "kind": "OBJECT", - "name": "events", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_explorations", - "description": "delete data from the table: \"explorations\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "filter", + "description": null, "type": { - "kind": "OBJECT", - "name": "explorations_mutation_response", + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_explorations_by_pk", - "description": "delete single row from the table: \"explorations\"", + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_credentials_aggregate_fields", + "description": "aggregate fields of \"member_credentials\"", + "fields": [ + { + "name": "count", + "description": null, "args": [ { - "name": "id", + "name": "columns", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "member_credentials_select_column", + "ofType": null + } } }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_member_roles", - "description": "delete data from the table: \"member_roles\"", - "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": "member_roles_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_member_roles_by_pk", - "description": "delete single row from the table: \"member_roles\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "max", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "member_roles", + "name": "member_credentials_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_members", - "description": "delete data from the table: \"members\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "min", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "members_mutation_response", + "name": "member_credentials_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_aggregate_order_by", + "description": "order by aggregate values of table \"member_credentials\"", + "fields": null, + "inputFields": [ { - "name": "delete_members_by_pk", - "description": "delete single row from the table: \"members\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "count", + "description": null, "type": { - "kind": "OBJECT", - "name": "members", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_pinned_items", - "description": "delete data from the table: \"pinned_items\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "max", + "description": null, "type": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", + "kind": "INPUT_OBJECT", + "name": "member_credentials_max_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_pinned_items_by_pk", - "description": "delete single row from the table: \"pinned_items\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "min", + "description": null, "type": { - "kind": "OBJECT", - "name": "pinned_items", + "kind": "INPUT_OBJECT", + "name": "member_credentials_min_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"member_credentials\"", + "fields": null, + "inputFields": [ { - "name": "delete_reports", - "description": "delete data from the table: \"reports\"", - "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": "reports_bool_exp", + "name": "member_credentials_insert_input", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_reports_by_pk", - "description": "delete single row from the table: \"reports\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "OBJECT", - "name": "reports", + "kind": "INPUT_OBJECT", + "name": "member_credentials_on_conflict", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "description": "Boolean expression to filter rows from the table \"member_credentials\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "delete_request_event_logs", - "description": "delete data from the table: \"request_event_logs\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_and", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_request_event_logs_by_pk", - "description": "delete single row from the table: \"request_event_logs\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_event_logs", + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_request_logs", - "description": "delete data from the table: \"request_logs\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_request_logs_by_pk", - "description": "delete single row from the table: \"request_logs\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_logs", + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_sql_credentials", - "description": "delete data from the table: \"sql_credentials\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_sql_credentials_by_pk", - "description": "delete single row from the table: \"sql_credentials\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "sql_credentials", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_team_roles", - "description": "delete data from the table: \"team_roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "team_roles_mutation_response", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_team_roles_by_pk", - "description": "delete single row from the table: \"team_roles\"", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member", + "description": null, "type": { - "kind": "OBJECT", - "name": "team_roles", + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_teams", - "description": "delete data from the table: \"teams\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "teams_mutation_response", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_teams_by_pk", - "description": "delete single row from the table: \"teams\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "teams", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "member_credentials_constraint", + "description": "unique or primary key constraints on table \"member_credentials\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "member_credentials_credential_id_member_id_key", + "description": "unique or primary key constraint on columns \"credential_id\", \"member_id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_users", - "description": "delete data from the table: \"users\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null - }, + "name": "member_credentials_datasource_id_member_id_key", + "description": "unique or primary key constraint on columns \"member_id\", \"datasource_id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_users_by_pk", - "description": "delete single row from the table: \"users\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_credentials_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_insert_input", + "description": "input type for inserting data into table \"member_credentials\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "users", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_versions", - "description": "delete data from the table: \"versions\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": null, "type": { - "kind": "OBJECT", - "name": "versions_mutation_response", + "kind": "INPUT_OBJECT", + "name": "credentials_obj_rel_insert_input", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "delete_versions_by_pk", - "description": "delete single row from the table: \"versions\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "versions", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "export_data_models", + "name": "datasource_id", "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], "type": { - "kind": "OBJECT", - "name": "ExportDataModelsOutput", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "gen_dataschemas", + "name": "id", "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "format", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "overwrite", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tables", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SourceTable", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], "type": { - "kind": "OBJECT", - "name": "GenSourceSchemaOutput", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "gen_sql", + "name": "member", "description": null, - "args": [ - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], "type": { - "kind": "OBJECT", - "name": "GenSQLOutput", + "kind": "INPUT_OBJECT", + "name": "members_obj_rel_insert_input", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_access_lists", - "description": "insert data into the table: \"access_lists\"", - "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": "access_lists_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_access_lists_one", - "description": "insert a single row into the table: \"access_lists\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "access_lists", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_credentials_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "insert_alerts", - "description": "insert data into the table: \"alerts\"", - "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": "alerts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "alerts_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_alerts_one", - "description": "insert a single row into the table: \"alerts\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "alerts", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_account_providers", - "description": "insert data into the table: \"auth.account_providers\"", - "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": "auth_account_providers_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_account_providers_one", - "description": "insert a single row into the table: \"auth.account_providers\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_account_providers", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_account_roles", - "description": "insert data into the table: \"auth.account_roles\"", - "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": "auth_account_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_account_roles_one", - "description": "insert a single row into the table: \"auth.account_roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_account_roles", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_max_order_by", + "description": "order by max() on columns of table \"member_credentials\"", + "fields": null, + "inputFields": [ { - "name": "insert_auth_accounts", - "description": "insert data into the table: \"auth.accounts\"", - "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": "auth_accounts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_auth_accounts_one", - "description": "insert a single row into the table: \"auth.accounts\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_accounts", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_auth_migrations", - "description": "insert data into the table: \"auth.migrations\"", - "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": "auth_migrations_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_auth_migrations_one", - "description": "insert a single row into the table: \"auth.migrations\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_migrations", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_auth_providers", - "description": "insert data into the table: \"auth.providers\"", - "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": "auth_providers_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_auth_providers_one", - "description": "insert a single row into the table: \"auth.providers\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_providers", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_credentials_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": "insert_auth_refresh_tokens", - "description": "insert data into the table: \"auth.refresh_tokens\"", - "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": "auth_refresh_tokens_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_refresh_tokens_one", - "description": "insert a single row into the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_roles", - "description": "insert data into the table: \"auth.roles\"", - "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": "auth_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_roles_one", - "description": "insert a single row into the table: \"auth.roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_roles", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_branch_statuses", - "description": "insert data into the table: \"branch_statuses\"", - "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": "branch_statuses_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "insert_branch_statuses_one", - "description": "insert a single row into the table: \"branch_statuses\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_min_order_by", + "description": "order by min() on columns of table \"member_credentials\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "branch_statuses", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_branches", - "description": "insert data into the table: \"branches\"", - "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": "branches_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "branches_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_branches_one", - "description": "insert a single row into the table: \"branches\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "branches", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_dashboards", - "description": "insert data into the table: \"dashboards\"", - "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": "dashboards_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_dashboards_one", - "description": "insert a single row into the table: \"dashboards\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "dashboards", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_dataschemas", - "description": "insert data into the table: \"dataschemas\"", - "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": "dataschemas_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_credentials_mutation_response", + "description": "response of any mutation on the table \"member_credentials\"", + "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_dataschemas_one", - "description": "insert a single row into the table: \"dataschemas\"", - "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": "dataschemas_insert_input", + "kind": "OBJECT", + "name": "member_credentials", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_on_conflict", + "description": "on_conflict condition type for table \"member_credentials\"", + "fields": null, + "inputFields": [ { - "name": "insert_datasources", - "description": "insert data into the table: \"datasources\"", - "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": "datasources_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "constraint", + "description": null, "type": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "member_credentials_constraint", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_datasources_one", - "description": "insert a single row into the table: \"datasources\"", - "args": [ - { - "name": "object", - "description": "the row 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": "INPUT_OBJECT", - "name": "datasources_insert_input", + "kind": "ENUM", + "name": "member_credentials_update_column", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null + } } - ], + }, + "defaultValue": "[]" + }, + { + "name": "where", + "description": null, "type": { - "kind": "OBJECT", - "name": "datasources", + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "description": "Ordering options when selecting data from \"member_credentials\".", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { - "name": "insert_events", - "description": "insert data into the table: \"events\"", - "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": "events_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential", + "description": null, "type": { - "kind": "OBJECT", - "name": "events_mutation_response", + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_events_one", - "description": "insert a single row into the table: \"events\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "events", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_explorations", - "description": "insert data into the table: \"explorations\"", - "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": "explorations_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "explorations_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_explorations_one", - "description": "insert a single row into the table: \"explorations\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "explorations", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_member_roles", - "description": "insert data into the table: \"member_roles\"", - "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": "member_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member", + "description": null, "type": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", + "kind": "INPUT_OBJECT", + "name": "members_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_member_roles_one", - "description": "insert a single row into the table: \"member_roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "member_roles", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_members", - "description": "insert data into the table: \"members\"", - "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": "members_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "members_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_pk_columns_input", + "description": "primary key columns input for table: member_credentials", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "member_credentials_select_column", + "description": "select columns of table \"member_credentials\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_members_one", - "description": "insert a single row into the table: \"members\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members", - "ofType": null - }, + "name": "credential_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_pinned_items", - "description": "insert data into the table: \"pinned_items\"", - "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": "pinned_items_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null - }, + "name": "datasource_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_pinned_items_one", - "description": "insert a single row into the table: \"pinned_items\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_set_input", + "description": "input type for updating data in table \"member_credentials\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "pinned_items", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_reports", - "description": "insert data into the table: \"reports\"", - "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": "reports_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_reports_one", - "description": "insert a single row into the table: \"reports\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "reports", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_request_event_logs", - "description": "insert data into the table: \"request_event_logs\"", - "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": "request_event_logs_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_request_event_logs_one", - "description": "insert a single row into the table: \"request_event_logs\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_event_logs", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_request_logs", - "description": "insert data into the table: \"request_logs\"", - "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": "request_logs_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "ofType": null - }, - "defaultValue": null + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_stream_cursor_input", + "description": "Streaming cursor of the table \"member_credentials\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_stream_cursor_value_input", + "ofType": null } - ], + }, + "defaultValue": null + }, + { + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null }, { - "name": "insert_request_logs_one", - "description": "insert a single row into the table: \"request_logs\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "request_logs", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_sql_credentials", - "description": "insert data into the table: \"sql_credentials\"", - "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": "sql_credentials_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "datasource_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "insert_sql_credentials_one", - "description": "insert a single row into the table: \"sql_credentials\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "sql_credentials", + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "member_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "member_credentials_update_column", + "description": "update columns of table \"member_credentials\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_team_roles", - "description": "insert data into the table: \"team_roles\"", - "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": "team_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_on_conflict", - "ofType": null - }, - "defaultValue": null + "name": "credential_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_credentials_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": "member_credentials_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null } - ], + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_roles", + "description": "columns and relationships of \"member_roles\"", + "fields": [ + { + "name": "access_list", + "description": "An object relationship", + "args": [], "type": { "kind": "OBJECT", - "name": "team_roles_mutation_response", + "name": "access_lists", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_team_roles_one", - "description": "insert a single row into the table: \"team_roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "access_list_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "team_roles", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_teams", - "description": "insert data into the table: \"teams\"", - "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": "teams_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "teams_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_teams_one", - "description": "insert a single row into the table: \"teams\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_users", - "description": "insert data into the table: \"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": "users_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "member", + "description": "An object relationship", + "args": [], "type": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "members", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_users_one", - "description": "insert a single row into the table: \"users\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_on_conflict", - "ofType": null - }, - "defaultValue": null + "name": "member_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamRoleByTeamRole", + "description": "An object relationship", + "args": [], "type": { - "kind": "OBJECT", - "name": "users", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team_roles", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_versions", - "description": "insert data into the table: \"versions\"", - "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": "versions_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", - "ofType": null - }, - "defaultValue": null + "name": "team_role", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "team_roles_enum", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_roles_aggregate", + "description": "aggregated selection of \"member_roles\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "versions_mutation_response", + "name": "member_roles_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_versions_one", - "description": "insert a single row into the table: \"versions\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "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": "INPUT_OBJECT", - "name": "versions_insert_input", + "kind": "OBJECT", + "name": "member_roles", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_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": "member_roles_select_column", "ofType": null - }, - "defaultValue": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, "type": { - "kind": "OBJECT", - "name": "versions", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "invite_team_member", + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_roles_aggregate_fields", + "description": "aggregate fields of \"member_roles\"", + "fields": [ + { + "name": "count", "description": null, "args": [ { - "name": "email", + "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": "member_roles_select_column", + "ofType": null + } } }, "defaultValue": null }, { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teamId", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Boolean", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "InviteTeamMemberOutput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "run_query", + "name": "max", "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "OBJECT", - "name": "RunSourceQueryOutput", + "name": "member_roles_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "send_test_alert", + "name": "min", "description": null, - "args": [ - { - "name": "deliveryConfig", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "json", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "deliveryType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "explorationId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "OBJECT", - "name": "SendTestAlertOutput", + "name": "member_roles_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_aggregate_order_by", + "description": "order by aggregate values of table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { - "name": "update_access_lists", - "description": "update data of the table: \"access_lists\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "max", + "description": null, "type": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", + "kind": "INPUT_OBJECT", + "name": "member_roles_max_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_access_lists_by_pk", - "description": "update single row of the table: \"access_lists\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "min", + "description": null, "type": { - "kind": "OBJECT", - "name": "access_lists", + "kind": "INPUT_OBJECT", + "name": "member_roles_min_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"member_roles\"", + "fields": null, + "inputFields": [ { - "name": "update_access_lists_many", - "description": "update multiples rows of table: \"access_lists\"", - "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": "access_lists_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "data", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_alerts", - "description": "update data of the table: \"alerts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "member_roles_insert_input", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_alerts_by_pk", - "description": "update single row of the table: \"alerts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "OBJECT", - "name": "alerts", + "kind": "INPUT_OBJECT", + "name": "member_roles_on_conflict", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "description": "Boolean expression to filter rows from the table \"member_roles\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "update_alerts_many", - "description": "update multiples rows of table: \"alerts\"", - "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": "alerts_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "_and", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_account_providers", - "description": "update data of the table: \"auth.account_providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_account_providers_by_pk", - "description": "update single row of the table: \"auth.account_providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_set_input", + "name": "member_roles_bool_exp", "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "access_list", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_account_providers", + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_account_providers_many", - "description": "update multiples rows of table: \"auth.account_providers\"", - "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_account_providers_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "access_list_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_account_roles", - "description": "update data of the table: \"auth.account_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_account_roles_by_pk", - "description": "update single row of the table: \"auth.account_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_account_roles", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_account_roles_many", - "description": "update multiples rows of table: \"auth.account_roles\"", - "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_account_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "member", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_accounts", - "description": "update data of the table: \"auth.accounts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_accounts_by_pk", - "description": "update single row of the table: \"auth.accounts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "teamRoleByTeamRole", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_accounts", + "kind": "INPUT_OBJECT", + "name": "team_roles_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_accounts_many", - "description": "update multiples rows of table: \"auth.accounts\"", - "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_accounts_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "team_role", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "team_roles_enum_comparison_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_migrations", - "description": "update data of the table: \"auth.migrations\"", - "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "member_roles_constraint", + "description": "unique or primary key constraints on table \"member_roles\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "member_roles_member_id_team_role_key", + "description": "unique or primary key constraint on columns \"team_role\", \"member_id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "update_auth_migrations_by_pk", - "description": "update single row of the table: \"auth.migrations\"", - "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_roles_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_insert_input", + "description": "input type for inserting data into table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "access_list", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_migrations", + "kind": "INPUT_OBJECT", + "name": "access_lists_obj_rel_insert_input", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_migrations_many", - "description": "update multiples rows of table: \"auth.migrations\"", - "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_migrations_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "access_list_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_providers", - "description": "update data of the table: \"auth.providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_providers_by_pk", - "description": "update single row of the table: \"auth.providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_providers", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_providers_many", - "description": "update multiples rows of table: \"auth.providers\"", - "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_providers_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "member", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "members_obj_rel_insert_input", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_refresh_tokens", - "description": "update data of the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_refresh_tokens_by_pk", - "description": "update single row of the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "teamRoleByTeamRole", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", + "kind": "INPUT_OBJECT", + "name": "team_roles_obj_rel_insert_input", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_refresh_tokens_many", - "description": "update multiples rows of table: \"auth.refresh_tokens\"", - "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_refresh_tokens_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "team_role", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "ofType": null - } + "kind": "ENUM", + "name": "team_roles_enum", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_auth_roles", - "description": "update data of the table: \"auth.roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_roles_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "update_auth_roles_by_pk", - "description": "update single row of the table: \"auth.roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "access_list_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "auth_roles", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_auth_roles_many", - "description": "update multiples rows of table: \"auth.roles\"", - "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_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_branch_statuses", - "description": "update data of the table: \"branch_statuses\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_branch_statuses_by_pk", - "description": "update single row of the table: \"branch_statuses\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "branch_statuses", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_branch_statuses_many", - "description": "update multiples rows of table: \"branch_statuses\"", - "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": "branch_statuses_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_max_order_by", + "description": "order by max() on columns of table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "access_list_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { - "name": "update_branches", - "description": "update data of the table: \"branches\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "branches_mutation_response", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "member_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_roles_min_fields", + "description": "aggregate min on columns", + "fields": [ + { + "name": "access_list_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_branches_by_pk", - "description": "update single row of the table: \"branches\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "branches", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_branches_many", - "description": "update multiples rows of table: \"branches\"", - "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": "branches_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_mutation_response", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_dashboards", - "description": "update data of the table: \"dashboards\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_dashboards_by_pk", - "description": "update single row of the table: \"dashboards\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "dashboards", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_min_order_by", + "description": "order by min() on columns of table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "access_list_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null }, { - "name": "update_dashboards_many", - "description": "update multiples rows of table: \"dashboards\"", - "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": "dashboards_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "LIST", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "member_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "member_roles_mutation_response", + "description": "response of any mutation on the table \"member_roles\"", + "fields": [ + { + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -40265,1403 +38198,919 @@ "deprecationReason": null }, { - "name": "update_dataschemas", - "description": "update data of the table: \"dataschemas\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "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": "dataschemas_bool_exp", + "kind": "OBJECT", + "name": "member_roles", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_on_conflict", + "description": "on_conflict condition type for table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "member_roles_constraint", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "update_dataschemas_by_pk", - "description": "update single row of the table: \"dataschemas\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "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": "INPUT_OBJECT", - "name": "dataschemas_pk_columns_input", + "kind": "ENUM", + "name": "member_roles_update_column", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": "[]" }, { - "name": "update_dataschemas_many", - "description": "update multiples rows of table: \"dataschemas\"", - "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": "dataschemas_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "where", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_order_by", + "description": "Ordering options when selecting data from \"member_roles\".", + "fields": null, + "inputFields": [ { - "name": "update_datasources", - "description": "update data of the table: \"datasources\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "access_list", + "description": null, "type": { - "kind": "OBJECT", - "name": "datasources_mutation_response", + "kind": "INPUT_OBJECT", + "name": "access_lists_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_datasources_by_pk", - "description": "update single row of the table: \"datasources\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "access_list_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "datasources", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_datasources_many", - "description": "update multiples rows of table: \"datasources\"", - "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": "datasources_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_events", - "description": "update data of the table: \"events\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "events_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_events_by_pk", - "description": "update single row of the table: \"events\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member", + "description": null, "type": { - "kind": "OBJECT", - "name": "events", + "kind": "INPUT_OBJECT", + "name": "members_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_events_many", - "description": "update multiples rows of table: \"events\"", - "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": "events_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_mutation_response", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_explorations", - "description": "update data of the table: \"explorations\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "teamRoleByTeamRole", + "description": null, "type": { - "kind": "OBJECT", - "name": "explorations_mutation_response", + "kind": "INPUT_OBJECT", + "name": "team_roles_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_explorations_by_pk", - "description": "update single row of the table: \"explorations\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team_role", + "description": null, "type": { - "kind": "OBJECT", - "name": "explorations", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_explorations_many", - "description": "update multiples rows of table: \"explorations\"", - "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": "explorations_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "LIST", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_pk_columns_input", + "description": "primary key columns input for table: member_roles", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "explorations_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "member_roles_select_column", + "description": "select columns of table \"member_roles\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "access_list_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "update_member_roles", - "description": "update data of the table: \"member_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "update_member_roles_by_pk", - "description": "update single row of the table: \"member_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_role", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_set_input", + "description": "input type for updating data in table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "access_list_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "member_roles", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_member_roles_many", - "description": "update multiples rows of table: \"member_roles\"", - "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": "member_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_members", - "description": "update data of the table: \"members\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "members_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_members_by_pk", - "description": "update single row of the table: \"members\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "members", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_members_many", - "description": "update multiples rows of table: \"members\"", - "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": "members_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "team_role", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_mutation_response", - "ofType": null - } + "kind": "ENUM", + "name": "team_roles_enum", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_pinned_items", - "description": "update data of the table: \"pinned_items\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "ofType": null - }, - "defaultValue": null - }, + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_stream_cursor_input", + "description": "Streaming cursor of the table \"member_roles\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "access_list_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "member_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_role", + "description": null, + "type": { + "kind": "ENUM", + "name": "team_roles_enum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "member_roles_update_column", + "description": "update columns of table \"member_roles\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "access_list_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": "member_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_role", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "member_roles_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": "member_roles_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "members", + "description": "columns and relationships of \"members\"", + "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": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_credentials", + "description": "An array relationship", + "args": [ { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "member_credentials_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "order_by", + "description": "sort the rows by one or more columns", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "ofType": null + } + } }, "defaultValue": null }, { - "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": "pinned_items_set_input", + "name": "member_credentials_bool_exp", "ofType": null }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "kind": "OBJECT", + "name": "member_credentials", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_pinned_items_by_pk", - "description": "update single row of the table: \"pinned_items\"", + "name": "member_credentials_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "member_credentials_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "order_by", + "description": "sort the rows by one or more columns", "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "ofType": null + } + } }, "defaultValue": null }, { - "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": "pinned_items_set_input", + "name": "member_credentials_bool_exp", "ofType": null }, "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_credentials_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_pinned_items_many", - "description": "update multiples rows of table: \"pinned_items\"", + "name": "member_roles", + "description": "An array relationship", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_updates", - "ofType": null - } + "kind": "ENUM", + "name": "member_roles_select_column", + "ofType": null } } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_reports", - "description": "update data of the table: \"reports\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "ofType": null - }, - "defaultValue": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "order_by", + "description": "sort the rows by one or more columns", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_order_by", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "where", + "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", + "name": "member_roles_bool_exp", "ofType": null }, "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "OBJECT", + "name": "member_roles", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_reports_by_pk", - "description": "update single row of the table: \"reports\"", + "name": "member_roles_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "member_roles_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "order_by", + "description": "sort the rows by one or more columns", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_order_by", + "ofType": null + } + } }, "defaultValue": null }, { - "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": "reports_set_input", + "name": "member_roles_bool_exp", "ofType": null }, "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_roles_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_reports_many", - "description": "update multiples rows of table: \"reports\"", - "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": "reports_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "team", + "description": "An object relationship", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "reports_mutation_response", + "name": "teams", "ofType": null } }, @@ -41669,232 +39118,47 @@ "deprecationReason": null }, { - "name": "update_request_event_logs", - "description": "update data of the table: \"request_event_logs\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_request_event_logs_by_pk", - "description": "update single row of the table: \"request_event_logs\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_request_event_logs_many", - "description": "update multiples rows of table: \"request_event_logs\"", - "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": "request_event_logs_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "user", + "description": "An object relationship", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "request_event_logs_mutation_response", + "name": "users", "ofType": null } }, @@ -41902,225 +39166,202 @@ "deprecationReason": null }, { - "name": "update_request_logs", - "description": "update data of the table: \"request_logs\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null + "name": "user_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "members_aggregate", + "description": "aggregated selection of \"members\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "request_logs_mutation_response", + "name": "members_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_request_logs_by_pk", - "description": "update single row of the table: \"request_logs\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "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": "INPUT_OBJECT", - "name": "request_logs_pk_columns_input", + "kind": "OBJECT", + "name": "members", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "update_request_logs_many", - "description": "update multiples rows of table: \"request_logs\"", - "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": "request_logs_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "members_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "members_select_column", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_sql_credentials", - "description": "update data of the table: \"sql_credentials\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "distinct", + "description": null, "type": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_sql_credentials_by_pk", - "description": "update single row of the table: \"sql_credentials\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "filter", + "description": null, "type": { - "kind": "OBJECT", - "name": "sql_credentials", + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_sql_credentials_many", - "description": "update multiples rows of table: \"sql_credentials\"", + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "members_aggregate_fields", + "description": "aggregate fields of \"members\"", + "fields": [ + { + "name": "count", + "description": null, "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "columns", + "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": "INPUT_OBJECT", - "name": "sql_credentials_updates", - "ofType": null - } + "kind": "ENUM", + "name": "members_select_column", + "ofType": null } } }, "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -42128,582 +39369,402 @@ "deprecationReason": null }, { - "name": "update_team_roles", - "description": "update data of the table: \"team_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "max", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "team_roles_mutation_response", + "name": "members_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_team_roles_by_pk", - "description": "update single row of the table: \"team_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "min", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "team_roles", + "name": "members_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_aggregate_order_by", + "description": "order by aggregate values of table \"members\"", + "fields": null, + "inputFields": [ { - "name": "update_team_roles_many", - "description": "update multiples rows of table: \"team_roles\"", - "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_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "count", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles_mutation_response", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_teams", - "description": "update data of the table: \"teams\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "max", + "description": null, "type": { - "kind": "OBJECT", - "name": "teams_mutation_response", + "kind": "INPUT_OBJECT", + "name": "members_max_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_teams_by_pk", - "description": "update single row of the table: \"teams\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "members_min_order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"members\"", + "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": "teams_pk_columns_input", + "name": "members_insert_input", "ofType": null } - }, - "defaultValue": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "OBJECT", - "name": "teams", + "kind": "INPUT_OBJECT", + "name": "members_on_conflict", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "description": "Boolean expression to filter rows from the table \"members\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "update_teams_many", - "description": "update multiples rows of table: \"teams\"", - "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": "teams_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "_and", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "teams_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_users", - "description": "update data of the table: \"users\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "users_mutation_response", + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_users_by_pk", - "description": "update single row of the table: \"users\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "users_set_input", + "name": "members_bool_exp", "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "users", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_users_many", - "description": "update multiples rows of table: \"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": "users_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_versions", - "description": "update data of the table: \"versions\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_credentials", + "description": null, "type": { - "kind": "OBJECT", - "name": "versions_mutation_response", + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_versions_by_pk", - "description": "update single row of the table: \"versions\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "member_credentials_aggregate", + "description": null, "type": { - "kind": "OBJECT", - "name": "versions", + "kind": "INPUT_OBJECT", + "name": "member_credentials_aggregate_bool_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "update_versions_many", - "description": "update multiples rows of table: \"versions\"", - "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": "versions_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "member_roles", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_mutation_response", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "member_roles_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "SCALAR", - "name": "numeric", - "description": null, + "kind": "ENUM", + "name": "members_constraint", + "description": "unique or primary key constraints on table \"members\"", "fields": null, "inputFields": null, "interfaces": null, - "enumValues": null, + "enumValues": [ + { + "name": "members_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members_user_id_team_id_key", + "description": "unique or primary key constraint on columns \"user_id\", \"team_id\"", + "isDeprecated": false, + "deprecationReason": 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": "members_insert_input", + "description": "input type for inserting data into table \"members\"", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "_gt", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "_gte", + "name": "member_credentials", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "member_credentials_arr_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "_in", + "name": "member_roles", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "member_roles_arr_rel_insert_input", + "ofType": null }, "defaultValue": null }, { - "name": "_is_null", + "name": "team", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "teams_obj_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "_lt", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "_lte", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "_neq", + "name": "user", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "_nin", + "name": "user_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null } @@ -42712,299 +39773,199 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "order_by", - "description": "column ordering options", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "asc", - "description": "in ascending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc_nulls_first", - "description": "in ascending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc_nulls_last", - "description": "in ascending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "in descending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc_nulls_first", - "description": "in descending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc_nulls_last", - "description": "in descending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "pinned_items", - "description": "columns and relationships of \"pinned_items\"", + "name": "members_max_fields", + "description": "aggregate max on columns", "fields": [ { "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 }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboard", - "description": "An object relationship", + "name": "id", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboard_id", + "name": "team_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration", - "description": "An object relationship", + "name": "updated_at", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration_id", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_max_order_by", + "description": "order by max() on columns of table \"members\"", + "fields": null, + "inputFields": [ { - "name": "id", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "spec", + "name": "team_id", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "spec_config", + "name": "updated_at", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "members_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": "updated_at", + "name": "id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "team_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "description": "aggregated selection of \"pinned_items\"", - "fields": [ + }, { - "name": "aggregate", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "pinned_items_aggregate_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "user_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": "pinned_items", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -43017,80 +39978,57 @@ }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp", - "description": null, + "name": "members_min_order_by", + "description": "order by min() on columns of table \"members\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp_count", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", + "name": "team_id", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "user_id", "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 } @@ -43101,42 +40039,13 @@ }, { "kind": "OBJECT", - "name": "pinned_items_aggregate_fields", - "description": "aggregate fields of \"pinned_items\"", + "name": "members_mutation_response", + "description": "response of any mutation on the table \"members\"", "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": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -43150,25 +40059,25 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "pinned_items_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "pinned_items_min_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "members", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -43181,36 +40090,30 @@ }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_order_by", - "description": "order by aggregate values of table \"pinned_items\"", + "name": "members_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"members\"", "fields": null, "inputFields": [ { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_max_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_insert_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "min", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_min_order_by", + "name": "members_on_conflict", "ofType": null }, "defaultValue": null @@ -43222,43 +40125,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "members_on_conflict", + "description": "on_conflict condition type for table \"members\"", "fields": null, "inputFields": [ { - "name": "spec", + "name": "constraint", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "members_constraint", + "ofType": null + } }, "defaultValue": null }, { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "data", + "name": "update_columns", "description": null, "type": { "kind": "NON_NULL", @@ -43270,21 +40156,21 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", + "kind": "ENUM", + "name": "members_update_column", "ofType": null } } } }, - "defaultValue": null + "defaultValue": "[]" }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "where", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", + "name": "members_bool_exp", "ofType": null }, "defaultValue": null @@ -43296,163 +40182,122 @@ }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "description": "Boolean expression to filter rows from the table \"pinned_items\". All fields are combined with a logical 'AND'.", + "name": "members_order_by", + "description": "Ordering options when selecting data from \"members\".", "fields": null, "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, { "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "dashboard_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "exploration", + "name": "member_credentials_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "member_credentials_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "exploration_id", + "name": "member_roles_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "member_roles_aggregate_order_by", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "teams_order_by", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "spec", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "spec_config", + "name": "user", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "users_order_by", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_pk_columns_input", + "description": "primary key columns input for table: members", + "fields": null, + "inputFields": [ { - "name": "user_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "defaultValue": null } @@ -43463,121 +40308,97 @@ }, { "kind": "ENUM", - "name": "pinned_items_constraint", - "description": "unique or primary key constraints on table \"pinned_items\"", + "name": "members_select_column", + "description": "select columns of table \"members\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "pinned_items_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_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": "spec", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec_config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": 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 } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_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": "members_set_input", + "description": "input type for updating data in table \"members\"", "fields": null, "inputFields": [ { - "name": "spec", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "spec_config", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "uuid", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_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": "spec", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "spec_config", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -43589,56 +40410,51 @@ }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", - "description": "input type for inserting data into table \"pinned_items\"", + "name": "members_stream_cursor_input", + "description": "Streaming cursor of the table \"members\"", "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null }, { - "name": "exploration", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "members_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "exploration_id", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -43654,31 +40470,11 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -43709,173 +40505,73 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "pinned_items_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "ENUM", + "name": "members_update_column", + "description": "update columns of table \"members\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "team_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "pinned_items_max_order_by", - "description": "order by max() on columns of table \"pinned_items\"", + "name": "members_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "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": "members_set_input", "ofType": null }, "defaultValue": null }, { - "name": "user_id", - "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": "members_bool_exp", + "ofType": null + } }, "defaultValue": null } @@ -43886,1102 +40582,1888 @@ }, { "kind": "OBJECT", - "name": "pinned_items_min_fields", - "description": "aggregate min on columns", + "name": "mutation_root", + "description": "mutation root", "fields": [ { - "name": "created_at", + "name": "check_connection", "description": null, - "args": [], + "args": [ + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "CheckConnectionOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboard_id", + "name": "create_events", "description": null, - "args": [], + "args": [ + { + "name": "objects", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_create_input", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration_id", + "name": "create_team", "description": null, - "args": [], + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "CreateTeamOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "delete_access_lists", + "description": "delete data from the table: \"access_lists\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "access_lists_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], + "name": "delete_access_lists_by_pk", + "description": "delete single row from the table: \"access_lists\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "access_lists", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], + "name": "delete_access_types", + "description": "delete data from the table: \"access_types\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "access_types_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, - "args": [], + "name": "delete_access_types_by_pk", + "description": "delete single row from the table: \"access_types\"", + "args": [ + { + "name": "access_type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "access_types", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_min_order_by", - "description": "order by min() on columns of table \"pinned_items\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", - "description": null, + "name": "delete_alerts", + "description": "delete data from the table: \"alerts\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "alerts_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dashboard_id", - "description": null, + "name": "delete_alerts_by_pk", + "description": "delete single row from the table: \"alerts\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "alerts", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration_id", - "description": null, + "name": "delete_auth_account_providers", + "description": "delete data from the table: \"auth.account_providers\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_account_providers_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "delete_auth_account_providers_by_pk", + "description": "delete single row from the table: \"auth.account_providers\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_account_providers", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "delete_auth_account_roles", + "description": "delete data from the table: \"auth.account_roles\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_account_roles_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "delete_auth_account_roles_by_pk", + "description": "delete single row from the table: \"auth.account_roles\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_account_roles", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "delete_auth_accounts", + "description": "delete data from the table: \"auth.accounts\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_accounts_mutation_response", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "description": "response of any mutation on the table \"pinned_items\"", - "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": { + "name": "delete_auth_accounts_by_pk", + "description": "delete single row from the table: \"auth.accounts\"", + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "pinned_items", + "kind": "SCALAR", + "name": "uuid", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "auth_accounts", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "description": "on_conflict condition type for table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_constraint", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "delete_auth_migrations", + "description": "delete data from the table: \"auth.migrations\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "pinned_items_update_column", + "kind": "INPUT_OBJECT", + "name": "auth_migrations_bool_exp", "ofType": null } - } + }, + "defaultValue": null } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "kind": "OBJECT", + "name": "auth_migrations_mutation_response", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "description": "Ordering options when selecting data from \"pinned_items\".", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "created_at", - "description": null, + "name": "delete_auth_migrations_by_pk", + "description": "delete single row from the table: \"auth.migrations\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_migrations", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dashboard", - "description": null, + "name": "delete_auth_options", + "description": "delete data from the table: \"auth_options\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_options_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", + "kind": "OBJECT", + "name": "auth_options_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dashboard_id", - "description": null, + "name": "delete_auth_options_by_pk", + "description": "delete single row from the table: \"auth_options\"", + "args": [ + { + "name": "auth", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_options", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration", - "description": null, + "name": "delete_auth_providers", + "description": "delete data from the table: \"auth.providers\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "kind": "OBJECT", + "name": "auth_providers_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration_id", - "description": null, + "name": "delete_auth_providers_by_pk", + "description": "delete single row from the table: \"auth.providers\"", + "args": [ + { + "name": "provider", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_providers", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "delete_auth_refresh_tokens", + "description": "delete data from the table: \"auth.refresh_tokens\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_refresh_tokens_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "delete_auth_refresh_tokens_by_pk", + "description": "delete single row from the table: \"auth.refresh_tokens\"", + "args": [ + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_refresh_tokens", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec", - "description": null, + "name": "delete_auth_roles", + "description": "delete data from the table: \"auth.roles\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_roles_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec_config", - "description": null, + "name": "delete_auth_roles_by_pk", + "description": "delete single row from the table: \"auth.roles\"", + "args": [ + { + "name": "role", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "auth_roles", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "delete_branch_statuses", + "description": "delete data from the table: \"branch_statuses\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "branch_statuses_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_pk_columns_input", - "description": "primary key columns input for table: pinned_items", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "name": "delete_branch_statuses_by_pk", + "description": "delete single row from the table: \"branch_statuses\"", + "args": [ + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "spec", - "description": null, + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "branch_statuses", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec_config", - "description": null, + "name": "delete_branches", + "description": "delete data from the table: \"branches\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "branches_mutation_response", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "pinned_items_select_column", - "description": "select columns of table \"pinned_items\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboard_id", - "description": "column name", + "name": "delete_branches_by_pk", + "description": "delete single row from the table: \"branches\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration_id", - "description": "column name", + "name": "delete_credentials", + "description": "delete data from the table: \"credentials\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "credentials_mutation_response", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "delete_credentials_by_pk", + "description": "delete single row from the table: \"credentials\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "column name", + "name": "delete_dashboards", + "description": "delete data from the table: \"dashboards\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "dashboards_mutation_response", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "spec", - "description": "column name", + "name": "delete_dashboards_by_pk", + "description": "delete single row from the table: \"dashboards\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "dashboards", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "spec_config", - "description": "column name", + "name": "delete_dataschemas", + "description": "delete data from the table: \"dataschemas\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "dataschemas_mutation_response", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "delete_dataschemas_by_pk", + "description": "delete single row from the table: \"dataschemas\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "dataschemas", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_set_input", - "description": "input type for updating data in table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, + "name": "delete_datasources", + "description": "delete data from the table: \"datasources\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "datasources_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dashboard_id", - "description": null, + "name": "delete_datasources_by_pk", + "description": "delete single row from the table: \"datasources\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "datasources", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration_id", - "description": null, + "name": "delete_events", + "description": "delete data from the table: \"events\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "events_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "delete_events_by_pk", + "description": "delete single row from the table: \"events\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "events", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "delete_explorations", + "description": "delete data from the table: \"explorations\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "explorations_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec", - "description": null, + "name": "delete_explorations_by_pk", + "description": "delete single row from the table: \"explorations\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "explorations", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec_config", - "description": null, + "name": "delete_member_credentials", + "description": "delete data from the table: \"member_credentials\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "member_credentials_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "delete_member_credentials_by_pk", + "description": "delete single row from the table: \"member_credentials\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "member_credentials", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_stream_cursor_input", - "description": "Streaming cursor of the table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_stream_cursor_value_input", - "ofType": null + "name": "delete_member_roles", + "description": "delete data from the table: \"member_roles\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_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", + "kind": "OBJECT", + "name": "member_roles_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dashboard_id", - "description": null, + "name": "delete_member_roles_by_pk", + "description": "delete single row from the table: \"member_roles\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "member_roles", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration_id", - "description": null, + "name": "delete_members", + "description": "delete data from the table: \"members\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "members_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "delete_members_by_pk", + "description": "delete single row from the table: \"members\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "members", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "delete_pinned_items", + "description": "delete data from the table: \"pinned_items\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "pinned_items_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec", - "description": null, + "name": "delete_pinned_items_by_pk", + "description": "delete single row from the table: \"pinned_items\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "pinned_items", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "spec_config", - "description": null, + "name": "delete_reports", + "description": "delete data from the table: \"reports\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "reports_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "delete_reports_by_pk", + "description": "delete single row from the table: \"reports\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "reports", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "delete_request_event_logs", + "description": "delete data from the table: \"request_event_logs\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "request_event_logs_mutation_response", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "pinned_items_update_column", - "description": "update columns of table \"pinned_items\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboard_id", - "description": "column name", + "name": "delete_request_event_logs_by_pk", + "description": "delete single row from the table: \"request_event_logs\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "request_event_logs", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration_id", - "description": "column name", + "name": "delete_request_logs", + "description": "delete data from the table: \"request_logs\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "request_logs_mutation_response", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "delete_request_logs_by_pk", + "description": "delete single row from the table: \"request_logs\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "request_logs", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "column name", + "name": "delete_sql_credentials", + "description": "delete data from the table: \"sql_credentials\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "sql_credentials_mutation_response", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "spec", - "description": "column name", + "name": "delete_sql_credentials_by_pk", + "description": "delete single row from the table: \"sql_credentials\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "sql_credentials", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "spec_config", - "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": "pinned_items_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "delete_team_roles", + "description": "delete data from the table: \"team_roles\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", + "kind": "OBJECT", + "name": "team_roles_mutation_response", "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": "delete_team_roles_by_pk", + "description": "delete single row from the table: \"team_roles\"", + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", + "kind": "OBJECT", + "name": "team_roles", "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", + "name": "delete_teams", + "description": "delete data from the table: \"teams\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", + "kind": "OBJECT", + "name": "teams_mutation_response", "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": "delete_teams_by_pk", + "description": "delete single row from the table: \"teams\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", + "kind": "OBJECT", + "name": "teams", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "delete_users", + "description": "delete data from the table: \"users\"", + "args": [ + { + "name": "where", + "description": "filter the rows which have to be deleted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", + "kind": "OBJECT", + "name": "users_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "delete_users_by_pk", + "description": "delete single row from the table: \"users\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_set_input", + "kind": "OBJECT", + "name": "users", "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": "pinned_items_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "query_root", - "description": null, - "fields": [ - { - "name": "access_lists", - "description": "An array relationship", + "name": "delete_versions", + "description": "delete data from the table: \"versions\"", "args": [ { - "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": "access_lists_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "versions_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "versions_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_versions_by_pk", + "description": "delete single row from the table: \"versions\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "versions", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "export_data_models", + "description": null, + "args": [ { - "name": "where", - "description": "filter the rows returned", + "name": "branch_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "ExportDataModelsOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "access_lists_aggregate", - "description": "An aggregate relationship", + "name": "gen_dataschemas", + "description": null, "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "branch_id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "datasource_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "format", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "overwrite", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "tables", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SourceTable", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "GenSourceSchemaOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "access_lists_by_pk", - "description": "fetch data from the table: \"access_lists\" using primary key columns", + "name": "gen_sql", + "description": null, "args": [ { - "name": "id", + "name": "exploration_id", "description": null, "type": { "kind": "NON_NULL", @@ -44997,2839 +42479,2887 @@ ], "type": { "kind": "OBJECT", - "name": "access_lists", + "name": "GenSQLOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "alerts", - "description": "An array relationship", + "name": "insert_access_lists", + "description": "insert data into the table: \"access_lists\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "access_lists_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "access_lists_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_access_lists_one", + "description": "insert a single row into the table: \"access_lists\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "access_lists_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "access_lists_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "access_lists", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "alerts_aggregate", - "description": "An aggregate relationship", + "name": "insert_access_types", + "description": "insert data into the table: \"access_types\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "access_types_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "access_types_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "alerts_by_pk", - "description": "fetch data from the table: \"alerts\" using primary key columns", + "name": "insert_access_types_one", + "description": "insert a single row into the table: \"access_types\"", "args": [ { - "name": "id", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "access_types_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "alerts", + "name": "access_types", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_providers", - "description": "fetch data from the table: \"auth.account_providers\"", + "name": "insert_alerts", + "description": "insert data into the table: \"alerts\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "alerts_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "alerts_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_alerts_one", + "description": "insert a single row into the table: \"alerts\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "alerts_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "alerts_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "alerts", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_providers\"", + "name": "insert_auth_account_providers", + "description": "insert data into the table: \"auth.account_providers\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_account_providers_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_account_providers_one", + "description": "insert a single row into the table: \"auth.account_providers\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "auth_account_providers_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_account_providers", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_providers_by_pk", - "description": "fetch data from the table: \"auth.account_providers\" using primary key columns", + "name": "insert_auth_account_roles", + "description": "insert data into the table: \"auth.account_roles\"", "args": [ { - "name": "id", - "description": null, + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_insert_input", + "ofType": null + } + } } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_account_providers", + "name": "auth_account_roles_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_roles", - "description": "fetch data from the table: \"auth.account_roles\"", + "name": "insert_auth_account_roles_one", + "description": "insert a single row into the table: \"auth.account_roles\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_account_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_accounts", + "description": "insert data into the table: \"auth.accounts\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", + "name": "auth_accounts_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "auth_accounts_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_roles\"", + "name": "insert_auth_accounts_one", + "description": "insert a single row into the table: \"auth.accounts\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_accounts_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_accounts", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_migrations", + "description": "insert data into the table: \"auth.migrations\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", + "name": "auth_migrations_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_migrations_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_roles_by_pk", - "description": "fetch data from the table: \"auth.account_roles\" using primary key columns", + "name": "insert_auth_migrations_one", + "description": "insert a single row into the table: \"auth.migrations\"", "args": [ { - "name": "id", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "auth_migrations_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_account_roles", + "name": "auth_migrations", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_accounts", - "description": "fetch data from the table: \"auth.accounts\"", + "name": "insert_auth_options", + "description": "insert data into the table: \"auth_options\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_options_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_options_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_options_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_options_one", + "description": "insert a single row into the table: \"auth_options\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_options_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", + "name": "auth_options_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "auth_options", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_accounts_aggregate", - "description": "fetch aggregated fields from the table: \"auth.accounts\"", + "name": "insert_auth_providers", + "description": "insert data into the table: \"auth.providers\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_providers_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_providers_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_providers_one", + "description": "insert a single row into the table: \"auth.providers\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_providers_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", + "name": "auth_providers_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_providers", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_accounts_by_pk", - "description": "fetch data from the table: \"auth.accounts\" using primary key columns", + "name": "insert_auth_refresh_tokens", + "description": "insert data into the table: \"auth.refresh_tokens\"", "args": [ { - "name": "id", - "description": null, + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_insert_input", + "ofType": null + } + } } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_accounts", + "name": "auth_refresh_tokens_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_migrations", - "description": "fetch data from the table: \"auth.migrations\"", + "name": "insert_auth_refresh_tokens_one", + "description": "insert a single row into the table: \"auth.refresh_tokens\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_refresh_tokens", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_roles", + "description": "insert data into the table: \"auth.roles\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", + "name": "auth_roles_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "auth_roles_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_migrations_aggregate", - "description": "fetch aggregated fields from the table: \"auth.migrations\"", + "name": "insert_auth_roles_one", + "description": "insert a single row into the table: \"auth.roles\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_roles_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_roles_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_branch_statuses", + "description": "insert data into the table: \"branch_statuses\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", + "name": "branch_statuses_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "branch_statuses_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_migrations_by_pk", - "description": "fetch data from the table: \"auth.migrations\" using primary key columns", + "name": "insert_branch_statuses_one", + "description": "insert a single row into the table: \"branch_statuses\"", "args": [ { - "name": "id", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "branch_statuses_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_migrations", + "name": "branch_statuses", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_providers", - "description": "fetch data from the table: \"auth.providers\"", + "name": "insert_branches", + "description": "insert data into the table: \"branches\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "branches_on_conflict", "ofType": null }, "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "branches_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_branches_one", + "description": "insert a single row into the table: \"branches\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_insert_input", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "branches_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_credentials", + "description": "insert data into the table: \"credentials\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "credentials_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "credentials_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.providers\"", + "name": "insert_credentials_one", + "description": "insert a single row into the table: \"credentials\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "credentials_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "credentials_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_dashboards", + "description": "insert data into the table: \"dashboards\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "dashboards_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "dashboards_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_providers_by_pk", - "description": "fetch data from the table: \"auth.providers\" using primary key columns", + "name": "insert_dashboards_one", + "description": "insert a single row into the table: \"dashboards\"", "args": [ { - "name": "provider", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "dashboards_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_providers", + "name": "dashboards", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_refresh_tokens", - "description": "fetch data from the table: \"auth.refresh_tokens\"", + "name": "insert_dataschemas", + "description": "insert data into the table: \"dataschemas\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dataschemas_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "dataschemas_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_dataschemas_one", + "description": "insert a single row into the table: \"dataschemas\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "dataschemas_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "dataschemas_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "dataschemas", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_refresh_tokens_aggregate", - "description": "fetch aggregated fields from the table: \"auth.refresh_tokens\"", + "name": "insert_datasources", + "description": "insert data into the table: \"datasources\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "datasources_on_conflict", "ofType": null }, "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "datasources_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_datasources_one", + "description": "insert a single row into the table: \"datasources\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_insert_input", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "datasources_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_events", + "description": "insert data into the table: \"events\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "events_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "events_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_refresh_tokens_by_pk", - "description": "fetch data from the table: \"auth.refresh_tokens\" using primary key columns", + "name": "insert_events_one", + "description": "insert a single row into the table: \"events\"", "args": [ { - "name": "refresh_token", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "events_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_refresh_tokens", + "name": "events", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_roles", - "description": "fetch data from the table: \"auth.roles\"", + "name": "insert_explorations", + "description": "insert data into the table: \"explorations\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "explorations_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "explorations_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_explorations_one", + "description": "insert a single row into the table: \"explorations\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "explorations_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "explorations_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "explorations", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.roles\"", + "name": "insert_member_credentials", + "description": "insert data into the table: \"member_credentials\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "member_credentials_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "member_credentials_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_member_credentials_one", + "description": "insert a single row into the table: \"member_credentials\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "member_credentials_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "member_credentials_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "member_credentials", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_roles_by_pk", - "description": "fetch data from the table: \"auth.roles\" using primary key columns", + "name": "insert_member_roles", + "description": "insert data into the table: \"member_roles\"", "args": [ { - "name": "role", - "description": null, + "name": "objects", + "description": "the rows to be inserted", "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": "member_roles_insert_input", + "ofType": null + } + } } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "auth_roles", + "name": "member_roles_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_statuses", - "description": "fetch data from the table: \"branch_statuses\"", + "name": "insert_member_roles_one", + "description": "insert a single row into the table: \"member_roles\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "member_roles_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "member_roles_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "member_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_members", + "description": "insert data into the table: \"members\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "members_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "members_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_statuses_aggregate", - "description": "fetch aggregated fields from the table: \"branch_statuses\"", + "name": "insert_members_one", + "description": "insert a single row into the table: \"members\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "members_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "members_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "members", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_pinned_items", + "description": "insert data into the table: \"pinned_items\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "pinned_items_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "pinned_items_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_statuses_by_pk", - "description": "fetch data from the table: \"branch_statuses\" using primary key columns", + "name": "insert_pinned_items_one", + "description": "insert a single row into the table: \"pinned_items\"", "args": [ { - "name": "status", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "pinned_items_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "branch_statuses", + "name": "pinned_items", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branches", - "description": "An array relationship", + "name": "insert_reports", + "description": "insert data into the table: \"reports\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "reports_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "reports_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_reports_one", + "description": "insert a single row into the table: \"reports\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "reports_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "reports_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "reports", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branches_aggregate", - "description": "An aggregate relationship", + "name": "insert_request_event_logs", + "description": "insert data into the table: \"request_event_logs\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "request_event_logs_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_request_event_logs_one", + "description": "insert a single row into the table: \"request_event_logs\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "request_event_logs_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "request_event_logs_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "request_event_logs", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branches_by_pk", - "description": "fetch data from the table: \"branches\" using primary key columns", + "name": "insert_request_logs", + "description": "insert data into the table: \"request_logs\"", "args": [ { - "name": "id", - "description": null, + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_insert_input", + "ofType": null + } + } } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "branches", + "name": "request_logs_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "create_events", - "description": null, + "name": "insert_request_logs_one", + "description": "insert a single row into the table: \"request_logs\"", "args": [ { - "name": "id", - "description": "the unique id of an action", + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "request_logs_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "create_events", + "name": "request_logs", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboards", - "description": "An array relationship", + "name": "insert_sql_credentials", + "description": "insert data into the table: \"sql_credentials\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_insert_input", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "sql_credentials_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "sql_credentials_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_sql_credentials_one", + "description": "insert a single row into the table: \"sql_credentials\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "sql_credentials_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "name": "sql_credentials_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "sql_credentials", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboards_aggregate", - "description": "An aggregate relationship", + "name": "insert_team_roles", + "description": "insert data into the table: \"team_roles\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_roles_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "team_roles_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "team_roles_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_team_roles_one", + "description": "insert a single row into the table: \"team_roles\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "team_roles_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "name": "team_roles_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "team_roles", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboards_by_pk", - "description": "fetch data from the table: \"dashboards\" using primary key columns", + "name": "insert_teams", + "description": "insert data into the table: \"teams\"", "args": [ { - "name": "id", - "description": null, + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "teams_insert_input", + "ofType": null + } + } } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "dashboards", + "name": "teams_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataschemas", - "description": "An array relationship", + "name": "insert_teams_one", + "description": "insert a single row into the table: \"teams\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "teams_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "teams_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "teams", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_users", + "description": "insert data into the table: \"users\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "users_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "users_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "users_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataschemas_aggregate", - "description": "An aggregate relationship", + "name": "insert_users_one", + "description": "insert a single row into the table: \"users\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "users_insert_input", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "users_on_conflict", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "users", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_versions", + "description": "insert data into the table: \"versions\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_insert_input", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "versions_on_conflict", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "versions_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataschemas_by_pk", - "description": "fetch data from the table: \"dataschemas\" using primary key columns", + "name": "insert_versions_one", + "description": "insert a single row into the table: \"versions\"", "args": [ { - "name": "id", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "versions_insert_input", "ofType": null } }, "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_on_conflict", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "dataschemas", + "name": "versions", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasources", - "description": "An array relationship", + "name": "invite_team_member", + "description": null, "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "email", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "role", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "teamId", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "InviteTeamMemberOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "run_query", + "description": null, + "args": [ + { + "name": "branch_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "datasource_id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "limit", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "query", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "datasources", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "RunSourceQueryOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasources_aggregate", - "description": "An aggregate relationship", + "name": "send_test_alert", + "description": null, "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "deliveryConfig", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "json", + "ofType": null } }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "deliveryType", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "explorationId", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", + "name": "name", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "SendTestAlertOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasources_by_pk", - "description": "fetch data from the table: \"datasources\" using primary key columns", + "name": "update_access_lists", + "description": "update data of the table: \"access_lists\"", "args": [ { - "name": "id", - "description": null, + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "access_lists_append_input", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "fetch data from the table: \"events\"", - "args": [ + }, { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "access_lists_delete_at_path_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "access_lists_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "access_lists_delete_key_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "access_lists_prepend_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "events_bool_exp", + "name": "access_lists_set_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "events", + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "access_lists_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "events_aggregate", - "description": "fetch aggregated fields from the table: \"events\"", + "name": "update_access_lists_by_pk", + "description": "update single row of the table: \"access_lists\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "access_lists_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "access_lists_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "access_lists_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "access_lists_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "events_bool_exp", + "name": "access_lists_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events_by_pk", - "description": "fetch data from the table: \"events\" using primary key columns", - "args": [ + }, { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_lists_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "access_lists_pk_columns_input", "ofType": null } }, @@ -47838,199 +45368,111 @@ ], "type": { "kind": "OBJECT", - "name": "events", + "name": "access_lists", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "explorations", - "description": "An array relationship", + "name": "update_access_lists_many", + "description": "update multiples rows of table: \"access_lists\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "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": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } + "kind": "OBJECT", + "name": "access_lists_mutation_response", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "explorations_aggregate", - "description": "An aggregate relationship", + "name": "update_access_types", + "description": "update data of the table: \"access_types\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "access_types_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "access_types_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "explorations_by_pk", - "description": "fetch data from the table: \"explorations\" using primary key columns", + "name": "update_access_types_by_pk", + "description": "update single row of the table: \"access_types\"", "args": [ { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "access_types_pk_columns_input", "ofType": null } }, @@ -48039,310 +45481,211 @@ ], "type": { "kind": "OBJECT", - "name": "explorations", + "name": "access_types", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fetch_dataset", - "description": null, + "name": "update_access_types_many", + "description": "update multiples rows of table: \"access_types\"", "args": [ { - "name": "exploration_id", - "description": null, + "name": "updates", + "description": "updates to execute, in order", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_updates", + "ofType": null + } + } } }, "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "FetchDatasetOutput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fetch_meta", - "description": null, + "name": "update_alerts", + "description": "update data of the table: \"alerts\"", "args": [ { - "name": "branch_id", - "description": null, + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "alerts_append_input", "ofType": null }, "defaultValue": null }, { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceMetaOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fetch_tables", - "description": null, - "args": [ - { - "name": "datasource_id", - "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "alerts_delete_at_path_input", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceTablesOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles", - "description": "An array relationship", - "args": [ + }, { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "alerts_delete_elem_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "alerts_delete_key_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "alerts_prepend_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "alerts_set_input", + "ofType": null }, "defaultValue": null }, { "name": "where", - "description": "filter the rows returned", + "description": "filter the rows which have to be updated", "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "member_roles", + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "alerts_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "member_roles_aggregate", - "description": "An aggregate relationship", + "name": "update_alerts_by_pk", + "description": "update single row of the table: \"alerts\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "alerts_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "alerts_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "alerts_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "alerts_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", + "name": "alerts_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_by_pk", - "description": "fetch data from the table: \"member_roles\" using primary key columns", - "args": [ + }, { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "alerts_pk_columns_input", "ofType": null } }, @@ -48351,199 +45694,224 @@ ], "type": { "kind": "OBJECT", - "name": "member_roles", + "name": "alerts", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "members", - "description": "An array relationship", + "name": "update_alerts_many", + "description": "update multiples rows of table: \"alerts\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "members_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_account_providers", + "description": "update data of the table: \"auth.account_providers\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_account_providers_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_account_providers_by_pk", + "description": "update single row of the table: \"auth.account_providers\"", + "args": [ { - "name": "where", - "description": "filter the rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "members_bool_exp", + "name": "auth_account_providers_set_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "members", + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "auth_account_providers", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "members_aggregate", - "description": "An aggregate relationship", + "name": "update_auth_account_providers_many", + "description": "update multiples rows of table: \"auth.account_providers\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "members_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_providers_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_account_roles", + "description": "update data of the table: \"auth.account_roles\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_account_roles_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "members_by_pk", - "description": "fetch data from the table: \"members\" using primary key columns", + "name": "update_auth_account_roles_by_pk", + "description": "update single row of the table: \"auth.account_roles\"", "args": [ { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_pk_columns_input", "ofType": null } }, @@ -48552,254 +45920,297 @@ ], "type": { "kind": "OBJECT", - "name": "members", + "name": "auth_account_roles", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pinned_items", - "description": "An array relationship", + "name": "update_auth_account_roles_many", + "description": "update multiples rows of table: \"auth.account_roles\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "pinned_items_select_column", - "ofType": null - } - } + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_roles_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_accounts", + "description": "update data of the table: \"auth.accounts\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "auth_accounts_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "name": "auth_accounts_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "pinned_items", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "auth_accounts_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pinned_items_aggregate", - "description": "An aggregate relationship", + "name": "update_auth_accounts_by_pk", + "description": "update single row of the table: \"auth.accounts\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "auth_accounts_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_accounts_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "auth_accounts_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", + "name": "auth_accounts_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_set_input", "ofType": null }, "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_accounts", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pinned_items_by_pk", - "description": "fetch data from the table: \"pinned_items\" using primary key columns", + "name": "update_auth_accounts_many", + "description": "update multiples rows of table: \"auth.accounts\"", "args": [ { - "name": "id", - "description": null, + "name": "updates", + "description": "updates to execute, in order", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_updates", + "ofType": null + } + } } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_accounts_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pre_aggregation_preview", - "description": null, + "name": "update_auth_migrations", + "description": "update data of the table: \"auth.migrations\"", "args": [ { - "name": "datasource_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": "auth_migrations_inc_input", + "ofType": null }, "defaultValue": null }, { - "name": "pre_aggregation_id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_migrations_set_input", + "ofType": null }, "defaultValue": null }, { - "name": "table_name", - "description": 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": "auth_migrations_bool_exp", "ofType": null } }, @@ -48808,25 +46219,45 @@ ], "type": { "kind": "OBJECT", - "name": "PreAggregationPreviewOutput", + "name": "auth_migrations_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pre_aggregations", - "description": null, + "name": "update_auth_migrations_by_pk", + "description": "update single row of the table: \"auth.migrations\"", "args": [ { - "name": "datasource_id", + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_inc_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "auth_migrations_pk_columns_input", "ofType": null } }, @@ -48835,199 +46266,111 @@ ], "type": { "kind": "OBJECT", - "name": "PreAggregationsOutput", + "name": "auth_migrations", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reports", - "description": "An array relationship", + "name": "update_auth_migrations_many", + "description": "update multiples rows of table: \"auth.migrations\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "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": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } + "kind": "OBJECT", + "name": "auth_migrations_mutation_response", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reports_aggregate", - "description": "An aggregate relationship", + "name": "update_auth_options", + "description": "update data of the table: \"auth_options\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_options_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_options_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_options_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reports_by_pk", - "description": "fetch data from the table: \"reports\" using primary key columns", + "name": "update_auth_options_by_pk", + "description": "update single row of the table: \"auth_options\"", "args": [ { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_options_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "auth_options_pk_columns_input", "ofType": null } }, @@ -49036,199 +46379,224 @@ ], "type": { "kind": "OBJECT", - "name": "reports", + "name": "auth_options", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "request_event_logs", - "description": "An array relationship", + "name": "update_auth_options_many", + "description": "update multiples rows of table: \"auth_options\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "request_event_logs_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_options_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_options_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_providers", + "description": "update data of the table: \"auth.providers\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_providers_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_providers_bool_exp", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_providers_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_providers_by_pk", + "description": "update single row of the table: \"auth.providers\"", + "args": [ { - "name": "where", - "description": "filter the rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", + "name": "auth_providers_set_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", + "kind": "INPUT_OBJECT", + "name": "auth_providers_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "auth_providers", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "request_event_logs_aggregate", - "description": "An aggregate relationship", + "name": "update_auth_providers_many", + "description": "update multiples rows of table: \"auth.providers\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "request_event_logs_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_providers_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_refresh_tokens", + "description": "update data of the table: \"auth.refresh_tokens\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_refresh_tokens_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "request_event_logs_by_pk", - "description": "fetch data from the table: \"request_event_logs\" using primary key columns", + "name": "update_auth_refresh_tokens_by_pk", + "description": "update single row of the table: \"auth.refresh_tokens\"", "args": [ { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_pk_columns_input", "ofType": null } }, @@ -49237,199 +46605,224 @@ ], "type": { "kind": "OBJECT", - "name": "request_event_logs", + "name": "auth_refresh_tokens", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "request_logs", - "description": "An array relationship", + "name": "update_auth_refresh_tokens_many", + "description": "update multiples rows of table: \"auth.refresh_tokens\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "request_logs_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_refresh_tokens_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_roles", + "description": "update data of the table: \"auth.roles\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "auth_roles_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "auth_roles_bool_exp", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_roles_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_auth_roles_by_pk", + "description": "update single row of the table: \"auth.roles\"", + "args": [ { - "name": "where", - "description": "filter the rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", + "name": "auth_roles_set_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "request_logs", + "kind": "INPUT_OBJECT", + "name": "auth_roles_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "auth_roles", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "request_logs_aggregate", - "description": "An aggregate relationship", + "name": "update_auth_roles_many", + "description": "update multiples rows of table: \"auth.roles\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "request_logs_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_roles_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_branch_statuses", + "description": "update data of the table: \"branch_statuses\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "branch_statuses_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "branch_statuses_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "request_logs_by_pk", - "description": "fetch data from the table: \"request_logs\" using primary key columns", + "name": "update_branch_statuses_by_pk", + "description": "update single row of the table: \"branch_statuses\"", "args": [ { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "branch_statuses_pk_columns_input", "ofType": null } }, @@ -49438,199 +46831,224 @@ ], "type": { "kind": "OBJECT", - "name": "request_logs", + "name": "branch_statuses", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials", - "description": "An array relationship", + "name": "update_branch_statuses_many", + "description": "update multiples rows of table: \"branch_statuses\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "sql_credentials_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_updates", + "ofType": null + } } } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branch_statuses_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_branches", + "description": "update data of the table: \"branches\"", + "args": [ { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "branches_set_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "branches_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_branches_by_pk", + "description": "update single row of the table: \"branches\"", + "args": [ { - "name": "where", - "description": "filter the rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", + "name": "branches_set_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", + "kind": "INPUT_OBJECT", + "name": "branches_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "branches", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials_aggregate", - "description": "An aggregate relationship", + "name": "update_branches_many", + "description": "update multiples rows of table: \"branches\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "sql_credentials_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branches_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_credentials", + "description": "update data of the table: \"credentials\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "credentials_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null } }, "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "credentials_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials_by_pk", - "description": "fetch data from the table: \"sql_credentials\" using primary key columns", + "name": "update_credentials_by_pk", + "description": "update single row of the table: \"credentials\"", "args": [ { - "name": "id", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "credentials_pk_columns_input", "ofType": null } }, @@ -49639,199 +47057,211 @@ ], "type": { "kind": "OBJECT", - "name": "sql_credentials", + "name": "credentials", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_roles", - "description": "fetch data from the table: \"team_roles\"", + "name": "update_credentials_many", + "description": "update multiples rows of table: \"credentials\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "team_roles_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_updates", + "ofType": null + } } } }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_dashboards", + "description": "update data of the table: \"dashboards\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_append_input", + "ofType": null + }, + "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dashboards_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dashboards_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "dashboards_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", + "name": "dashboards_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "team_roles", + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "dashboards_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_roles_aggregate", - "description": "fetch aggregated fields from the table: \"team_roles\"", + "name": "update_dashboards_by_pk", + "description": "update single row of the table: \"dashboards\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "dashboards_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dashboards_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dashboards_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "dashboards_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", + "name": "dashboards_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles_by_pk", - "description": "fetch data from the table: \"team_roles\" using primary key columns", - "args": [ + }, { - "name": "name", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "dashboards_pk_columns_input", "ofType": null } }, @@ -49840,199 +47270,237 @@ ], "type": { "kind": "OBJECT", - "name": "team_roles", + "name": "dashboards", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teams", - "description": "An array relationship", + "name": "update_dashboards_many", + "description": "update multiples rows of table: \"dashboards\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "teams_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dashboards_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_dataschemas", + "description": "update data of the table: \"dataschemas\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "dataschemas_set_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "dataschemas_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_dataschemas_by_pk", + "description": "update single row of the table: \"dataschemas\"", + "args": [ { - "name": "where", - "description": "filter the rows returned", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", + "name": "dataschemas_set_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "teams", + "kind": "INPUT_OBJECT", + "name": "dataschemas_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "dataschemas", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teams_aggregate", - "description": "An aggregate relationship", - "args": [ + "name": "update_dataschemas_many", + "description": "update multiples rows of table: \"dataschemas\"", + "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "teams_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_updates", + "ofType": null + } } } }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dataschemas_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_datasources", + "description": "update data of the table: \"datasources\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_append_input", + "ofType": null + }, + "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "datasources_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "datasources_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "datasources_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", + "name": "datasources_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_by_pk", - "description": "fetch data from the table: \"teams\" using primary key columns", - "args": [ + }, { - "name": "id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null } }, @@ -50041,199 +47509,211 @@ ], "type": { "kind": "OBJECT", - "name": "teams", + "name": "datasources_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "users", - "description": "fetch data from the table: \"users\"", + "name": "update_datasources_by_pk", + "description": "update single row of the table: \"datasources\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "datasources_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "datasources_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "datasources_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "datasources_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "name": "datasources_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "users", + "kind": "INPUT_OBJECT", + "name": "datasources_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "users_aggregate", - "description": "fetch aggregated fields from the table: \"users\"", + "name": "update_datasources_many", + "description": "update multiples rows of table: \"datasources\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "users_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_updates", + "ofType": null + } } } }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_events", + "description": "update data of the table: \"events\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_append_input", + "ofType": null + }, + "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "events_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "events_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "events_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "name": "events_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users_by_pk", - "description": "fetch data from the table: \"users\" using primary key columns", - "args": [ + }, { - "name": "id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", "ofType": null } }, @@ -50242,199 +47722,298 @@ ], "type": { "kind": "OBJECT", - "name": "users", + "name": "events_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "versions", - "description": "An array relationship", + "name": "update_events_by_pk", + "description": "update single row of the table: \"events\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "events_append_input", + "ofType": null }, "defaultValue": null }, { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "events_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "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": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "events_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "events_delete_key_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", + "name": "events_prepend_input", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "versions", + "kind": "INPUT_OBJECT", + "name": "events_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "events", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "versions_aggregate", - "description": "An aggregate relationship", + "name": "update_events_many", + "description": "update multiples rows of table: \"events\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "versions_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_updates", + "ofType": null + } } } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_explorations", + "description": "update data of the table: \"explorations\"", + "args": [ { - "name": "limit", - "description": "limit the number of rows returned", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "explorations_append_input", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "explorations_delete_at_path_input", "ofType": null }, "defaultValue": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "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": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "explorations_delete_elem_input", + "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows returned", + "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": "versions_bool_exp", + "name": "explorations_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_set_input", "ofType": null }, "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + } + }, + "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "explorations_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "versions_by_pk", - "description": "fetch data from the table: \"versions\" using primary key columns", + "name": "update_explorations_by_pk", + "description": "update single row of the table: \"explorations\"", "args": [ { - "name": "id", + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "explorations_pk_columns_input", "ofType": null } }, @@ -50443,33 +48022,45 @@ ], "type": { "kind": "OBJECT", - "name": "versions", + "name": "explorations", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports", - "description": "columns and relationships of \"reports\"", - "fields": [ + }, { - "name": "created_at", - "description": null, - "args": [], + "name": "update_explorations_many", + "description": "update multiples rows of table: \"explorations\"", + "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": "explorations_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "explorations_mutation_response", "ofType": null } }, @@ -50477,58 +48068,112 @@ "deprecationReason": null }, { - "name": "delivery_config", - "description": null, + "name": "update_member_credentials", + "description": "update data of the table: \"member_credentials\"", "args": [ { - "name": "path", - "description": "JSON select path", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "member_credentials_set_input", "ofType": null }, "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + } + }, + "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "OBJECT", + "name": "member_credentials_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_member_credentials_by_pk", + "description": "update single row of the table: \"member_credentials\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "member_credentials", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration", - "description": "An object relationship", - "args": [], + "name": "update_member_credentials_many", + "description": "update multiples rows of table: \"member_credentials\"", + "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": "member_credentials_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations", + "name": "member_credentials_mutation_response", "ofType": null } }, @@ -50536,47 +48181,112 @@ "deprecationReason": null }, { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "name": "update_member_roles", + "description": "update data of the table: \"member_roles\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "member_roles_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "name": "update_member_roles_by_pk", + "description": "update single row of the table: \"member_roles\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "member_roles", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], + "name": "update_member_roles_many", + "description": "update multiples rows of table: \"member_roles\"", + "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": "member_roles_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "member_roles_mutation_response", "ofType": null } }, @@ -50584,274 +48294,325 @@ "deprecationReason": null }, { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_members", + "description": "update data of the table: \"members\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "members_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "members_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "update_members_by_pk", + "description": "update single row of the table: \"members\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "members_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "teams", + "name": "members", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": null, - "args": [], + "name": "update_members_many", + "description": "update multiples rows of table: \"members\"", + "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": "members_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "members_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 - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "name": "update_pinned_items", + "description": "update data of the table: \"pinned_items\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_aggregate", - "description": "aggregated selection of \"reports\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], + ], "type": { "kind": "OBJECT", - "name": "reports_aggregate_fields", + "name": "pinned_items_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_pinned_items_by_pk", + "description": "update single row of the table: \"pinned_items\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "reports", + "kind": "INPUT_OBJECT", + "name": "pinned_items_pk_columns_input", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_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": "reports_select_column", - "ofType": null - } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, + ], "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "OBJECT", + "name": "pinned_items", "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_aggregate_fields", - "description": "aggregate fields of \"reports\"", - "fields": [ - { - "name": "count", - "description": null, + "name": "update_pinned_items_many", + "description": "update multiples rows of table: \"pinned_items\"", "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": "reports_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_updates", + "ofType": null + } } } }, "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "pinned_items_mutation_response", "ofType": null } }, @@ -50859,581 +48620,1374 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "reports_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], + "name": "update_reports", + "description": "update data of the table: \"reports\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "reports_min_fields", + "name": "reports_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", - "description": "order by aggregate values of table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_max_order_by", - "ofType": null - }, - "defaultValue": null }, { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_reports_by_pk", + "description": "update single row of the table: \"reports\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_insert_input", + "name": "reports_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", + ], "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", + "kind": "OBJECT", + "name": "reports", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "description": "Boolean expression to filter rows from the table \"reports\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "_and", - "description": null, + "name": "update_reports_many", + "description": "update multiples rows of table: \"reports\"", + "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": "reports_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "reports_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_request_event_logs", + "description": "update data of the table: \"request_event_logs\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "request_event_logs_append_input", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_inc_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_mutation_response", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_not", - "description": null, + "name": "update_request_event_logs_by_pk", + "description": "update single row of the table: \"request_event_logs\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_inc_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "OBJECT", + "name": "request_event_logs", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_or", - "description": null, + "name": "update_request_event_logs_many", + "description": "update multiples rows of table: \"request_event_logs\"", + "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": "request_event_logs_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "request_event_logs_mutation_response", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "update_request_logs", + "description": "update data of the table: \"request_logs\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "OBJECT", + "name": "request_logs_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "delivery_config", - "description": null, + "name": "update_request_logs_by_pk", + "description": "update single row of the table: \"request_logs\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "kind": "OBJECT", + "name": "request_logs", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "delivery_type", - "description": null, + "name": "update_request_logs_many", + "description": "update multiples rows of table: \"request_logs\"", + "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": "request_logs_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_logs_mutation_response", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration", - "description": null, + "name": "update_sql_credentials", + "description": "update data of the table: \"sql_credentials\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "kind": "OBJECT", + "name": "sql_credentials_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exploration_id", - "description": null, + "name": "update_sql_credentials_by_pk", + "description": "update single row of the table: \"sql_credentials\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "OBJECT", + "name": "sql_credentials", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_sql_credentials_many", + "description": "update multiples rows of table: \"sql_credentials\"", + "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": "sql_credentials_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sql_credentials_mutation_response", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "update_team_roles", + "description": "update data of the table: \"team_roles\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_roles_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_roles_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "OBJECT", + "name": "team_roles_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "schedule", - "description": null, + "name": "update_team_roles_by_pk", + "description": "update single row of the table: \"team_roles\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_roles_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_roles_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "OBJECT", + "name": "team_roles", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team", - "description": null, + "name": "update_team_roles_many", + "description": "update multiples rows of table: \"team_roles\"", + "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_roles_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team_roles_mutation_response", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team_id", - "description": null, + "name": "update_teams", + "description": "update data of the table: \"teams\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "OBJECT", + "name": "teams_mutation_response", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "update_teams_by_pk", + "description": "update single row of the table: \"teams\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "teams_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "OBJECT", + "name": "teams", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", - "description": null, + "name": "update_teams_many", + "description": "update multiples rows of table: \"teams\"", + "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": "teams_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "teams_mutation_response", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "update_users", + "description": "update data of the table: \"users\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "users_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "OBJECT", + "name": "users_mutation_response", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "reports_constraint", - "description": "unique or primary key constraints on table \"reports\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "reports_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "update_users_by_pk", + "description": "update single row of the table: \"users\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "users_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "users_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "users", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_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": "delivery_config", - "description": null, + "name": "update_users_many", + "description": "update multiples rows of table: \"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": "users_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "users_mutation_response", + "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_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": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_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": "update_versions", + "description": "update data of the table: \"versions\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "versions_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "delivery_config", - "description": null, + "name": "update_versions_by_pk", + "description": "update single row of the table: \"versions\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "versions", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_versions_many", + "description": "update multiples rows of table: \"versions\"", + "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": "versions_updates", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "versions_mutation_response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "numeric", + "description": null, + "fields": null, + "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "description": "input type for inserting data into table \"reports\"", + "name": "numeric_comparison_exp", + "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "_eq", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "numeric", "ofType": null }, "defaultValue": null }, { - "name": "delivery_config", + "name": "_gt", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "numeric", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, "defaultValue": null }, { - "name": "exploration", + "name": "_in", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "exploration_id", + "name": "_is_null", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "_lt", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "numeric", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "_neq", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "_nin", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, "defaultValue": 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": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null + "name": "asc_nulls_first", + "description": "in ascending order, nulls first", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null + "name": "asc_nulls_last", + "description": "in ascending order, nulls last", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null + "name": "desc", + "description": "in descending order, nulls first", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": 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 } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "reports_max_fields", - "description": "aggregate max on columns", + "name": "pinned_items", + "description": "columns and relationships of \"pinned_items\"", "fields": [ { "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": "delivery_type", + "name": "dashboard", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dashboards", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dashboard_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -51443,9 +49997,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -51455,9 +50013,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -51467,33 +50029,67 @@ "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": "schedule", + "name": "spec", "description": null, - "args": [], + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "spec_config", "description": null, - "args": [], + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -51503,9 +50099,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 @@ -51515,9 +50115,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -51529,98 +50133,128 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "reports_max_order_by", - "description": "order by max() on columns of table \"reports\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "pinned_items_aggregate", + "description": "aggregated selection of \"pinned_items\"", + "fields": [ { - "name": "created_at", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "pinned_items_aggregate_fields", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "delivery_type", + "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": "pinned_items", + "ofType": null + } + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "exploration_id", + "name": "count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "id", + "name": "arguments", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "pinned_items_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "team_id", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "predicate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null } @@ -51631,145 +50265,287 @@ }, { "kind": "OBJECT", - "name": "reports_min_fields", - "description": "aggregate min on columns", + "name": "pinned_items_aggregate_fields", + "description": "aggregate fields of \"pinned_items\"", "fields": [ { - "name": "created_at", + "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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delivery_type", + "name": "max", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "pinned_items_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exploration_id", + "name": "min", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "pinned_items_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_aggregate_order_by", + "description": "order by aggregate values of table \"pinned_items\"", + "fields": null, + "inputFields": [ { - "name": "id", + "name": "count", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "max", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "pinned_items_max_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "schedule", + "name": "min", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "pinned_items_min_order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ { - "name": "team_id", + "name": "spec", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updated_at", + "name": "spec_config", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"pinned_items\"", + "fields": null, + "inputFields": [ { - "name": "user_id", + "name": "data", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_on_conflict", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "reports_min_order_by", - "description": "order by min() on columns of table \"reports\"", + "name": "pinned_items_bool_exp", + "description": "Boolean expression to filter rows from the table \"pinned_items\". 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": "pinned_items_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, { "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "dashboard", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dashboard_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null @@ -51778,8 +50554,8 @@ "name": "exploration_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -51788,8 +50564,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -51798,28 +50574,28 @@ "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "spec", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "spec_config", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null @@ -51828,8 +50604,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null @@ -51838,8 +50614,8 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null @@ -51850,104 +50626,122 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "reports_mutation_response", - "description": "response of any mutation on the table \"reports\"", - "fields": [ + "kind": "ENUM", + "name": "pinned_items_constraint", + "description": "unique or primary key constraints on table \"pinned_items\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "pinned_items_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_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": "spec", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "spec_config", + "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": "reports", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "description": "on_conflict condition type for table \"reports\"", + "name": "pinned_items_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": "constraint", + "name": "spec", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "update_columns", + "name": "spec_config", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": "[]" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_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": "spec", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "where", + "name": "spec_config", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -51959,36 +50753,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "description": "Ordering options when selecting data from \"reports\".", + "name": "pinned_items_insert_input", + "description": "input type for inserting data into table \"pinned_items\"", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "delivery_config", + "name": "dashboard", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "dashboards_obj_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "dashboard_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -51998,7 +50792,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "name": "explorations_obj_rel_insert_input", "ofType": null }, "defaultValue": null @@ -52007,8 +50801,8 @@ "name": "exploration_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -52017,8 +50811,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -52027,114 +50821,224 @@ "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "spec", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "team", + "name": "spec_config", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "pinned_items_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": "user", + "name": "dashboard_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "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": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "reports_pk_columns_input", - "description": "primary key columns input for table: reports", + "name": "pinned_items_max_order_by", + "description": "order by max() on columns of table \"pinned_items\"", "fields": null, "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dashboard_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ + }, { - "name": "delivery_config", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52145,108 +51049,122 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "reports_select_column", - "description": "select columns of table \"reports\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "pinned_items_min_fields", + "description": "aggregate min on columns", + "fields": [ { "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delivery_type", - "description": "column name", + "name": "dashboard_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "exploration_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "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": "user_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "description": "input type for updating data in table \"reports\"", + "name": "pinned_items_min_order_by", + "description": "order by min() on columns of table \"pinned_items\"", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "dashboard_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52255,8 +51173,8 @@ "name": "exploration_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52265,8 +51183,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52275,83 +51193,136 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "pinned_items_mutation_response", + "description": "response of any mutation on the table \"pinned_items\"", + "fields": [ { - "name": "updated_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 + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_input", - "description": "Streaming cursor of the table \"reports\"", + "name": "pinned_items_on_conflict", + "description": "on_conflict condition type for table \"pinned_items\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "constraint", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_value_input", + "kind": "ENUM", + "name": "pinned_items_constraint", "ofType": null } }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "update_columns", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "pinned_items_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]" + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", "ofType": null }, "defaultValue": null @@ -52363,36 +51334,46 @@ }, { "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "pinned_items_order_by", + "description": "Ordering options when selecting data from \"pinned_items\".", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "delivery_config", + "name": "dashboard", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "dashboards_order_by", "ofType": null }, "defaultValue": null }, { - "name": "delivery_type", + "name": "dashboard_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", "ofType": null }, "defaultValue": null @@ -52401,8 +51382,8 @@ "name": "exploration_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52411,8 +51392,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52421,28 +51402,28 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "spec", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "spec_config", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52451,8 +51432,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52461,8 +51442,8 @@ "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -52473,27 +51454,77 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "reports_update_column", - "description": "update columns of table \"reports\"", + "kind": "INPUT_OBJECT", + "name": "pinned_items_pk_columns_input", + "description": "primary key columns input for table: pinned_items", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "spec", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null }, { - "name": "delivery_config", + "name": "spec_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "pinned_items_select_column", + "description": "select columns of table \"pinned_items\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "delivery_type", + "name": "dashboard_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -52517,13 +51548,13 @@ "deprecationReason": null }, { - "name": "schedule", + "name": "spec", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "spec_config", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -52545,81 +51576,97 @@ }, { "kind": "INPUT_OBJECT", - "name": "reports_updates", - "description": null, + "name": "pinned_items_set_input", + "description": "input type for updating data in table \"pinned_items\"", "fields": null, "inputFields": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "created_at", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "dashboard_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "exploration_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "name", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "spec", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "spec_config", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null } @@ -52629,375 +51676,281 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "request_event_logs", - "description": "columns and relationships of \"request_event_logs\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "pinned_items_stream_cursor_input", + "description": "Streaming cursor of the table \"pinned_items\"", + "fields": null, + "inputFields": [ { - "name": "created_at", - "description": null, - "args": [], + "name": "initial_value", + "description": "Stream column input with initial value", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "pinned_items_stream_cursor_value_input", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "duration", + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "pinned_items_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "numeric", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "error", + "name": "dashboard_id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "event", + "name": "exploration_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "path", + "name": "name", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "query", + "name": "spec", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], "type": { "kind": "SCALAR", "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "query_key", + "name": "spec_config", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], "type": { "kind": "SCALAR", "name": "jsonb", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "query_key_md5", + "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "query_sql", + "name": "user_id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "pinned_items_update_column", + "description": "update columns of table \"pinned_items\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "queue_prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "dashboard_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "exploration_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "request_log", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "name": "spec", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, + "name": "spec_config", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_aggregate", - "description": "aggregated selection of \"request_event_logs\"", - "fields": [ + }, { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_aggregate_fields", - "ofType": null - }, + "name": "updated_at", + "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": "request_event_logs", - "ofType": null - } - } - } - }, + "name": "user_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_bool_exp", + "name": "pinned_items_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": "request_event_logs_aggregate_bool_exp_count", + "name": "pinned_items_append_input", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", - "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": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_at_path_input", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", - "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": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "pinned_items_delete_elem_input", "ofType": null }, "defaultValue": null }, { - "name": "filter", - "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": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", + "name": "pinned_items_delete_key_input", "ofType": null }, "defaultValue": null }, { - "name": "predicate", - "description": null, + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "name": "pinned_items_bool_exp", "ofType": null } }, @@ -53010,28 +51963,107 @@ }, { "kind": "OBJECT", - "name": "request_event_logs_aggregate_fields", - "description": "aggregate fields of \"request_event_logs\"", + "name": "query_root", + "description": null, "fields": [ { - "name": "avg", - "description": null, - "args": [], + "name": "access_lists", + "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": "access_lists_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "request_event_logs_avg_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_lists", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", - "description": null, + "name": "access_lists_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "columns", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { "kind": "LIST", "name": null, @@ -53040,7 +52072,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "request_event_logs_select_column", + "name": "access_lists_select_column", "ofType": null } } @@ -53048,11 +52080,49 @@ "defaultValue": 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 + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", "ofType": null }, "defaultValue": null @@ -53062,8 +52132,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "access_lists_aggregate", "ofType": null } }, @@ -53071,280 +52141,505 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_stddev_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_pop", - "description": null, - "args": [], + "name": "access_lists_by_pk", + "description": "fetch data from the table: \"access_lists\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "request_event_logs_stddev_pop_fields", + "name": "access_lists", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", - "description": null, - "args": [], + "name": "access_types", + "description": "fetch data from the table: \"access_types\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "request_event_logs_stddev_samp_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", - "description": null, - "args": [], + "name": "access_types_aggregate", + "description": "fetch aggregated fields from the table: \"access_types\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "request_event_logs_sum_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", - "description": null, - "args": [], + "name": "access_types_by_pk", + "description": "fetch data from the table: \"access_types\" using primary key columns", + "args": [ + { + "name": "access_type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "request_event_logs_var_pop_fields", + "name": "access_types", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", - "description": null, - "args": [], + "name": "alerts", + "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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "request_event_logs_var_samp_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_variance_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_order_by", - "description": "order by aggregate values of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "avg", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_avg_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_min_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stddev", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stddev_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_pop_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stddev_samp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_samp_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_sum_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "var_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_var_pop_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "var_samp", - "description": null, + "name": "alerts_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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_var_samp_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts_aggregate", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "variance", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_variance_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "query", - "description": null, + "name": "alerts_by_pk", + "description": "fetch data from the table: \"alerts\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "alerts", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, + "name": "auth_account_providers", + "description": "fetch data from the table: \"auth.account_providers\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_account_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -53355,129 +52650,8802 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_insert_input", + "kind": "OBJECT", + "name": "auth_account_providers", "ofType": null } } } }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_avg_fields", - "description": "aggregate avg on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "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": "request_event_logs_avg_order_by", - "description": "order by avg() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null }, { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "description": "Boolean expression to filter rows from the table \"request_event_logs\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, + "name": "auth_account_providers_aggregate", + "description": "fetch aggregated fields from the table: \"auth.account_providers\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_account_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "auth_account_providers_aggregate", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_not", - "description": null, + "name": "auth_account_providers_by_pk", + "description": "fetch data from the table: \"auth.account_providers\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", + "kind": "OBJECT", + "name": "auth_account_providers", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_account_roles", + "description": "fetch data from the table: \"auth.account_roles\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_account_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_roles", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_account_roles_aggregate", + "description": "fetch aggregated fields from the table: \"auth.account_roles\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_account_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_roles_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_account_roles_by_pk", + "description": "fetch data from the table: \"auth.account_roles\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_account_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_accounts", + "description": "fetch data from the table: \"auth.accounts\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_accounts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_accounts", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_accounts_aggregate", + "description": "fetch aggregated fields from the table: \"auth.accounts\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_accounts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_accounts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_accounts_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_accounts_by_pk", + "description": "fetch data from the table: \"auth.accounts\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_accounts", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_migrations", + "description": "fetch data from the table: \"auth.migrations\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_migrations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_migrations", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_migrations_aggregate", + "description": "fetch aggregated fields from the table: \"auth.migrations\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_migrations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_migrations_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_migrations_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_migrations_by_pk", + "description": "fetch data from the table: \"auth.migrations\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_migrations", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_options", + "description": "fetch data from the table: \"auth_options\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_options_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_options_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_options_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_options", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_options_aggregate", + "description": "fetch aggregated fields from the table: \"auth_options\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_options_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_options_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_options_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_options_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_options_by_pk", + "description": "fetch data from the table: \"auth_options\" using primary key columns", + "args": [ + { + "name": "auth", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_options", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_providers", + "description": "fetch data from the table: \"auth.providers\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_providers", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_providers_aggregate", + "description": "fetch aggregated fields from the table: \"auth.providers\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_providers_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_providers_by_pk", + "description": "fetch data from the table: \"auth.providers\" using primary key columns", + "args": [ + { + "name": "provider", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_providers", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_refresh_tokens", + "description": "fetch data from the table: \"auth.refresh_tokens\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_refresh_tokens_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_refresh_tokens", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_refresh_tokens_aggregate", + "description": "fetch aggregated fields from the table: \"auth.refresh_tokens\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_refresh_tokens_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_refresh_tokens_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_refresh_tokens_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_refresh_tokens_by_pk", + "description": "fetch data from the table: \"auth.refresh_tokens\" using primary key columns", + "args": [ + { + "name": "refresh_token", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_refresh_tokens", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_roles", + "description": "fetch data from the table: \"auth.roles\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_roles", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_roles_aggregate", + "description": "fetch aggregated fields from the table: \"auth.roles\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_roles_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_roles_by_pk", + "description": "fetch data from the table: \"auth.roles\" using primary key columns", + "args": [ + { + "name": "role", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branch_statuses", + "description": "fetch data from the table: \"branch_statuses\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branch_statuses_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branch_statuses", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branch_statuses_aggregate", + "description": "fetch aggregated fields from the table: \"branch_statuses\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "branch_statuses_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "branch_statuses_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branch_statuses_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branch_statuses_by_pk", + "description": "fetch data from the table: \"branch_statuses\" using primary key columns", + "args": [ + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "branch_statuses", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branches", + "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": "branches_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branches_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": "branches_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "branches_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "branches_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "branches_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branches_by_pk", + "description": "fetch data from the table: \"branches\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "branches", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create_events", + "description": null, + "args": [ + { + "name": "id", + "description": "the unique id of an action", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "create_events", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credentials", + "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": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credentials_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": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credentials_by_pk", + "description": "fetch data from the table: \"credentials\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dashboards", + "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": "dashboards_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dashboards", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dashboards_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": "dashboards_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dashboards_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "dashboards_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dashboards_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dashboards_by_pk", + "description": "fetch data from the table: \"dashboards\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "dashboards", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataschemas", + "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": "dataschemas_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dataschemas", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataschemas_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": "dataschemas_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "dataschemas_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "dataschemas_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataschemas_by_pk", + "description": "fetch data from the table: \"dataschemas\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "dataschemas", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasources", + "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": "datasources_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasources_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": "datasources_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "datasources_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasources_by_pk", + "description": "fetch data from the table: \"datasources\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "events", + "description": "fetch data from the table: \"events\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "events_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "events_aggregate", + "description": "fetch aggregated fields from the table: \"events\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "events_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "events_by_pk", + "description": "fetch data from the table: \"events\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "events", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "explorations", + "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": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "explorations_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": "explorations_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "explorations_by_pk", + "description": "fetch data from the table: \"explorations\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "explorations", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetch_dataset", + "description": null, + "args": [ + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FetchDatasetOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetch_meta", + "description": null, + "args": [ + { + "name": "branch_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SourceMetaOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetch_tables", + "description": null, + "args": [ + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SourceTablesOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_credentials", + "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": "member_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_credentials", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_credentials_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": "member_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_credentials_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_credentials_by_pk", + "description": "fetch data from the table: \"member_credentials\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "member_credentials", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_roles", + "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": "member_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_roles", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_roles_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": "member_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "member_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "member_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "member_roles_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "member_roles_by_pk", + "description": "fetch data from the table: \"member_roles\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "member_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members", + "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": "members_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "members", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members_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": "members_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "members_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "members_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "members_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members_by_pk", + "description": "fetch data from the table: \"members\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "members", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pinned_items", + "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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pinned_items_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": "pinned_items_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "pinned_items_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "pinned_items_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pinned_items_by_pk", + "description": "fetch data from the table: \"pinned_items\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "pinned_items", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pre_aggregation_preview", + "description": null, + "args": [ + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "pre_aggregation_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "table_name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PreAggregationPreviewOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pre_aggregations", + "description": null, + "args": [ + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PreAggregationsOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reports", + "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": "reports_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reports_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": "reports_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reports_by_pk", + "description": "fetch data from the table: \"reports\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_event_logs", + "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": "request_event_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_event_logs", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_event_logs_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": "request_event_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_event_logs_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_event_logs_by_pk", + "description": "fetch data from the table: \"request_event_logs\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "request_event_logs", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_logs", + "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": "request_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_logs", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_logs_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": "request_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_logs_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_logs_by_pk", + "description": "fetch data from the table: \"request_logs\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "request_logs", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sql_credentials", + "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": "sql_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sql_credentials", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sql_credentials_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": "sql_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sql_credentials_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sql_credentials_by_pk", + "description": "fetch data from the table: \"sql_credentials\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "sql_credentials", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_roles", + "description": "fetch data from the table: \"team_roles\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "team_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team_roles", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_roles_aggregate", + "description": "fetch aggregated fields from the table: \"team_roles\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "team_roles_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_roles_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_roles_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team_roles_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_roles_by_pk", + "description": "fetch data from the table: \"team_roles\" using primary key columns", + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "team_roles", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "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": "teams_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "teams_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "teams", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams_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": "teams_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "teams_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "teams_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams_by_pk", + "description": "fetch data from the table: \"teams\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "teams", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": "fetch data from the table: \"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": "users_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "users_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users_aggregate", + "description": "fetch aggregated fields from the table: \"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": "users_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "users_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users_by_pk", + "description": "fetch data from the table: \"users\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "users", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versions", + "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": "versions_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "versions", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versions_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": "versions_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "versions_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "versions_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "versions_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versions_by_pk", + "description": "fetch data from the table: \"versions\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "versions", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "reports", + "description": "columns and relationships of \"reports\"", + "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": "delivery_config", + "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "explorations", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedule", + "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": "OBJECT", + "name": "teams", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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 + }, + { + "name": "user", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "reports_aggregate", + "description": "aggregated selection of \"reports\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "reports_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": "reports", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_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": "reports_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "reports_aggregate_fields", + "description": "aggregate fields of \"reports\"", + "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": "reports_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "reports_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "reports_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_aggregate_order_by", + "description": "order by aggregate values of table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_min_order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"reports\"", + "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": "reports_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_on_conflict", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "description": "Boolean expression to filter rows from the table \"reports\". 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": "reports_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "reports_constraint", + "description": "unique or primary key constraints on table \"reports\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "reports_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_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": "delivery_config", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_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": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_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": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_insert_input", + "description": "input type for inserting data into table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "reports_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": "delivery_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedule", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_max_order_by", + "description": "order by max() on columns of table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "reports_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": "delivery_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedule", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "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": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_min_order_by", + "description": "order by min() on columns of table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "reports_mutation_response", + "description": "response of any mutation on the table \"reports\"", + "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": "reports", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_on_conflict", + "description": "on_conflict condition type for table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "reports_constraint", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "reports_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]" + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "description": "Ordering options when selecting data from \"reports\".", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "explorations_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "teams_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_pk_columns_input", + "description": "primary key columns input for table: reports", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "reports_select_column", + "description": "select columns of table \"reports\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_config", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "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": "schedule", + "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": "reports_set_input", + "description": "input type for updating data in table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_stream_cursor_input", + "description": "Streaming cursor of the table \"reports\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "reports_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_config", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "delivery_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "exploration_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "reports_update_column", + "description": "update columns of table \"reports\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_config", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivery_type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exploration_id", + "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": "schedule", + "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": "reports_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_append_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_at_path_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_elem_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_delete_key_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_prepend_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_event_logs", + "description": "columns and relationships of \"request_event_logs\"", + "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": "duration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "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": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query_key", + "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query_key_md5", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query_sql", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queue_prefix", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_log", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "request_logs", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time_in_queue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "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": "request_event_logs_aggregate", + "description": "aggregated selection of \"request_event_logs\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_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": "request_event_logs", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_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": "request_event_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_event_logs_aggregate_fields", + "description": "aggregate fields of \"request_event_logs\"", + "fields": [ + { + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_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": "request_event_logs_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_stddev_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_stddev_pop_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_stddev_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sum", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_sum_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_var_pop_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_var_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "request_event_logs_variance_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_aggregate_order_by", + "description": "order by aggregate values of table \"request_event_logs\"", + "fields": null, + "inputFields": [ + { + "name": "avg", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_avg_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_min_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stddev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_stddev_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stddev_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_stddev_pop_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stddev_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_stddev_samp_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_sum_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "var_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_var_pop_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "var_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_var_samp_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_variance_order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "query", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "query_key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"request_event_logs\"", + "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": "request_event_logs_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_on_conflict", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_event_logs_avg_fields", + "description": "aggregate avg on columns", + "fields": [ + { + "name": "duration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time_in_queue", + "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": "request_event_logs_avg_order_by", + "description": "order by avg() on columns of table \"request_event_logs\"", + "fields": null, + "inputFields": [ + { + "name": "duration", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "time_in_queue", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "description": "Boolean expression to filter rows from the table \"request_event_logs\". 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": "request_event_logs_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_bool_exp", + "ofType": null + }, + "defaultValue": null }, { "name": "_or", @@ -57514,58 +65482,533 @@ }, { "name": "start_time", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "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": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_logs_min_order_by", + "description": "order by min() on columns of table \"request_logs\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "end_time", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "request_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "start_time", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_logs_mutation_response", + "description": "response of any mutation on the table \"request_logs\"", + "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": "request_logs", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_logs_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"request_logs\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_insert_input", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_on_conflict", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_logs_on_conflict", + "description": "on_conflict condition type for table \"request_logs\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "request_logs_constraint", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "request_logs_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]" + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_logs_order_by", + "description": "Ordering options when selecting data from \"request_logs\".", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datasource", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "datasources_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datasource_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "duration", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "end_time", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "request_event_logs_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "request_event_logs_aggregate_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "request_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "start_time", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "request_logs_pk_columns_input", + "description": "primary key columns input for table: request_logs", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "request_logs_select_column", + "description": "select columns of table \"request_logs\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_time", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "request_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_time", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "request_logs_min_order_by", - "description": "order by min() on columns of table \"request_logs\"", + "name": "request_logs_set_input", + "description": "input type for updating data in table \"request_logs\"", "fields": null, "inputFields": [ { "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57574,8 +66017,8 @@ "name": "datasource_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -57584,8 +66027,8 @@ "name": "end_time", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57594,8 +66037,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -57604,8 +66047,8 @@ "name": "path", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -57614,8 +66057,8 @@ "name": "request_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -57624,8 +66067,8 @@ "name": "start_time", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57634,8 +66077,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57644,8 +66087,8 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -57657,45 +66100,40 @@ }, { "kind": "OBJECT", - "name": "request_logs_mutation_response", - "description": "response of any mutation on the table \"request_logs\"", + "name": "request_logs_stddev_fields", + "description": "aggregate stddev on columns", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "duration", + "description": "A computed field, executes function \"duration\"", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "float8", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_logs_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "duration", + "description": "A computed field, executes function \"duration\"", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "float8", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -57707,88 +66145,54 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "request_logs_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "request_logs_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "on_conflict", - "description": "upsert condition", + "name": "duration", + "description": "A computed field, executes function \"duration\"", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", + "kind": "SCALAR", + "name": "float8", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "description": "on_conflict condition type for table \"request_logs\"", + "name": "request_logs_stream_cursor_input", + "description": "Streaming cursor of the table \"request_logs\"", "fields": null, "inputFields": [ { - "name": "constraint", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "request_logs_constraint", + "kind": "INPUT_OBJECT", + "name": "request_logs_stream_cursor_value_input", "ofType": null } }, "defaultValue": null }, { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null @@ -57800,26 +66204,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "description": "Ordering options when selecting data from \"request_logs\".", + "name": "request_logs_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": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57828,18 +66222,8 @@ "name": "datasource_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -57848,8 +66232,8 @@ "name": "end_time", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57858,8 +66242,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -57868,18 +66252,8 @@ "name": "path", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_event_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -57888,8 +66262,8 @@ "name": "request_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -57898,8 +66272,8 @@ "name": "start_time", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57908,18 +66282,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null @@ -57928,8 +66292,8 @@ "name": "user_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null @@ -57940,34 +66304,32 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "request_logs_pk_columns_input", - "description": "primary key columns input for table: request_logs", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "request_logs_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "id", - "description": null, + "name": "duration", + "description": "A computed field, executes function \"duration\"", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "float8", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "request_logs_select_column", - "description": "select columns of table \"request_logs\"", + "name": "request_logs_update_column", + "description": "update columns of table \"request_logs\"", "fields": null, "inputFields": null, "interfaces": null, @@ -58009,119 +66371,404 @@ "deprecationReason": null }, { - "name": "start_time", - "description": "column name", + "name": "start_time", + "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": "request_logs_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": "request_logs_set_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "request_logs_bool_exp", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_logs_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ + { + "name": "duration", + "description": "A computed field, executes function \"duration\"", + "args": [], + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_logs_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ + { + "name": "duration", + "description": "A computed field, executes function \"duration\"", + "args": [], + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "request_logs_variance_fields", + "description": "aggregate variance on columns", + "fields": [ + { + "name": "duration", + "description": "A computed field, executes function \"duration\"", + "args": [], + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "sql_credentials", + "description": "columns and relationships of \"sql_credentials\"", + "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": "datasource", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "datasources", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "args": [], + "type": { + "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 }, { - "name": "user_id", - "description": "column name", + "name": "user", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "users", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "description": "input type for updating data in table \"request_logs\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "user_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "datasource_id", + "name": "username", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "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": "sql_credentials_aggregate", + "description": "aggregated selection of \"sql_credentials\"", + "fields": [ { - "name": "end_time", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "sql_credentials_aggregate_fields", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sql_credentials", + "ofType": null + } + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "path", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "sql_credentials_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "request_id", + "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": "sql_credentials_select_column", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "start_time", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updated_at", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null } @@ -58132,39 +66779,73 @@ }, { "kind": "OBJECT", - "name": "request_logs_stddev_fields", - "description": "aggregate stddev on columns", + "name": "sql_credentials_aggregate_fields", + "description": "aggregate fields of \"sql_credentials\"", "fields": [ { - "name": "duration", - "description": "A computed field, executes function \"duration\"", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sql_credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "float8", + "kind": "OBJECT", + "name": "sql_credentials_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { - "name": "duration", - "description": "A computed field, executes function \"duration\"", + "name": "min", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "float8", + "kind": "OBJECT", + "name": "sql_credentials_min_fields", "ofType": null }, "isDeprecated": false, @@ -58177,54 +66858,80 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "request_logs_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "sql_credentials_aggregate_order_by", + "description": "order by aggregate values of table \"sql_credentials\"", + "fields": null, + "inputFields": [ { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], + "name": "count", + "description": null, "type": { - "kind": "SCALAR", - "name": "float8", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_max_order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_min_order_by", + "ofType": null + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_input", - "description": "Streaming cursor of the table \"request_logs\"", + "name": "sql_credentials_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"sql_credentials\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "data", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_value_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_insert_input", + "ofType": null + } + } } }, "defaultValue": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "sql_credentials_on_conflict", "ofType": null }, "defaultValue": null @@ -58236,76 +66943,102 @@ }, { "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "sql_credentials_bool_exp", + "description": "Boolean expression to filter rows from the table \"sql_credentials\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "datasource_id", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "end_time", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "datasource", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null }, { - "name": "path", + "name": "datasource_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "request_id", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null }, { - "name": "start_time", + "name": "password", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null @@ -58314,8 +67047,18 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_bool_exp", "ofType": null }, "defaultValue": null @@ -58324,99 +67067,50 @@ "name": "user_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_sum_fields", - "description": "aggregate sum on columns", - "fields": [ + }, { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], + "name": "username", + "description": null, "type": { - "kind": "SCALAR", - "name": "float8", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "request_logs_update_column", - "description": "update columns of table \"request_logs\"", + "name": "sql_credentials_constraint", + "description": "unique or primary key constraints on table \"sql_credentials\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_time", - "description": "column name", + { + "name": "sql_credentials_datasource_id_user_id_username_key", + "description": "unique or primary key constraint on columns \"user_id\", \"username\", \"datasource_id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "sql_credentials_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", + "name": "sql_credentials_username_key", + "description": "unique or primary key constraint on columns \"username\"", "isDeprecated": false, "deprecationReason": null } @@ -58425,141 +67119,118 @@ }, { "kind": "INPUT_OBJECT", - "name": "request_logs_updates", - "description": null, + "name": "sql_credentials_insert_input", + "description": "input type for inserting data into table \"sql_credentials\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datasource", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", + "name": "datasources_obj_rel_insert_input", "ofType": null }, "defaultValue": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "datasource_id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ + }, { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], + "name": "id", + "description": null, "type": { "kind": "SCALAR", - "name": "float8", + "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + "defaultValue": null + }, { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], + "name": "password", + "description": null, "type": { "kind": "SCALAR", - "name": "float8", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + "defaultValue": null + }, { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], + "name": "updated_at", + "description": null, "type": { "kind": "SCALAR", - "name": "float8", + "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "users_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "username", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "sql_credentials", - "description": "columns and relationships of \"sql_credentials\"", + "name": "sql_credentials_max_fields", + "description": "aggregate max on columns", "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": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -58569,13 +67240,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -58585,13 +67252,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -58613,29 +67276,9 @@ "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": "users", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -58645,13 +67288,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -58661,13 +67300,9 @@ "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 @@ -58679,128 +67314,78 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "description": "aggregated selection of \"sql_credentials\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "sql_credentials_max_order_by", + "description": "order by max() on columns of table \"sql_credentials\"", + "fields": null, + "inputFields": [ { - "name": "aggregate", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", + "name": "datasource_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": "sql_credentials", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "count", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp_count", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "password", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null }, { - "name": "distinct", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "filter", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "predicate", + "name": "username", "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 } @@ -58811,73 +67396,88 @@ }, { "kind": "OBJECT", - "name": "sql_credentials_aggregate_fields", - "description": "aggregate fields of \"sql_credentials\"", + "name": "sql_credentials_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": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": 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": "datasource_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "sql_credentials_max_fields", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "sql_credentials_min_fields", + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "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": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -58891,12 +67491,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_order_by", - "description": "order by aggregate values of table \"sql_credentials\"", + "name": "sql_credentials_min_order_by", + "description": "order by min() on columns of table \"sql_credentials\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -58906,21 +67506,61 @@ "defaultValue": null }, { - "name": "max", + "name": "datasource_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_max_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null }, { - "name": "min", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_min_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -58931,14 +67571,30 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"sql_credentials\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "sql_credentials_mutation_response", + "description": "response of any mutation on the table \"sql_credentials\"", + "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, @@ -58949,88 +67605,91 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", + "kind": "OBJECT", + "name": "sql_credentials", "ofType": null } } } }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "description": "Boolean expression to filter rows from the table \"sql_credentials\". All fields are combined with a logical 'AND'.", + "name": "sql_credentials_on_conflict", + "description": "on_conflict condition type for table \"sql_credentials\"", "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": "sql_credentials_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "sql_credentials_constraint", + "ofType": null } }, "defaultValue": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": 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": "sql_credentials_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sql_credentials_update_column", + "ofType": null + } } } }, - "defaultValue": null + "defaultValue": "[]" }, { - "name": "created_at", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "sql_credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_order_by", + "description": "Ordering options when selecting data from \"sql_credentials\".", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59040,7 +67699,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "name": "datasources_order_by", "ofType": null }, "defaultValue": null @@ -59049,8 +67708,8 @@ "name": "datasource_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59059,8 +67718,8 @@ "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59069,8 +67728,8 @@ "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59079,8 +67738,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59090,7 +67749,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "users_bool_exp", + "name": "users_order_by", "ofType": null }, "defaultValue": null @@ -59099,8 +67758,8 @@ "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59109,8 +67768,8 @@ "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null @@ -59120,29 +67779,78 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_pk_columns_input", + "description": "primary key columns input for table: sql_credentials", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "ENUM", - "name": "sql_credentials_constraint", - "description": "unique or primary key constraints on table \"sql_credentials\"", + "name": "sql_credentials_select_column", + "description": "select columns of table \"sql_credentials\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "sql_credentials_datasource_id_user_id_username_key", - "description": "unique or primary key constraint on columns \"user_id\", \"username\", \"datasource_id\"", + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "datasource_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "sql_credentials_username_key", - "description": "unique or primary key constraint on columns \"username\"", + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "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 + }, + { + "name": "username", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -59151,8 +67859,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", - "description": "input type for inserting data into table \"sql_credentials\"", + "name": "sql_credentials_set_input", + "description": "input type for updating data in table \"sql_credentials\"", "fields": null, "inputFields": [ { @@ -59165,16 +67873,6 @@ }, "defaultValue": null }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, { "name": "datasource_id", "description": null, @@ -59216,31 +67914,56 @@ "defaultValue": null }, { - "name": "user", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null }, { - "name": "user_id", + "name": "username", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_stream_cursor_input", + "description": "Streaming cursor of the table \"sql_credentials\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "username", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null @@ -59251,173 +67974,166 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "sql_credentials_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "sql_credentials_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "datasource_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "password", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "user_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "uuid", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "username", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_max_order_by", - "description": "order by max() on columns of table \"sql_credentials\"", + "kind": "ENUM", + "name": "sql_credentials_update_column", + "description": "update columns of table \"sql_credentials\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { "name": "datasource_id", - "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": "password", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { "name": "updated_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, + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sql_credentials_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "sql_credentials_set_input", "ofType": null }, "defaultValue": null }, { - "name": "username", - "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": "sql_credentials_bool_exp", + "ofType": null + } }, "defaultValue": null } @@ -59428,205 +68144,525 @@ }, { "kind": "OBJECT", - "name": "sql_credentials_min_fields", - "description": "aggregate min on columns", + "name": "subscription_root", + "description": null, "fields": [ { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], + "name": "access_lists", + "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": "access_lists_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_lists", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "access_lists_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": "access_lists_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_lists_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "password", - "description": null, - "args": [], + "name": "access_lists_by_pk", + "description": "fetch data from the table: \"access_lists\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "access_lists", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], + "name": "access_lists_stream", + "description": "fetch data from the table in a streaming manner: \"access_lists\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_lists_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_lists_bool_exp", + "ofType": null + }, + "defaultValue": 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": "access_lists", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, - "args": [], + "name": "access_types", + "description": "fetch data from the table: \"access_types\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "username", - "description": null, - "args": [], + "name": "access_types_aggregate", + "description": "fetch aggregated fields from the table: \"access_types\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "access_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "access_types_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_min_order_by", - "description": "order by min() on columns of table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null }, { - "name": "username", - "description": null, + "name": "access_types_by_pk", + "description": "fetch data from the table: \"access_types\" using primary key columns", + "args": [ + { + "name": "access_type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "access_types", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", - "description": "response of any mutation on the table \"sql_credentials\"", - "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": [], + "name": "access_types_stream", + "description": "fetch data from the table in a streaming manner: \"access_types\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "access_types_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "access_types_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -59638,7 +68674,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "sql_credentials", + "name": "access_types", "ofType": null } } @@ -59646,36 +68682,78 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "description": "on_conflict condition type for table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_constraint", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "update_columns", - "description": null, + "name": "alerts", + "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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -59686,502 +68764,464 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "sql_credentials_update_column", + "kind": "OBJECT", + "name": "alerts", "ofType": null } } } }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "description": "Ordering options when selecting data from \"sql_credentials\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_pk_columns_input", - "description": "primary key columns input for table: sql_credentials", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "description": "select columns of table \"sql_credentials\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "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 - }, - { - "name": "username", - "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "description": "input type for updating data in table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_input", - "description": "Streaming cursor of the table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null }, { - "name": "user_id", - "description": null, + "name": "alerts_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": "alerts_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts_aggregate", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "username", - "description": null, + "name": "alerts_by_pk", + "description": "fetch data from the table: \"alerts\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "alerts", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sql_credentials_update_column", - "description": "update columns of table \"sql_credentials\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "password", - "description": "column name", + "name": "alerts_stream", + "description": "fetch data from the table in a streaming manner: \"alerts\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "alerts_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "alerts_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "alerts", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "auth_account_providers", + "description": "fetch data from the table: \"auth.account_providers\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_account_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_providers", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", + "name": "auth_account_providers_aggregate", + "description": "fetch aggregated fields from the table: \"auth.account_providers\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_account_providers_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_providers_aggregate", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "username", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "auth_account_providers_by_pk", + "description": "fetch data from the table: \"auth.account_providers\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", + "kind": "OBJECT", + "name": "auth_account_providers", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "auth_account_providers_stream", + "description": "fetch data from the table in a streaming manner: \"auth.account_providers\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_account_providers_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_account_providers", + "ofType": null + } + } } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "description": null, - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "access_lists", - "description": "An array relationship", + "name": "auth_account_roles", + "description": "fetch data from the table: \"auth.account_roles\"", "args": [ { "name": "distinct_on", @@ -60194,7 +69234,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "access_lists_select_column", + "name": "auth_account_roles_select_column", "ofType": null } } @@ -60232,7 +69272,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", + "name": "auth_account_roles_order_by", "ofType": null } } @@ -60244,7 +69284,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", + "name": "auth_account_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -60261,7 +69301,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "access_lists", + "name": "auth_account_roles", "ofType": null } } @@ -60271,8 +69311,8 @@ "deprecationReason": null }, { - "name": "access_lists_aggregate", - "description": "An aggregate relationship", + "name": "auth_account_roles_aggregate", + "description": "fetch aggregated fields from the table: \"auth.account_roles\"", "args": [ { "name": "distinct_on", @@ -60285,7 +69325,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "access_lists_select_column", + "name": "auth_account_roles_select_column", "ofType": null } } @@ -60323,7 +69363,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", + "name": "auth_account_roles_order_by", "ofType": null } } @@ -60335,7 +69375,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", + "name": "auth_account_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -60346,7 +69386,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "access_lists_aggregate", + "name": "auth_account_roles_aggregate", "ofType": null } }, @@ -60354,8 +69394,8 @@ "deprecationReason": null }, { - "name": "access_lists_by_pk", - "description": "fetch data from the table: \"access_lists\" using primary key columns", + "name": "auth_account_roles_by_pk", + "description": "fetch data from the table: \"auth.account_roles\" using primary key columns", "args": [ { "name": "id", @@ -60374,15 +69414,15 @@ ], "type": { "kind": "OBJECT", - "name": "access_lists", + "name": "auth_account_roles", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "access_lists_stream", - "description": "fetch data from the table in a streaming manner: \"access_lists\"", + "name": "auth_account_roles_stream", + "description": "fetch data from the table in a streaming manner: \"auth.account_roles\"", "args": [ { "name": "batch_size", @@ -60409,7 +69449,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "access_lists_stream_cursor_input", + "name": "auth_account_roles_stream_cursor_input", "ofType": null } } @@ -60421,7 +69461,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", + "name": "auth_account_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -60438,7 +69478,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "access_lists", + "name": "auth_account_roles", "ofType": null } } @@ -60448,8 +69488,8 @@ "deprecationReason": null }, { - "name": "alerts", - "description": "An array relationship", + "name": "auth_accounts", + "description": "fetch data from the table: \"auth.accounts\"", "args": [ { "name": "distinct_on", @@ -60462,7 +69502,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "alerts_select_column", + "name": "auth_accounts_select_column", "ofType": null } } @@ -60500,7 +69540,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "alerts_order_by", + "name": "auth_accounts_order_by", "ofType": null } } @@ -60512,7 +69552,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "auth_accounts_bool_exp", "ofType": null }, "defaultValue": null @@ -60529,7 +69569,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "alerts", + "name": "auth_accounts", "ofType": null } } @@ -60539,8 +69579,8 @@ "deprecationReason": null }, { - "name": "alerts_aggregate", - "description": "An aggregate relationship", + "name": "auth_accounts_aggregate", + "description": "fetch aggregated fields from the table: \"auth.accounts\"", "args": [ { "name": "distinct_on", @@ -60553,7 +69593,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "alerts_select_column", + "name": "auth_accounts_select_column", "ofType": null } } @@ -60591,7 +69631,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "alerts_order_by", + "name": "auth_accounts_order_by", "ofType": null } } @@ -60603,7 +69643,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "auth_accounts_bool_exp", "ofType": null }, "defaultValue": null @@ -60614,7 +69654,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "alerts_aggregate", + "name": "auth_accounts_aggregate", "ofType": null } }, @@ -60622,8 +69662,8 @@ "deprecationReason": null }, { - "name": "alerts_by_pk", - "description": "fetch data from the table: \"alerts\" using primary key columns", + "name": "auth_accounts_by_pk", + "description": "fetch data from the table: \"auth.accounts\" using primary key columns", "args": [ { "name": "id", @@ -60642,15 +69682,15 @@ ], "type": { "kind": "OBJECT", - "name": "alerts", + "name": "auth_accounts", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "alerts_stream", - "description": "fetch data from the table in a streaming manner: \"alerts\"", + "name": "auth_accounts_stream", + "description": "fetch data from the table in a streaming manner: \"auth.accounts\"", "args": [ { "name": "batch_size", @@ -60677,7 +69717,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_input", + "name": "auth_accounts_stream_cursor_input", "ofType": null } } @@ -60689,7 +69729,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", + "name": "auth_accounts_bool_exp", "ofType": null }, "defaultValue": null @@ -60706,7 +69746,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "alerts", + "name": "auth_accounts", "ofType": null } } @@ -60716,8 +69756,8 @@ "deprecationReason": null }, { - "name": "auth_account_providers", - "description": "fetch data from the table: \"auth.account_providers\"", + "name": "auth_migrations", + "description": "fetch data from the table: \"auth.migrations\"", "args": [ { "name": "distinct_on", @@ -60730,7 +69770,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_account_providers_select_column", + "name": "auth_migrations_select_column", "ofType": null } } @@ -60768,7 +69808,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", + "name": "auth_migrations_order_by", "ofType": null } } @@ -60780,7 +69820,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "auth_migrations_bool_exp", "ofType": null }, "defaultValue": null @@ -60797,7 +69837,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_providers", + "name": "auth_migrations", "ofType": null } } @@ -60807,8 +69847,8 @@ "deprecationReason": null }, { - "name": "auth_account_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_providers\"", + "name": "auth_migrations_aggregate", + "description": "fetch aggregated fields from the table: \"auth.migrations\"", "args": [ { "name": "distinct_on", @@ -60821,7 +69861,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_account_providers_select_column", + "name": "auth_migrations_select_column", "ofType": null } } @@ -60859,7 +69899,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", + "name": "auth_migrations_order_by", "ofType": null } } @@ -60871,7 +69911,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "auth_migrations_bool_exp", "ofType": null }, "defaultValue": null @@ -60882,7 +69922,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_providers_aggregate", + "name": "auth_migrations_aggregate", "ofType": null } }, @@ -60890,8 +69930,8 @@ "deprecationReason": null }, { - "name": "auth_account_providers_by_pk", - "description": "fetch data from the table: \"auth.account_providers\" using primary key columns", + "name": "auth_migrations_by_pk", + "description": "fetch data from the table: \"auth.migrations\" using primary key columns", "args": [ { "name": "id", @@ -60901,7 +69941,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null } }, @@ -60910,15 +69950,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_account_providers", + "name": "auth_migrations", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_providers_stream", - "description": "fetch data from the table in a streaming manner: \"auth.account_providers\"", + "name": "auth_migrations_stream", + "description": "fetch data from the table in a streaming manner: \"auth.migrations\"", "args": [ { "name": "batch_size", @@ -60945,7 +69985,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_stream_cursor_input", + "name": "auth_migrations_stream_cursor_input", "ofType": null } } @@ -60957,7 +69997,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", + "name": "auth_migrations_bool_exp", "ofType": null }, "defaultValue": null @@ -60974,7 +70014,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_providers", + "name": "auth_migrations", "ofType": null } } @@ -60984,8 +70024,8 @@ "deprecationReason": null }, { - "name": "auth_account_roles", - "description": "fetch data from the table: \"auth.account_roles\"", + "name": "auth_options", + "description": "fetch data from the table: \"auth_options\"", "args": [ { "name": "distinct_on", @@ -60998,7 +70038,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_account_roles_select_column", + "name": "auth_options_select_column", "ofType": null } } @@ -61036,7 +70076,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", + "name": "auth_options_order_by", "ofType": null } } @@ -61048,7 +70088,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", + "name": "auth_options_bool_exp", "ofType": null }, "defaultValue": null @@ -61065,7 +70105,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_roles", + "name": "auth_options", "ofType": null } } @@ -61075,8 +70115,8 @@ "deprecationReason": null }, { - "name": "auth_account_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_roles\"", + "name": "auth_options_aggregate", + "description": "fetch aggregated fields from the table: \"auth_options\"", "args": [ { "name": "distinct_on", @@ -61089,7 +70129,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_account_roles_select_column", + "name": "auth_options_select_column", "ofType": null } } @@ -61127,7 +70167,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", + "name": "auth_options_order_by", "ofType": null } } @@ -61139,7 +70179,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", + "name": "auth_options_bool_exp", "ofType": null }, "defaultValue": null @@ -61150,7 +70190,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_roles_aggregate", + "name": "auth_options_aggregate", "ofType": null } }, @@ -61158,18 +70198,18 @@ "deprecationReason": null }, { - "name": "auth_account_roles_by_pk", - "description": "fetch data from the table: \"auth.account_roles\" using primary key columns", + "name": "auth_options_by_pk", + "description": "fetch data from the table: \"auth_options\" using primary key columns", "args": [ { - "name": "id", + "name": "auth", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -61178,15 +70218,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_account_roles", + "name": "auth_options", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_account_roles_stream", - "description": "fetch data from the table in a streaming manner: \"auth.account_roles\"", + "name": "auth_options_stream", + "description": "fetch data from the table in a streaming manner: \"auth_options\"", "args": [ { "name": "batch_size", @@ -61213,7 +70253,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_stream_cursor_input", + "name": "auth_options_stream_cursor_input", "ofType": null } } @@ -61225,7 +70265,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", + "name": "auth_options_bool_exp", "ofType": null }, "defaultValue": null @@ -61242,7 +70282,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_account_roles", + "name": "auth_options", "ofType": null } } @@ -61252,8 +70292,8 @@ "deprecationReason": null }, { - "name": "auth_accounts", - "description": "fetch data from the table: \"auth.accounts\"", + "name": "auth_providers", + "description": "fetch data from the table: \"auth.providers\"", "args": [ { "name": "distinct_on", @@ -61266,7 +70306,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_accounts_select_column", + "name": "auth_providers_select_column", "ofType": null } } @@ -61304,7 +70344,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", + "name": "auth_providers_order_by", "ofType": null } } @@ -61316,7 +70356,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null }, "defaultValue": null @@ -61333,7 +70373,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_accounts", + "name": "auth_providers", "ofType": null } } @@ -61343,8 +70383,8 @@ "deprecationReason": null }, { - "name": "auth_accounts_aggregate", - "description": "fetch aggregated fields from the table: \"auth.accounts\"", + "name": "auth_providers_aggregate", + "description": "fetch aggregated fields from the table: \"auth.providers\"", "args": [ { "name": "distinct_on", @@ -61357,7 +70397,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_accounts_select_column", + "name": "auth_providers_select_column", "ofType": null } } @@ -61395,7 +70435,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", + "name": "auth_providers_order_by", "ofType": null } } @@ -61407,7 +70447,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null }, "defaultValue": null @@ -61418,7 +70458,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_accounts_aggregate", + "name": "auth_providers_aggregate", "ofType": null } }, @@ -61426,18 +70466,18 @@ "deprecationReason": null }, { - "name": "auth_accounts_by_pk", - "description": "fetch data from the table: \"auth.accounts\" using primary key columns", + "name": "auth_providers_by_pk", + "description": "fetch data from the table: \"auth.providers\" using primary key columns", "args": [ { - "name": "id", + "name": "provider", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -61446,15 +70486,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_accounts", + "name": "auth_providers", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_accounts_stream", - "description": "fetch data from the table in a streaming manner: \"auth.accounts\"", + "name": "auth_providers_stream", + "description": "fetch data from the table in a streaming manner: \"auth.providers\"", "args": [ { "name": "batch_size", @@ -61481,7 +70521,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_stream_cursor_input", + "name": "auth_providers_stream_cursor_input", "ofType": null } } @@ -61493,7 +70533,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", + "name": "auth_providers_bool_exp", "ofType": null }, "defaultValue": null @@ -61510,7 +70550,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_accounts", + "name": "auth_providers", "ofType": null } } @@ -61520,8 +70560,8 @@ "deprecationReason": null }, { - "name": "auth_migrations", - "description": "fetch data from the table: \"auth.migrations\"", + "name": "auth_refresh_tokens", + "description": "fetch data from the table: \"auth.refresh_tokens\"", "args": [ { "name": "distinct_on", @@ -61534,7 +70574,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_migrations_select_column", + "name": "auth_refresh_tokens_select_column", "ofType": null } } @@ -61572,7 +70612,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", + "name": "auth_refresh_tokens_order_by", "ofType": null } } @@ -61584,7 +70624,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null }, "defaultValue": null @@ -61601,7 +70641,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_migrations", + "name": "auth_refresh_tokens", "ofType": null } } @@ -61611,8 +70651,8 @@ "deprecationReason": null }, { - "name": "auth_migrations_aggregate", - "description": "fetch aggregated fields from the table: \"auth.migrations\"", + "name": "auth_refresh_tokens_aggregate", + "description": "fetch aggregated fields from the table: \"auth.refresh_tokens\"", "args": [ { "name": "distinct_on", @@ -61625,7 +70665,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_migrations_select_column", + "name": "auth_refresh_tokens_select_column", "ofType": null } } @@ -61663,7 +70703,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", + "name": "auth_refresh_tokens_order_by", "ofType": null } } @@ -61675,7 +70715,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null }, "defaultValue": null @@ -61686,7 +70726,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_migrations_aggregate", + "name": "auth_refresh_tokens_aggregate", "ofType": null } }, @@ -61694,18 +70734,18 @@ "deprecationReason": null }, { - "name": "auth_migrations_by_pk", - "description": "fetch data from the table: \"auth.migrations\" using primary key columns", + "name": "auth_refresh_tokens_by_pk", + "description": "fetch data from the table: \"auth.refresh_tokens\" using primary key columns", "args": [ { - "name": "id", + "name": "refresh_token", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "uuid", "ofType": null } }, @@ -61714,15 +70754,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_migrations", + "name": "auth_refresh_tokens", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_migrations_stream", - "description": "fetch data from the table in a streaming manner: \"auth.migrations\"", + "name": "auth_refresh_tokens_stream", + "description": "fetch data from the table in a streaming manner: \"auth.refresh_tokens\"", "args": [ { "name": "batch_size", @@ -61749,7 +70789,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_stream_cursor_input", + "name": "auth_refresh_tokens_stream_cursor_input", "ofType": null } } @@ -61761,7 +70801,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", + "name": "auth_refresh_tokens_bool_exp", "ofType": null }, "defaultValue": null @@ -61778,7 +70818,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_migrations", + "name": "auth_refresh_tokens", "ofType": null } } @@ -61788,8 +70828,8 @@ "deprecationReason": null }, { - "name": "auth_providers", - "description": "fetch data from the table: \"auth.providers\"", + "name": "auth_roles", + "description": "fetch data from the table: \"auth.roles\"", "args": [ { "name": "distinct_on", @@ -61802,7 +70842,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_providers_select_column", + "name": "auth_roles_select_column", "ofType": null } } @@ -61840,7 +70880,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", + "name": "auth_roles_order_by", "ofType": null } } @@ -61852,7 +70892,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -61869,7 +70909,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_providers", + "name": "auth_roles", "ofType": null } } @@ -61879,8 +70919,8 @@ "deprecationReason": null }, { - "name": "auth_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.providers\"", + "name": "auth_roles_aggregate", + "description": "fetch aggregated fields from the table: \"auth.roles\"", "args": [ { "name": "distinct_on", @@ -61893,7 +70933,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_providers_select_column", + "name": "auth_roles_select_column", "ofType": null } } @@ -61931,7 +70971,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", + "name": "auth_roles_order_by", "ofType": null } } @@ -61943,7 +70983,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -61954,7 +70994,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_providers_aggregate", + "name": "auth_roles_aggregate", "ofType": null } }, @@ -61962,11 +71002,11 @@ "deprecationReason": null }, { - "name": "auth_providers_by_pk", - "description": "fetch data from the table: \"auth.providers\" using primary key columns", + "name": "auth_roles_by_pk", + "description": "fetch data from the table: \"auth.roles\" using primary key columns", "args": [ { - "name": "provider", + "name": "role", "description": null, "type": { "kind": "NON_NULL", @@ -61982,15 +71022,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_providers", + "name": "auth_roles", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_providers_stream", - "description": "fetch data from the table in a streaming manner: \"auth.providers\"", + "name": "auth_roles_stream", + "description": "fetch data from the table in a streaming manner: \"auth.roles\"", "args": [ { "name": "batch_size", @@ -62017,7 +71057,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_input", + "name": "auth_roles_stream_cursor_input", "ofType": null } } @@ -62029,7 +71069,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", + "name": "auth_roles_bool_exp", "ofType": null }, "defaultValue": null @@ -62046,7 +71086,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_providers", + "name": "auth_roles", "ofType": null } } @@ -62056,8 +71096,8 @@ "deprecationReason": null }, { - "name": "auth_refresh_tokens", - "description": "fetch data from the table: \"auth.refresh_tokens\"", + "name": "branch_statuses", + "description": "fetch data from the table: \"branch_statuses\"", "args": [ { "name": "distinct_on", @@ -62070,7 +71110,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", + "name": "branch_statuses_select_column", "ofType": null } } @@ -62108,7 +71148,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", + "name": "branch_statuses_order_by", "ofType": null } } @@ -62120,7 +71160,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "branch_statuses_bool_exp", "ofType": null }, "defaultValue": null @@ -62137,7 +71177,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_refresh_tokens", + "name": "branch_statuses", "ofType": null } } @@ -62147,8 +71187,8 @@ "deprecationReason": null }, { - "name": "auth_refresh_tokens_aggregate", - "description": "fetch aggregated fields from the table: \"auth.refresh_tokens\"", + "name": "branch_statuses_aggregate", + "description": "fetch aggregated fields from the table: \"branch_statuses\"", "args": [ { "name": "distinct_on", @@ -62161,7 +71201,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", + "name": "branch_statuses_select_column", "ofType": null } } @@ -62199,7 +71239,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", + "name": "branch_statuses_order_by", "ofType": null } } @@ -62211,7 +71251,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "branch_statuses_bool_exp", "ofType": null }, "defaultValue": null @@ -62222,7 +71262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", + "name": "branch_statuses_aggregate", "ofType": null } }, @@ -62230,18 +71270,18 @@ "deprecationReason": null }, { - "name": "auth_refresh_tokens_by_pk", - "description": "fetch data from the table: \"auth.refresh_tokens\" using primary key columns", + "name": "branch_statuses_by_pk", + "description": "fetch data from the table: \"branch_statuses\" using primary key columns", "args": [ { - "name": "refresh_token", + "name": "status", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -62250,15 +71290,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_refresh_tokens", + "name": "branch_statuses", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_refresh_tokens_stream", - "description": "fetch data from the table in a streaming manner: \"auth.refresh_tokens\"", + "name": "branch_statuses_stream", + "description": "fetch data from the table in a streaming manner: \"branch_statuses\"", "args": [ { "name": "batch_size", @@ -62285,7 +71325,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_input", + "name": "branch_statuses_stream_cursor_input", "ofType": null } } @@ -62297,7 +71337,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", + "name": "branch_statuses_bool_exp", "ofType": null }, "defaultValue": null @@ -62314,7 +71354,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_refresh_tokens", + "name": "branch_statuses", "ofType": null } } @@ -62324,8 +71364,8 @@ "deprecationReason": null }, { - "name": "auth_roles", - "description": "fetch data from the table: \"auth.roles\"", + "name": "branches", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -62338,7 +71378,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_roles_select_column", + "name": "branches_select_column", "ofType": null } } @@ -62376,7 +71416,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", + "name": "branches_order_by", "ofType": null } } @@ -62388,7 +71428,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -62405,7 +71445,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_roles", + "name": "branches", "ofType": null } } @@ -62415,8 +71455,8 @@ "deprecationReason": null }, { - "name": "auth_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.roles\"", + "name": "branches_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -62429,7 +71469,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_roles_select_column", + "name": "branches_select_column", "ofType": null } } @@ -62467,7 +71507,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", + "name": "branches_order_by", "ofType": null } } @@ -62479,7 +71519,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -62490,7 +71530,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_roles_aggregate", + "name": "branches_aggregate", "ofType": null } }, @@ -62498,18 +71538,18 @@ "deprecationReason": null }, { - "name": "auth_roles_by_pk", - "description": "fetch data from the table: \"auth.roles\" using primary key columns", + "name": "branches_by_pk", + "description": "fetch data from the table: \"branches\" using primary key columns", "args": [ { - "name": "role", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -62518,15 +71558,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_roles", + "name": "branches", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_roles_stream", - "description": "fetch data from the table in a streaming manner: \"auth.roles\"", + "name": "branches_stream", + "description": "fetch data from the table in a streaming manner: \"branches\"", "args": [ { "name": "batch_size", @@ -62553,7 +71593,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_input", + "name": "branches_stream_cursor_input", "ofType": null } } @@ -62565,7 +71605,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", + "name": "branches_bool_exp", "ofType": null }, "defaultValue": null @@ -62582,7 +71622,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_roles", + "name": "branches", "ofType": null } } @@ -62592,8 +71632,35 @@ "deprecationReason": null }, { - "name": "branch_statuses", - "description": "fetch data from the table: \"branch_statuses\"", + "name": "create_events", + "description": null, + "args": [ + { + "name": "id", + "description": "the unique id of an action", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "create_events", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credentials", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -62606,7 +71673,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branch_statuses_select_column", + "name": "credentials_select_column", "ofType": null } } @@ -62644,7 +71711,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", + "name": "credentials_order_by", "ofType": null } } @@ -62656,7 +71723,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -62673,7 +71740,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branch_statuses", + "name": "credentials", "ofType": null } } @@ -62683,8 +71750,8 @@ "deprecationReason": null }, { - "name": "branch_statuses_aggregate", - "description": "fetch aggregated fields from the table: \"branch_statuses\"", + "name": "credentials_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -62697,7 +71764,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branch_statuses_select_column", + "name": "credentials_select_column", "ofType": null } } @@ -62735,7 +71802,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", + "name": "credentials_order_by", "ofType": null } } @@ -62747,7 +71814,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -62758,7 +71825,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branch_statuses_aggregate", + "name": "credentials_aggregate", "ofType": null } }, @@ -62766,18 +71833,18 @@ "deprecationReason": null }, { - "name": "branch_statuses_by_pk", - "description": "fetch data from the table: \"branch_statuses\" using primary key columns", + "name": "credentials_by_pk", + "description": "fetch data from the table: \"credentials\" using primary key columns", "args": [ { - "name": "status", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -62786,15 +71853,15 @@ ], "type": { "kind": "OBJECT", - "name": "branch_statuses", + "name": "credentials", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_statuses_stream", - "description": "fetch data from the table in a streaming manner: \"branch_statuses\"", + "name": "credentials_stream", + "description": "fetch data from the table in a streaming manner: \"credentials\"", "args": [ { "name": "batch_size", @@ -62821,7 +71888,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_input", + "name": "credentials_stream_cursor_input", "ofType": null } } @@ -62833,7 +71900,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", + "name": "credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -62850,7 +71917,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branch_statuses", + "name": "credentials", "ofType": null } } @@ -62860,7 +71927,7 @@ "deprecationReason": null }, { - "name": "branches", + "name": "dashboards", "description": "An array relationship", "args": [ { @@ -62874,7 +71941,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branches_select_column", + "name": "dashboards_select_column", "ofType": null } } @@ -62912,7 +71979,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branches_order_by", + "name": "dashboards_order_by", "ofType": null } } @@ -62924,7 +71991,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "dashboards_bool_exp", "ofType": null }, "defaultValue": null @@ -62941,7 +72008,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branches", + "name": "dashboards", "ofType": null } } @@ -62951,7 +72018,7 @@ "deprecationReason": null }, { - "name": "branches_aggregate", + "name": "dashboards_aggregate", "description": "An aggregate relationship", "args": [ { @@ -62965,7 +72032,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "branches_select_column", + "name": "dashboards_select_column", "ofType": null } } @@ -63003,7 +72070,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branches_order_by", + "name": "dashboards_order_by", "ofType": null } } @@ -63015,7 +72082,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "dashboards_bool_exp", "ofType": null }, "defaultValue": null @@ -63026,7 +72093,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branches_aggregate", + "name": "dashboards_aggregate", "ofType": null } }, @@ -63034,8 +72101,8 @@ "deprecationReason": null }, { - "name": "branches_by_pk", - "description": "fetch data from the table: \"branches\" using primary key columns", + "name": "dashboards_by_pk", + "description": "fetch data from the table: \"dashboards\" using primary key columns", "args": [ { "name": "id", @@ -63054,15 +72121,15 @@ ], "type": { "kind": "OBJECT", - "name": "branches", + "name": "dashboards", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branches_stream", - "description": "fetch data from the table in a streaming manner: \"branches\"", + "name": "dashboards_stream", + "description": "fetch data from the table in a streaming manner: \"dashboards\"", "args": [ { "name": "batch_size", @@ -63089,7 +72156,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_input", + "name": "dashboards_stream_cursor_input", "ofType": null } } @@ -63101,7 +72168,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", + "name": "dashboards_bool_exp", "ofType": null }, "defaultValue": null @@ -63118,7 +72185,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "branches", + "name": "dashboards", "ofType": null } } @@ -63128,34 +72195,7 @@ "deprecationReason": null }, { - "name": "create_events", - "description": null, - "args": [ - { - "name": "id", - "description": "the unique id of an action", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "create_events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards", + "name": "dataschemas", "description": "An array relationship", "args": [ { @@ -63169,7 +72209,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "dashboards_select_column", + "name": "dataschemas_select_column", "ofType": null } } @@ -63207,7 +72247,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", + "name": "dataschemas_order_by", "ofType": null } } @@ -63219,7 +72259,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "name": "dataschemas_bool_exp", "ofType": null }, "defaultValue": null @@ -63236,7 +72276,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "dashboards", + "name": "dataschemas", "ofType": null } } @@ -63246,7 +72286,7 @@ "deprecationReason": null }, { - "name": "dashboards_aggregate", + "name": "dataschemas_aggregate", "description": "An aggregate relationship", "args": [ { @@ -63260,7 +72300,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "dashboards_select_column", + "name": "dataschemas_select_column", "ofType": null } } @@ -63298,7 +72338,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", + "name": "dataschemas_order_by", "ofType": null } } @@ -63310,7 +72350,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "name": "dataschemas_bool_exp", "ofType": null }, "defaultValue": null @@ -63321,7 +72361,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "dashboards_aggregate", + "name": "dataschemas_aggregate", "ofType": null } }, @@ -63329,8 +72369,8 @@ "deprecationReason": null }, { - "name": "dashboards_by_pk", - "description": "fetch data from the table: \"dashboards\" using primary key columns", + "name": "dataschemas_by_pk", + "description": "fetch data from the table: \"dataschemas\" using primary key columns", "args": [ { "name": "id", @@ -63349,15 +72389,15 @@ ], "type": { "kind": "OBJECT", - "name": "dashboards", + "name": "dataschemas", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dashboards_stream", - "description": "fetch data from the table in a streaming manner: \"dashboards\"", + "name": "dataschemas_stream", + "description": "fetch data from the table in a streaming manner: \"dataschemas\"", "args": [ { "name": "batch_size", @@ -63384,7 +72424,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_input", + "name": "dataschemas_stream_cursor_input", "ofType": null } } @@ -63396,7 +72436,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", + "name": "dataschemas_bool_exp", "ofType": null }, "defaultValue": null @@ -63413,7 +72453,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "dashboards", + "name": "dataschemas", "ofType": null } } @@ -63423,7 +72463,7 @@ "deprecationReason": null }, { - "name": "dataschemas", + "name": "datasources", "description": "An array relationship", "args": [ { @@ -63437,7 +72477,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "dataschemas_select_column", + "name": "datasources_select_column", "ofType": null } } @@ -63475,7 +72515,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", + "name": "datasources_order_by", "ofType": null } } @@ -63487,7 +72527,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -63504,7 +72544,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "dataschemas", + "name": "datasources", "ofType": null } } @@ -63514,7 +72554,7 @@ "deprecationReason": null }, { - "name": "dataschemas_aggregate", + "name": "datasources_aggregate", "description": "An aggregate relationship", "args": [ { @@ -63528,7 +72568,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "dataschemas_select_column", + "name": "datasources_select_column", "ofType": null } } @@ -63566,7 +72606,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", + "name": "datasources_order_by", "ofType": null } } @@ -63578,7 +72618,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -63589,7 +72629,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "dataschemas_aggregate", + "name": "datasources_aggregate", "ofType": null } }, @@ -63597,8 +72637,8 @@ "deprecationReason": null }, { - "name": "dataschemas_by_pk", - "description": "fetch data from the table: \"dataschemas\" using primary key columns", + "name": "datasources_by_pk", + "description": "fetch data from the table: \"datasources\" using primary key columns", "args": [ { "name": "id", @@ -63617,15 +72657,15 @@ ], "type": { "kind": "OBJECT", - "name": "dataschemas", + "name": "datasources", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataschemas_stream", - "description": "fetch data from the table in a streaming manner: \"dataschemas\"", + "name": "datasources_stream", + "description": "fetch data from the table in a streaming manner: \"datasources\"", "args": [ { "name": "batch_size", @@ -63652,7 +72692,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_input", + "name": "datasources_stream_cursor_input", "ofType": null } } @@ -63664,7 +72704,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", + "name": "datasources_bool_exp", "ofType": null }, "defaultValue": null @@ -63681,7 +72721,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "dataschemas", + "name": "datasources", "ofType": null } } @@ -63691,8 +72731,8 @@ "deprecationReason": null }, { - "name": "datasources", - "description": "An array relationship", + "name": "events", + "description": "fetch data from the table: \"events\"", "args": [ { "name": "distinct_on", @@ -63705,7 +72745,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "datasources_select_column", + "name": "events_select_column", "ofType": null } } @@ -63743,7 +72783,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "datasources_order_by", + "name": "events_order_by", "ofType": null } } @@ -63755,7 +72795,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null @@ -63772,7 +72812,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "datasources", + "name": "events", "ofType": null } } @@ -63782,8 +72822,8 @@ "deprecationReason": null }, { - "name": "datasources_aggregate", - "description": "An aggregate relationship", + "name": "events_aggregate", + "description": "fetch aggregated fields from the table: \"events\"", "args": [ { "name": "distinct_on", @@ -63796,7 +72836,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "datasources_select_column", + "name": "events_select_column", "ofType": null } } @@ -63834,7 +72874,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "datasources_order_by", + "name": "events_order_by", "ofType": null } } @@ -63846,7 +72886,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null @@ -63857,7 +72897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "datasources_aggregate", + "name": "events_aggregate", "ofType": null } }, @@ -63865,8 +72905,8 @@ "deprecationReason": null }, { - "name": "datasources_by_pk", - "description": "fetch data from the table: \"datasources\" using primary key columns", + "name": "events_by_pk", + "description": "fetch data from the table: \"events\" using primary key columns", "args": [ { "name": "id", @@ -63885,15 +72925,15 @@ ], "type": { "kind": "OBJECT", - "name": "datasources", + "name": "events", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasources_stream", - "description": "fetch data from the table in a streaming manner: \"datasources\"", + "name": "events_stream", + "description": "fetch data from the table in a streaming manner: \"events\"", "args": [ { "name": "batch_size", @@ -63920,7 +72960,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_input", + "name": "events_stream_cursor_input", "ofType": null } } @@ -63932,7 +72972,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null @@ -63949,7 +72989,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "datasources", + "name": "events", "ofType": null } } @@ -63959,8 +72999,8 @@ "deprecationReason": null }, { - "name": "events", - "description": "fetch data from the table: \"events\"", + "name": "explorations", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -63973,7 +73013,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "events_select_column", + "name": "explorations_select_column", "ofType": null } } @@ -64011,7 +73051,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "events_order_by", + "name": "explorations_order_by", "ofType": null } } @@ -64023,7 +73063,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "events_bool_exp", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null @@ -64040,7 +73080,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "events", + "name": "explorations", "ofType": null } } @@ -64050,8 +73090,8 @@ "deprecationReason": null }, { - "name": "events_aggregate", - "description": "fetch aggregated fields from the table: \"events\"", + "name": "explorations_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -64064,7 +73104,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "events_select_column", + "name": "explorations_select_column", "ofType": null } } @@ -64102,7 +73142,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "events_order_by", + "name": "explorations_order_by", "ofType": null } } @@ -64114,7 +73154,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "events_bool_exp", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null @@ -64125,7 +73165,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "events_aggregate", + "name": "explorations_aggregate", "ofType": null } }, @@ -64133,8 +73173,8 @@ "deprecationReason": null }, { - "name": "events_by_pk", - "description": "fetch data from the table: \"events\" using primary key columns", + "name": "explorations_by_pk", + "description": "fetch data from the table: \"explorations\" using primary key columns", "args": [ { "name": "id", @@ -64153,15 +73193,15 @@ ], "type": { "kind": "OBJECT", - "name": "events", + "name": "explorations", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "events_stream", - "description": "fetch data from the table in a streaming manner: \"events\"", + "name": "explorations_stream", + "description": "fetch data from the table in a streaming manner: \"explorations\"", "args": [ { "name": "batch_size", @@ -64188,7 +73228,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_input", + "name": "explorations_stream_cursor_input", "ofType": null } } @@ -64200,7 +73240,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "events_bool_exp", + "name": "explorations_bool_exp", "ofType": null }, "defaultValue": null @@ -64217,7 +73257,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "events", + "name": "explorations", "ofType": null } } @@ -64227,7 +73267,7 @@ "deprecationReason": null }, { - "name": "explorations", + "name": "member_credentials", "description": "An array relationship", "args": [ { @@ -64241,7 +73281,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "explorations_select_column", + "name": "member_credentials_select_column", "ofType": null } } @@ -64279,7 +73319,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "name": "member_credentials_order_by", "ofType": null } } @@ -64291,7 +73331,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "member_credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -64308,7 +73348,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations", + "name": "member_credentials", "ofType": null } } @@ -64318,7 +73358,7 @@ "deprecationReason": null }, { - "name": "explorations_aggregate", + "name": "member_credentials_aggregate", "description": "An aggregate relationship", "args": [ { @@ -64332,7 +73372,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "explorations_select_column", + "name": "member_credentials_select_column", "ofType": null } } @@ -64370,7 +73410,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "explorations_order_by", + "name": "member_credentials_order_by", "ofType": null } } @@ -64382,7 +73422,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "member_credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -64393,7 +73433,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations_aggregate", + "name": "member_credentials_aggregate", "ofType": null } }, @@ -64401,8 +73441,8 @@ "deprecationReason": null }, { - "name": "explorations_by_pk", - "description": "fetch data from the table: \"explorations\" using primary key columns", + "name": "member_credentials_by_pk", + "description": "fetch data from the table: \"member_credentials\" using primary key columns", "args": [ { "name": "id", @@ -64421,15 +73461,15 @@ ], "type": { "kind": "OBJECT", - "name": "explorations", + "name": "member_credentials", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "explorations_stream", - "description": "fetch data from the table in a streaming manner: \"explorations\"", + "name": "member_credentials_stream", + "description": "fetch data from the table in a streaming manner: \"member_credentials\"", "args": [ { "name": "batch_size", @@ -64456,7 +73496,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_input", + "name": "member_credentials_stream_cursor_input", "ofType": null } } @@ -64468,7 +73508,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", + "name": "member_credentials_bool_exp", "ofType": null }, "defaultValue": null @@ -64485,7 +73525,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "explorations", + "name": "member_credentials", "ofType": null } } @@ -71729,6 +80769,180 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "credentials", + "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": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credentials_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": "credentials_select_column", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "credentials_order_by", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "credentials_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "dataschemas", "description": "An array relationship", @@ -73420,6 +82634,26 @@ }, "defaultValue": null }, + { + "name": "credentials", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_bool_exp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "credentials_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null + }, { "name": "dataschemas", "description": null, @@ -73688,6 +82922,16 @@ }, "defaultValue": null }, + { + "name": "credentials", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null + }, { "name": "dataschemas", "description": null, @@ -74144,6 +83388,16 @@ }, "defaultValue": null }, + { + "name": "credentials_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "credentials_aggregate_order_by", + "ofType": null + }, + "defaultValue": null + }, { "name": "dataschemas_aggregate", "description": null, diff --git a/src/hooks/useOnboarding.ts b/src/hooks/useOnboarding.ts index 02633654..49b1cd5a 100644 --- a/src/hooks/useOnboarding.ts +++ b/src/hooks/useOnboarding.ts @@ -208,6 +208,16 @@ export default ({ editId }: Props) => { }, ], }, + credentials: { + data: [ + { + user_id: currentUser.id, + datasource_id: dataSourceId, + username: apiConfig.db_username, + password: apiConfig.password, + }, + ], + }, sql_credentials: { data: [credentialParams], }, diff --git a/src/hooks/useUserData.ts b/src/hooks/useUserData.ts index b952d4b0..6a49bc2a 100644 --- a/src/hooks/useUserData.ts +++ b/src/hooks/useUserData.ts @@ -3,6 +3,7 @@ import { useEffect } from "react"; import type { DataSourceCredentials } from "@/components/CredentialsTable"; import type { + Credentials, CurrentUserQuery, Datasources, Members as MembersType, @@ -28,6 +29,7 @@ import { Roles } from "@/types/team"; import type { TeamData, User } from "@/types/user"; import { SIGNIN } from "@/utils/constants/paths"; import formatTime from "@/utils/helpers/formatTime"; +import type { CredentialsInfo } from "@/types/credential"; const DEFAULT_TEAM_NAME = "Default team"; @@ -52,6 +54,33 @@ const prepareMembersData = (rawMembers: MembersType[]) => { return members; }; +export const prepareCredentialsData = ( + dataSources: DataSourceInfo[] +): CredentialsInfo[] => { + if (!dataSources?.length) return []; + + const credentials: CredentialsInfo[] = []; + (dataSources || []).forEach((ds) => { + credentials.push( + ...(ds.credentials || []).map((c) => ({ + id: c.id, + accessType: c.access_type, + username: c.username, + createdAt: c.created_at, + updatedAt: c.updated_at, + user: { + id: c.user.id, + displayName: c.user.display_name || "", + }, + members: (c.member_credentials || []).map((m) => m.member_id), + dataSource: ds, + })) + ); + }); + + return credentials; +}; + export const prepareDataSourceData = (data: Datasources[] | undefined) => { if (!data?.length) return []; @@ -60,11 +89,12 @@ export const prepareDataSourceData = (data: Datasources[] | undefined) => { ({ id: d?.id, name: d.name, - dbParams: d.db_params_computed, + dbParams: d.db_params, createdAt: d.created_at, updatedAt: d.updated_at, type: dbTiles.find((tile) => tile.value === d.db_type.toLowerCase()), branches: d.branches, + credentials: d.credentials, } as unknown as DataSourceInfo) ); }; @@ -155,7 +185,7 @@ const prepareUserData = ( }; }; -const prepareCredentialsData = ( +const prepareSqlCredentialsData = ( data: Datasources[] ): DataSourceCredentials[] => { if (!data?.length) return []; @@ -189,9 +219,10 @@ const prepareTeamData = ( const alerts = prepareAlertData(rawTeamData?.alerts as RawAlert[]); const reports = prepareReportData(rawTeamData?.reports as RawReport[]); const members = prepareMembersData(rawTeamData?.members as MembersType[]); - const sqlCredentials = prepareCredentialsData( + const sqlCredentials = prepareSqlCredentialsData( rawTeamData?.datasources as Datasources[] ); + const credentials = prepareCredentialsData(dataSources); return { dataSources: (dataSources || []).sort( @@ -205,6 +236,7 @@ const prepareTeamData = ( sqlCredentials: (sqlCredentials || []).sort( (a, b) => Date.parse(b.createdAt) - Date.parse(a.createdAt) ), + credentials, }; }; diff --git a/src/layouts/SettingsLayout/index.tsx b/src/layouts/SettingsLayout/index.tsx index f157df64..e7f46cb6 100644 --- a/src/layouts/SettingsLayout/index.tsx +++ b/src/layouts/SettingsLayout/index.tsx @@ -9,6 +9,7 @@ import { Roles } from "@/types/team"; import AlertsIcon from "@/assets/alert-logs.svg"; import DataSourceIcon from "@/assets/data-source.svg"; +import CredentialsIcon from "@/assets/credentials.svg"; import MembersIcon from "@/assets/members.svg"; import PersonalInfoIcon from "@/assets/personal-info.svg"; import ReportsIcon from "@/assets/report-logs.svg"; @@ -44,6 +45,12 @@ const SettingsLayout: React.FC = ({ href: "/settings/sources", icon: , }, + { + key: "credentials", + label: t("common:words.credentials"), + href: "/settings/credentials", + icon: , + }, { key: "sql-api", label: t("common:words.sql_api"), diff --git a/src/mocks/credentials.ts b/src/mocks/credentials.ts new file mode 100644 index 00000000..4fa0242c --- /dev/null +++ b/src/mocks/credentials.ts @@ -0,0 +1,4 @@ +import { Access_Types_Enum } from "@/graphql/generated"; +import type { CredentialsInfo } from "@/types/credential"; + +export const credentialsMock: CredentialsInfo[] = []; diff --git a/src/mocks/dataSources.tsx b/src/mocks/dataSources.tsx index f51641ee..8666300d 100644 --- a/src/mocks/dataSources.tsx +++ b/src/mocks/dataSources.tsx @@ -123,7 +123,7 @@ export const dbTiles = [ { name: "MySQL", value: "mysql", icon: }, { name: "Mongo DB", value: "mongobi", icon: }, { name: "ClickHouse", value: "clickhouse", icon: }, - { name: "Redshift", value: "reshift", icon: }, + { name: "Redshift", value: "redshift", icon: }, { name: "BigQuery", value: "bigquery", icon: }, { name: "Trino", value: "trino", icon: }, { name: "MSSQL", value: "mssql", icon: }, diff --git a/src/pages/Credentials/index.module.less b/src/pages/Credentials/index.module.less new file mode 100644 index 00000000..e894e2b7 --- /dev/null +++ b/src/pages/Credentials/index.module.less @@ -0,0 +1,13 @@ +.container { + padding: 24px; +} + +.wrapper { + display: flex; + width: 100%; +} + +.body { + width: 100%; + padding: 0 16px; +} \ No newline at end of file diff --git a/src/pages/Credentials/index.stories.tsx b/src/pages/Credentials/index.stories.tsx new file mode 100644 index 00000000..c3b18851 --- /dev/null +++ b/src/pages/Credentials/index.stories.tsx @@ -0,0 +1,22 @@ +import RootLayout from "@/layouts/RootLayout"; +import { credentialsMock } from "@/mocks/credentials"; + +import { CredentialsPage } from "."; + +import type { StoryFn, Meta } from "@storybook/react"; + +export default { + title: "Pages/Settings/Credentials", + component: CredentialsPage, +} as Meta; + +const Template: StoryFn = (args) => ( + + + +); + +export const Default = Template.bind({}); +Default.args = { + credentials: credentialsMock, +}; diff --git a/src/pages/Credentials/index.tsx b/src/pages/Credentials/index.tsx new file mode 100644 index 00000000..947bdd62 --- /dev/null +++ b/src/pages/Credentials/index.tsx @@ -0,0 +1,298 @@ +import { useCallback } from "react"; +import { Spin, Space, Row, Col, Typography, message } from "antd"; +import { useTranslation } from "react-i18next"; +import { useParams } from "@vitjs/runtime"; + +import useLocation from "@/hooks/useLocation"; +import CredentialsForm from "@/components/CredentialsForm"; +import CredentialCard from "@/components/CredentialCard"; +import { CREDENTIALS } from "@/utils/constants/paths"; +import { + Access_Types_Enum, + useDeleteCredentialMutation, + useInsertCredentialMutation, + useUpdateCredentialsMutation, +} from "@/graphql/generated"; +import useCheckResponse from "@/hooks/useCheckResponse"; +import PageHeader from "@/components/PageHeader"; +import Modal from "@/components/Modal"; +import type { CredentialsFormType, CredentialsInfo } from "@/types/credential"; +import type { DataSourceInfo } from "@/types/dataSource"; +import type { Member } from "@/types/team"; +import CurrentUserStore from "@/stores/CurrentUserStore"; +import NoCredentials from "@/components/NoCredentials"; + +import styles from "./index.module.less"; + +const { Title } = Typography; + +interface CredentialsProps { + allMembers?: Member[]; + initialValue?: CredentialsFormType; + dataSources?: DataSourceInfo[]; + credentials?: CredentialsInfo[]; + loading?: boolean; + isOpen?: boolean; + onDelete?: (id: string) => void; + onEdit?: (id: string) => void; + onCreate?: () => void; + onClose?: () => void; + onOpen?: () => void; + onSubmit?: (data: CredentialsFormType) => void; +} + +export const CredentialsPage: React.FC = ({ + initialValue, + allMembers, + dataSources, + credentials, + isOpen, + loading, + onDelete = () => {}, + onEdit = () => {}, + onCreate = () => {}, + onClose = () => {}, + onSubmit = () => {}, +}) => { + const { t } = useTranslation(["settings", "common"]); + + return ( + <> + + {!credentials?.length && } + + {!!credentials?.length && ( + + +
+ + {credentials?.map((c) => ( + + + + ))} + +
+
+ )} +
+ + +
+ + {t("settings:credentials.title")} + +
+ +
+ + ); +}; + +const CredentialsPageWrapper = () => { + const { t } = useTranslation(["settings", "common"]); + const [, setLocation] = useLocation(); + const { currentUser, teamData, currentTeam } = CurrentUserStore(); + const { editId } = useParams(); + const isNew = editId === "new"; + const isMember = currentTeam?.role === "member"; + + const [deleteMutation, execDeleteMutation] = useDeleteCredentialMutation(); + const [createMutation, execCreateMutation] = useInsertCredentialMutation(); + const [updateMutation, execUpdateMutation] = useUpdateCredentialsMutation(); + + const onDelete = useCallback( + (id: string) => { + execDeleteMutation({ id }); + }, + [execDeleteMutation] + ); + + const onEdit = useCallback( + (id: string) => { + setLocation(`${CREDENTIALS}/${id}`); + }, + [setLocation] + ); + + const onCreate = useCallback(() => { + setLocation(`${CREDENTIALS}/new`); + }, [setLocation]); + + const onClose = useCallback(() => { + setLocation(CREDENTIALS); + }, [setLocation]); + + useCheckResponse( + createMutation, + (_, error) => { + if (error) { + if ( + error.message.includes( + "member_credentials_datasource_id_member_id_key" + ) + ) { + if (isMember) { + message.error(t("settings:credentials.member_has_access")); + } else { + message.error(t("settings:credentials.member_already_used")); + } + } else { + message.error(error.message); + } + } else { + message.success(t("settings:credentials.created")); + onClose(); + } + }, + { + showMessage: false, + } + ); + + useCheckResponse( + updateMutation, + (_, error) => { + if (error) { + if ( + error.message.includes( + "member_credentials_datasource_id_member_id_key" + ) + ) { + message.error(t("settings:credentials.member_already_used")); + } else { + message.error(error.message); + } + } else { + message.success(t("settings:credentials.updated")); + onClose(); + } + }, + { + showMessage: false, + } + ); + + useCheckResponse( + deleteMutation, + (data, error) => { + if (error) { + message.error(error.message); + return; + } + + if (!data?.delete_credentials_by_pk) { + message.error(t("settings:credentials.no_rights")); + return; + } + + message.success(t("settings:credentials.deleted")); + }, + { + showMessage: false, + } + ); + + const onSubmit = async (data: CredentialsFormType) => { + const payload = { + access_type: data.accessType, + username: data.username, + password: data.password, + datasource_id: data.dataSourceId, + }; + + let member_credentials = []; + if (!isMember) { + if (data.accessType === Access_Types_Enum.Shared) { + member_credentials = (teamData?.members || []).map((m) => ({ + member_id: m.id, + credential_id: data.id, + datasource_id: data.dataSourceId, + })); + } else { + member_credentials = (data.members || []).map((m) => ({ + member_id: m, + credential_id: data.id, + datasource_id: data.dataSourceId, + })); + } + } else { + payload.access_type = Access_Types_Enum.SpecificUsers; + member_credentials = [ + { + member_id: currentTeam?.memberId, + credential_id: data.id, + datasource_id: data.dataSourceId, + }, + ]; + } + + if (isNew) { + await execCreateMutation({ + object: { + ...payload, + user_id: currentUser?.id, + member_credentials: { + data: member_credentials, + }, + }, + }); + } else { + await execUpdateMutation({ + id: editId, + object: { + ...payload, + }, + members: member_credentials, + }); + } + }; + + const initialValue = useMemo(() => { + if (!isNew && editId && teamData?.credentials?.length) { + const curCredential = teamData.credentials.find((c) => c.id === editId); + + if (curCredential) { + return { + ...curCredential, + userId: curCredential.user.id, + dataSourceId: curCredential.dataSource.id, + } as unknown as CredentialsFormType; + } + + onClose(); + } + }, [teamData?.credentials, isNew, editId, onClose]); + + return ( + + ); +}; + +export default CredentialsPageWrapper; diff --git a/src/pages/SqlApi/index.tsx b/src/pages/SqlApi/index.tsx index 9d6dc2ed..3fe63a22 100644 --- a/src/pages/SqlApi/index.tsx +++ b/src/pages/SqlApi/index.tsx @@ -11,10 +11,10 @@ import ApiSetup, { } from "@/components/ApiSetup"; import type { DataSourceCredentials } from "@/components/CredentialsTable"; import Modal from "@/components/Modal"; -import NoCredentials from "@/components/NoCredentials"; +import NoCredentials from "@/components/NoSqlCredentials"; import PageHeader from "@/components/PageHeader"; import { - useDeleteCredentialsMutation, + useDeleteSqlCredentialsMutation, useInsertSqlCredentialsMutation, } from "@/graphql/generated"; import useCheckResponse from "@/hooks/useCheckResponse"; @@ -222,7 +222,8 @@ const SqlApiWrapper = () => { const [createMutation, execCreateMutation] = useInsertSqlCredentialsMutation(); - const [deleteMutation, execDeleteMutation] = useDeleteCredentialsMutation(); + const [deleteMutation, execDeleteMutation] = + useDeleteSqlCredentialsMutation(); const onClose = () => { setLocation(basePath); diff --git a/src/stores/CurrentUserStore.ts b/src/stores/CurrentUserStore.ts index 321326cf..2130adb1 100644 --- a/src/stores/CurrentUserStore.ts +++ b/src/stores/CurrentUserStore.ts @@ -1,3 +1,4 @@ +import { message } from "antd"; import { create } from "zustand"; import type { User, TeamData } from "@/types/user"; @@ -53,6 +54,16 @@ const CurrentUserStore = create((set, get) => ({ localStorage.setItem(LAST_TEAM_ID_KEY, id); } + const currentMember = team?.members?.find( + (m) => m.user_id === state?.currentUser?.id + ); + + if (!currentMember) { + message.error("Something went wrong. Member not found."); + return; + } + + team.memberId = currentMember.id; set({ currentTeam: team }); }, })); diff --git a/src/types/credential.ts b/src/types/credential.ts new file mode 100644 index 00000000..4e534e60 --- /dev/null +++ b/src/types/credential.ts @@ -0,0 +1,27 @@ +import type { Access_Types_Enum } from "@/graphql/generated"; + +import type { DataSourceInfo } from "./dataSource"; +export interface CredentialsInfo { + id: string; + accessType: Access_Types_Enum; + username: string; + updatedAt: string; + createdAt: string; + members: string[]; + user: { + id: string; + displayName: string; + }; + dataSource: DataSourceInfo; +} + +export interface CredentialsFormType { + id?: string; + name: string; + userId: string; + accessType: Access_Types_Enum; + members: string[]; + username: string; + password: string; + dataSourceId: string; +} diff --git a/src/types/dataSource.ts b/src/types/dataSource.ts index 736c0b9a..1895b7d4 100644 --- a/src/types/dataSource.ts +++ b/src/types/dataSource.ts @@ -1,4 +1,4 @@ -import type { Branch_Statuses_Enum } from "@/graphql/generated"; +import type { Branch_Statuses_Enum, Credentials } from "@/graphql/generated"; import type { ReactNode } from "react"; @@ -72,6 +72,7 @@ export interface DataSourceInfo { updatedAt: string; createdAt: string; branches: Branch[]; + credentials: Credentials[]; } export interface CubeOption { diff --git a/src/types/team.ts b/src/types/team.ts index 7cd805bf..67bd3109 100644 --- a/src/types/team.ts +++ b/src/types/team.ts @@ -39,6 +39,7 @@ export interface Team { id: string; name: string; role: Roles; + memberId: string; creatorEmail: string; members: Member[]; createdAt: string; diff --git a/src/types/user.ts b/src/types/user.ts index cce482f0..d9bf5a85 100644 --- a/src/types/user.ts +++ b/src/types/user.ts @@ -4,6 +4,7 @@ import type { DataSourceInfo } from "./dataSource"; import type { Team, Member } from "./team"; import type { Alert } from "./alert"; import type { Report } from "./report"; +import type { CredentialsInfo } from "./credential"; export interface User { id: string; @@ -29,4 +30,5 @@ export interface TeamData { reports: Report[]; members: Member[]; sqlCredentials: DataSourceCredentials[]; + credentials: CredentialsInfo[]; } diff --git a/src/utils/constants/paths.ts b/src/utils/constants/paths.ts index 769639a3..c64ea1e5 100644 --- a/src/utils/constants/paths.ts +++ b/src/utils/constants/paths.ts @@ -16,6 +16,7 @@ export const MEMBERS = `${SETTINGS}/members`; export const SQL_API = `${SETTINGS}/sql-api`; export const ROLES = `${SETTINGS}/roles`; export const INFO = `${SETTINGS}/info`; +export const CREDENTIALS = `${SETTINGS}/credentials`; export const DOCS = "/docs"; export const MODELS = "/models";