diff --git a/package.json b/package.json index 59f0d26..51affb7 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "@date-io/date-fns": "2.15.0", "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", - "@iteria-app/component-templates": "1.6.1", + "@iteria-app/component-templates": "1.7.0", "@iteria-app/graphql-lowcode": "0.5.0", "@mui/icons-material": "^5.2.5", "@mui/lab": "^5.0.0-alpha.64", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 21dd9d0..7e8597c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,7 +9,7 @@ specifiers: '@graphql-codegen/typescript': ^2.2.2 '@graphql-codegen/typescript-operations': ^2.1.5 '@graphql-codegen/typescript-urql': ^3.2.0 - '@iteria-app/component-templates': 1.6.1 + '@iteria-app/component-templates': 1.7.0 '@iteria-app/graphql-lowcode': 0.5.0 '@iteria-app/vite-plugin-lowcode': 0.2.5 '@mui/icons-material': ^5.2.5 @@ -54,7 +54,7 @@ dependencies: '@date-io/date-fns': 2.15.0 '@emotion/react': 11.9.0_wchdyfjsjs7jbjx7r7guc3etfq '@emotion/styled': 11.8.1_qqzyodsgsghzz6vpxsrxbwelfm - '@iteria-app/component-templates': 1.6.1_6yblogtuqdyivo7jlmlbr5fwmq + '@iteria-app/component-templates': 1.7.0_6yblogtuqdyivo7jlmlbr5fwmq '@iteria-app/graphql-lowcode': 0.5.0_rt7ttqjigf4c7o74hk6ylwb7i4 '@mui/icons-material': 5.2.5_6rr654k5lhpvvj3q2brhhgvcpm '@mui/lab': 5.0.0-alpha.64_36tcmsjkij34qtj6ig5vagcjo4 @@ -1958,8 +1958,8 @@ packages: resolution: {integrity: sha512-DzxIW8SRCLCZ/daD3mmWHw/R5HFtoxvrvGLNdodEF911Vce/v4ESmxzyHDD+hixfSR9vCfryeMk54Z4Fozs6tg==} dev: false - /@iteria-app/component-templates/1.6.1_6yblogtuqdyivo7jlmlbr5fwmq: - resolution: {integrity: sha512-bF/uVMZwOEVgXPvcZ+4KtrrcxeywBlzseWfnK5hDUNdsj2C4Kg6BPmktFfzyEiQ8wFSQODX9fv53tppQfi65Hw==} + /@iteria-app/component-templates/1.7.0_6yblogtuqdyivo7jlmlbr5fwmq: + resolution: {integrity: sha512-izlvVpXebq3wEAPLgwYczY4VZ08oclZbruGifbfDY6HS4KedwZzzMZb+QBl4Ie7HQBA/NzOfPLuuDtI/suzoFA==} peerDependencies: '@mui/icons-material': ^5.2.5 '@mui/material': ^5.2.7 diff --git a/public/Sources.tar.gz b/public/Sources.tar.gz index 90ff5f6..6e5bb10 100644 Binary files a/public/Sources.tar.gz and b/public/Sources.tar.gz differ diff --git a/src/generated/graphql.ts b/src/generated/graphql.ts index 21554a2..aef174a 100644 --- a/src/generated/graphql.ts +++ b/src/generated/graphql.ts @@ -137,6 +137,120 @@ export type String_Comparison_Exp = { _similar?: InputMaybe; }; +/** table for int IDs testing */ +export type Accounts = { + __typename?: 'accounts'; + id: Scalars['Int']; + name: Scalars['String']; + password: Scalars['String']; +}; + +/** Boolean expression to filter rows from the table "accounts". All fields are combined with a logical 'AND'. */ +export type Accounts_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + id?: InputMaybe; + name?: InputMaybe; + password?: InputMaybe; +}; + +/** unique or primary key constraints on table "accounts" */ +export enum Accounts_Constraint { + /** unique or primary key constraint on columns "id" */ + AccountsPkey = 'accounts_pkey' +} + +/** input type for incrementing numeric columns in table "accounts" */ +export type Accounts_Inc_Input = { + id?: InputMaybe; +}; + +/** input type for inserting data into table "accounts" */ +export type Accounts_Insert_Input = { + id?: InputMaybe; + name?: InputMaybe; + password?: InputMaybe; +}; + +/** response of any mutation on the table "accounts" */ +export type Accounts_Mutation_Response = { + __typename?: 'accounts_mutation_response'; + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int']; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "accounts" */ +export type Accounts_On_Conflict = { + constraint: Accounts_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "accounts". */ +export type Accounts_Order_By = { + id?: InputMaybe; + name?: InputMaybe; + password?: InputMaybe; +}; + +/** primary key columns input for table: accounts */ +export type Accounts_Pk_Columns_Input = { + id: Scalars['Int']; +}; + +/** select columns of table "accounts" */ +export enum Accounts_Select_Column { + /** column name */ + Id = 'id', + /** column name */ + Name = 'name', + /** column name */ + Password = 'password' +} + +/** input type for updating data in table "accounts" */ +export type Accounts_Set_Input = { + id?: InputMaybe; + name?: InputMaybe; + password?: InputMaybe; +}; + +/** Streaming cursor of the table "accounts" */ +export type Accounts_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Accounts_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Accounts_Stream_Cursor_Value_Input = { + id?: InputMaybe; + name?: InputMaybe; + password?: InputMaybe; +}; + +/** update columns of table "accounts" */ +export enum Accounts_Update_Column { + /** column name */ + Id = 'id', + /** column name */ + Name = 'name', + /** column name */ + Password = 'password' +} + +export type Accounts_Updates = { + /** increments the numeric columns with given value of the filtered values */ + _inc?: InputMaybe; + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + where: Accounts_Bool_Exp; +}; + /** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ export type Bigint_Comparison_Exp = { _eq?: InputMaybe; @@ -1846,6 +1960,153 @@ export type Enum_Test_Types_Stream_Cursor_Value_Input = { int_enum?: InputMaybe; }; +/** columns and relationships of "events" */ +export type Events = { + __typename?: 'events'; + description?: Maybe; + endAt: Scalars['timestamptz']; + id: Scalars['uuid']; + location?: Maybe; + name: Scalars['String']; + notification?: Maybe; + startAt: Scalars['timestamptz']; +}; + +/** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */ +export type Events_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + description?: InputMaybe; + endAt?: InputMaybe; + id?: InputMaybe; + location?: InputMaybe; + name?: InputMaybe; + notification?: InputMaybe; + startAt?: InputMaybe; +}; + +/** unique or primary key constraints on table "events" */ +export enum Events_Constraint { + /** unique or primary key constraint on columns "id" */ + EventsPkey = 'events_pkey' +} + +/** input type for inserting data into table "events" */ +export type Events_Insert_Input = { + description?: InputMaybe; + endAt?: InputMaybe; + id?: InputMaybe; + location?: InputMaybe; + name?: InputMaybe; + notification?: InputMaybe; + startAt?: InputMaybe; +}; + +/** response of any mutation on the table "events" */ +export type Events_Mutation_Response = { + __typename?: 'events_mutation_response'; + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int']; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "events" */ +export type Events_On_Conflict = { + constraint: Events_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "events". */ +export type Events_Order_By = { + description?: InputMaybe; + endAt?: InputMaybe; + id?: InputMaybe; + location?: InputMaybe; + name?: InputMaybe; + notification?: InputMaybe; + startAt?: InputMaybe; +}; + +/** primary key columns input for table: events */ +export type Events_Pk_Columns_Input = { + id: Scalars['uuid']; +}; + +/** select columns of table "events" */ +export enum Events_Select_Column { + /** column name */ + Description = 'description', + /** column name */ + EndAt = 'endAt', + /** column name */ + Id = 'id', + /** column name */ + Location = 'location', + /** column name */ + Name = 'name', + /** column name */ + Notification = 'notification', + /** column name */ + StartAt = 'startAt' +} + +/** input type for updating data in table "events" */ +export type Events_Set_Input = { + description?: InputMaybe; + endAt?: InputMaybe; + id?: InputMaybe; + location?: InputMaybe; + name?: InputMaybe; + notification?: InputMaybe; + startAt?: InputMaybe; +}; + +/** Streaming cursor of the table "events" */ +export type Events_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Events_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Events_Stream_Cursor_Value_Input = { + description?: InputMaybe; + endAt?: InputMaybe; + id?: InputMaybe; + location?: InputMaybe; + name?: InputMaybe; + notification?: InputMaybe; + startAt?: InputMaybe; +}; + +/** update columns of table "events" */ +export enum Events_Update_Column { + /** column name */ + Description = 'description', + /** column name */ + EndAt = 'endAt', + /** column name */ + Id = 'id', + /** column name */ + Location = 'location', + /** column name */ + Name = 'name', + /** column name */ + Notification = 'notification', + /** column name */ + StartAt = 'startAt' +} + +export type Events_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + where: Events_Bool_Exp; +}; + /** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ export type Float8_Comparison_Exp = { _eq?: InputMaybe; @@ -2115,6 +2376,58 @@ export type Mutation_Root = { abortMultipartUpload?: Maybe; completeMultipartUpload?: Maybe; createMultipartUpload?: Maybe; + /** delete single row from the table: "bus_stops" */ + deleteBusStop?: Maybe; + /** delete single row from the table: "bus_stop_departures" */ + deleteBusStopDeparture?: Maybe; + /** delete data from the table: "bus_stop_departures" */ + deleteBusStopDepartures?: Maybe; + /** delete data from the table: "bus_stops" */ + deleteBusStops?: Maybe; + /** delete single row from the table: "customers" */ + deleteCustomer?: Maybe; + /** delete data from the table: "customers" */ + deleteCustomers?: Maybe; + /** delete single row from the table: "orders" */ + deleteOrder?: Maybe; + /** delete data from the table: "orders" */ + deleteOrders?: Maybe; + /** delete single row from the table: "organizations" */ + deleteOrganization?: Maybe; + /** delete data from the table: "organizations" */ + deleteOrganizations?: Maybe; + /** delete single row from the table: "products" */ + deleteProduct?: Maybe; + /** delete data from the table: "products" */ + deleteProducts?: Maybe; + /** delete data from the table: "accounts" */ + delete_accounts?: Maybe; + /** delete single row from the table: "accounts" */ + delete_accounts_by_pk?: Maybe; + /** delete data from the table: "desh" */ + delete_desh?: Maybe; + /** delete single row from the table: "desh" */ + delete_desh_by_pk?: Maybe; + /** delete data from the table: "desh_products" */ + delete_desh_products?: Maybe; + /** delete single row from the table: "desh_products" */ + delete_desh_products_by_pk?: Maybe; + /** delete data from the table: "desh_sales" */ + delete_desh_sales?: Maybe; + /** delete single row from the table: "desh_sales" */ + delete_desh_sales_by_pk?: Maybe; + /** delete data from the table: "desh_traffic" */ + delete_desh_traffic?: Maybe; + /** delete single row from the table: "desh_traffic" */ + delete_desh_traffic_by_pk?: Maybe; + /** delete data from the table: "map_points" */ + delete_mapPoints?: Maybe; + /** delete single row from the table: "map_points" */ + delete_mapPoints_by_pk?: Maybe; + /** delete data from the table: "types_test" */ + delete_types_test?: Maybe; + /** delete single row from the table: "types_test" */ + delete_types_test_by_pk?: Maybe; /** insert a single row into the table: "bus_stops" */ insertBusStop?: Maybe; /** insert a single row into the table: "bus_stop_departures" */ @@ -2127,6 +2440,10 @@ export type Mutation_Root = { insertCustomer?: Maybe; /** insert data into the table: "customers" */ insertCustomers?: Maybe; + /** insert a single row into the table: "events" */ + insertEvent?: Maybe; + /** insert data into the table: "events" */ + insertEvents?: Maybe; /** insert a single row into the table: "orders" */ insertOrder?: Maybe; /** insert a single row into the table: "order_items" */ @@ -2143,6 +2460,14 @@ export type Mutation_Root = { insertProduct?: Maybe; /** insert data into the table: "products" */ insertProducts?: Maybe; + /** insert a single row into the table: "test_x" */ + insertTestX?: Maybe; + /** insert data into the table: "test_x" */ + insertTestXes?: Maybe; + /** insert data into the table: "accounts" */ + insert_accounts?: Maybe; + /** insert a single row into the table: "accounts" */ + insert_accounts_one?: Maybe; /** insert data into the table: "desh" */ insert_desh?: Maybe; /** insert a single row into the table: "desh" */ @@ -2179,6 +2504,10 @@ export type Mutation_Root = { updateCustomer?: Maybe; /** update data of the table: "customers" */ updateCustomers?: Maybe; + /** update single row of the table: "events" */ + updateEvent?: Maybe; + /** update data of the table: "events" */ + updateEvents?: Maybe; /** update single row of the table: "orders" */ updateOrder?: Maybe; /** update single row of the table: "order_items" */ @@ -2195,6 +2524,16 @@ export type Mutation_Root = { updateProduct?: Maybe; /** update data of the table: "products" */ updateProducts?: Maybe; + /** update single row of the table: "test_x" */ + updateTestX?: Maybe; + /** update data of the table: "test_x" */ + updateTestXes?: Maybe; + /** update data of the table: "accounts" */ + update_accounts?: Maybe; + /** update single row of the table: "accounts" */ + update_accounts_by_pk?: Maybe; + /** update multiples rows of table: "accounts" */ + update_accounts_many?: Maybe>>; /** update multiples rows of table: "bus_stop_departures" */ update_busStopDepartures_many?: Maybe>>; /** update multiples rows of table: "bus_stops" */ @@ -2225,6 +2564,8 @@ export type Mutation_Root = { update_desh_traffic_by_pk?: Maybe; /** update multiples rows of table: "desh_traffic" */ update_desh_traffic_many?: Maybe>>; + /** update multiples rows of table: "events" */ + update_events_many?: Maybe>>; /** update data of the table: "map_points" */ update_mapPoints?: Maybe; /** update single row of the table: "map_points" */ @@ -2239,6 +2580,8 @@ export type Mutation_Root = { update_organizations_many?: Maybe>>; /** update multiples rows of table: "products" */ update_products_many?: Maybe>>; + /** update multiples rows of table: "test_x" */ + update_testX_many?: Maybe>>; /** update data of the table: "types_test" */ update_types_test?: Maybe; /** update single row of the table: "types_test" */ @@ -2272,212 +2615,410 @@ export type Mutation_RootCreateMultipartUploadArgs = { /** mutation root */ -export type Mutation_RootInsertBusStopArgs = { - object: BusStops_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteBusStopArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsertBusStopDepartureArgs = { - object: BusStopDepartures_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteBusStopDepartureArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsertBusStopDeparturesArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteBusStopDeparturesArgs = { + where: BusStopDepartures_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertBusStopsArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteBusStopsArgs = { + where: BusStops_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertCustomerArgs = { - object: Customers_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteCustomerArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsertCustomersArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteCustomersArgs = { + where: Customers_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertOrderArgs = { - object: Orders_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteOrderArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsertOrderitemArgs = { - object: OrderItems_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteOrdersArgs = { + where: Orders_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertOrderitemsArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteOrganizationArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsertOrdersArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteOrganizationsArgs = { + where: Organizations_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertOrganizationArgs = { - object: Organizations_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteProductArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsertOrganizationsArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDeleteProductsArgs = { + where: Products_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertProductArgs = { - object: Products_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_AccountsArgs = { + where: Accounts_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsertProductsArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Accounts_By_PkArgs = { + id: Scalars['Int']; }; /** mutation root */ -export type Mutation_RootInsert_DeshArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_DeshArgs = { + where: Desh_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsert_Desh_OneArgs = { - object: Desh_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_By_PkArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsert_Desh_ProductsArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_ProductsArgs = { + where: Desh_Products_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsert_Desh_Products_OneArgs = { - object: Desh_Products_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_Products_By_PkArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsert_Desh_SalesArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_SalesArgs = { + where: Desh_Sales_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsert_Desh_Sales_OneArgs = { - object: Desh_Sales_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_Sales_By_PkArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsert_Desh_TrafficArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_TrafficArgs = { + where: Desh_Traffic_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsert_Desh_Traffic_OneArgs = { - object: Desh_Traffic_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Desh_Traffic_By_PkArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsert_MapPointsArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_MapPointsArgs = { + where: MapPoints_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsert_MapPoints_OneArgs = { - object: MapPoints_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_MapPoints_By_PkArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootInsert_Types_TestArgs = { - objects: Array; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Types_TestArgs = { + where: Types_Test_Bool_Exp; }; /** mutation root */ -export type Mutation_RootInsert_Types_Test_OneArgs = { - object: Types_Test_Insert_Input; - on_conflict?: InputMaybe; +export type Mutation_RootDelete_Types_Test_By_PkArgs = { + id: Scalars['uuid']; }; /** mutation root */ -export type Mutation_RootUpdateBusStopArgs = { - _inc?: InputMaybe; - _set?: InputMaybe; - pk_columns: BusStops_Pk_Columns_Input; +export type Mutation_RootInsertBusStopArgs = { + object: BusStops_Insert_Input; + on_conflict?: InputMaybe; }; /** mutation root */ -export type Mutation_RootUpdateBusStopDepartureArgs = { - _set?: InputMaybe; - pk_columns: BusStopDepartures_Pk_Columns_Input; +export type Mutation_RootInsertBusStopDepartureArgs = { + object: BusStopDepartures_Insert_Input; + on_conflict?: InputMaybe; }; /** mutation root */ -export type Mutation_RootUpdateBusStopDeparturesArgs = { - _set?: InputMaybe; - where: BusStopDepartures_Bool_Exp; +export type Mutation_RootInsertBusStopDeparturesArgs = { + objects: Array; + on_conflict?: InputMaybe; }; /** mutation root */ -export type Mutation_RootUpdateBusStopsArgs = { - _inc?: InputMaybe; +export type Mutation_RootInsertBusStopsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertCustomerArgs = { + object: Customers_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertCustomersArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertEventArgs = { + object: Events_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertEventsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertOrderArgs = { + object: Orders_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertOrderitemArgs = { + object: OrderItems_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertOrderitemsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertOrdersArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertOrganizationArgs = { + object: Organizations_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertOrganizationsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertProductArgs = { + object: Products_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertProductsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertTestXArgs = { + object: TestX_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsertTestXesArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_AccountsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Accounts_OneArgs = { + object: Accounts_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_DeshArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_OneArgs = { + object: Desh_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_ProductsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_Products_OneArgs = { + object: Desh_Products_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_SalesArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_Sales_OneArgs = { + object: Desh_Sales_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_TrafficArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Desh_Traffic_OneArgs = { + object: Desh_Traffic_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_MapPointsArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_MapPoints_OneArgs = { + object: MapPoints_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Types_TestArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_Types_Test_OneArgs = { + object: Types_Test_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootUpdateBusStopArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + pk_columns: BusStops_Pk_Columns_Input; +}; + + +/** mutation root */ +export type Mutation_RootUpdateBusStopDepartureArgs = { + _set?: InputMaybe; + pk_columns: BusStopDepartures_Pk_Columns_Input; +}; + + +/** mutation root */ +export type Mutation_RootUpdateBusStopDeparturesArgs = { + _set?: InputMaybe; + where: BusStopDepartures_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootUpdateBusStopsArgs = { + _inc?: InputMaybe; _set?: InputMaybe; where: BusStops_Bool_Exp; }; @@ -2497,6 +3038,20 @@ export type Mutation_RootUpdateCustomersArgs = { }; +/** mutation root */ +export type Mutation_RootUpdateEventArgs = { + _set?: InputMaybe; + pk_columns: Events_Pk_Columns_Input; +}; + + +/** mutation root */ +export type Mutation_RootUpdateEventsArgs = { + _set?: InputMaybe; + where: Events_Bool_Exp; +}; + + /** mutation root */ export type Mutation_RootUpdateOrderArgs = { _set?: InputMaybe; @@ -2559,6 +3114,42 @@ export type Mutation_RootUpdateProductsArgs = { }; +/** mutation root */ +export type Mutation_RootUpdateTestXArgs = { + _set?: InputMaybe; + pk_columns: TestX_Pk_Columns_Input; +}; + + +/** mutation root */ +export type Mutation_RootUpdateTestXesArgs = { + _set?: InputMaybe; + where: TestX_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_AccountsArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + where: Accounts_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_Accounts_By_PkArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + pk_columns: Accounts_Pk_Columns_Input; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_Accounts_ManyArgs = { + updates: Array; +}; + + /** mutation root */ export type Mutation_RootUpdate_BusStopDepartures_ManyArgs = { updates: Array; @@ -2663,6 +3254,12 @@ export type Mutation_RootUpdate_Desh_Traffic_ManyArgs = { }; +/** mutation root */ +export type Mutation_RootUpdate_Events_ManyArgs = { + updates: Array; +}; + + /** mutation root */ export type Mutation_RootUpdate_MapPointsArgs = { _set?: InputMaybe; @@ -2707,6 +3304,12 @@ export type Mutation_RootUpdate_Products_ManyArgs = { }; +/** mutation root */ +export type Mutation_RootUpdate_TestX_ManyArgs = { + updates: Array; +}; + + /** mutation root */ export type Mutation_RootUpdate_Types_TestArgs = { _append?: InputMaybe; @@ -2768,6 +3371,63 @@ export type OrderItems = { updated_at: Scalars['timestamptz']; }; +/** aggregated selection of "order_items" */ +export type OrderItems_Aggregate = { + __typename?: 'orderItems_aggregate'; + aggregate?: Maybe; + nodes: Array; +}; + +export type OrderItems_Aggregate_Bool_Exp = { + bool_and?: InputMaybe; + bool_or?: InputMaybe; + count?: InputMaybe; +}; + +export type OrderItems_Aggregate_Bool_Exp_Bool_And = { + arguments: OrderItems_Select_Column_OrderItems_Aggregate_Bool_Exp_Bool_And_Arguments_Columns; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Boolean_Comparison_Exp; +}; + +export type OrderItems_Aggregate_Bool_Exp_Bool_Or = { + arguments: OrderItems_Select_Column_OrderItems_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Boolean_Comparison_Exp; +}; + +export type OrderItems_Aggregate_Bool_Exp_Count = { + arguments?: InputMaybe>; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Int_Comparison_Exp; +}; + +/** aggregate fields of "order_items" */ +export type OrderItems_Aggregate_Fields = { + __typename?: 'orderItems_aggregate_fields'; + avg?: Maybe; + count: Scalars['Int']; + max?: Maybe; + min?: Maybe; + stddev?: Maybe; + stddev_pop?: Maybe; + stddev_samp?: Maybe; + sum?: Maybe; + var_pop?: Maybe; + var_samp?: Maybe; + variance?: Maybe; +}; + + +/** aggregate fields of "order_items" */ +export type OrderItems_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + /** order by aggregate values of table "order_items" */ export type OrderItems_Aggregate_Order_By = { avg?: InputMaybe; @@ -2790,6 +3450,13 @@ export type OrderItems_Arr_Rel_Insert_Input = { on_conflict?: InputMaybe; }; +/** aggregate avg on columns */ +export type OrderItems_Avg_Fields = { + __typename?: 'orderItems_avg_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by avg() on columns of table "order_items" */ export type OrderItems_Avg_Order_By = { price?: InputMaybe; @@ -2839,6 +3506,18 @@ export type OrderItems_Insert_Input = { updated_at?: InputMaybe; }; +/** aggregate max on columns */ +export type OrderItems_Max_Fields = { + __typename?: 'orderItems_max_fields'; + created_at?: Maybe; + id?: Maybe; + orders_id?: Maybe; + price?: Maybe; + product_id?: Maybe; + quantity?: Maybe; + updated_at?: Maybe; +}; + /** order by max() on columns of table "order_items" */ export type OrderItems_Max_Order_By = { created_at?: InputMaybe; @@ -2850,6 +3529,18 @@ export type OrderItems_Max_Order_By = { updated_at?: InputMaybe; }; +/** aggregate min on columns */ +export type OrderItems_Min_Fields = { + __typename?: 'orderItems_min_fields'; + created_at?: Maybe; + id?: Maybe; + orders_id?: Maybe; + price?: Maybe; + product_id?: Maybe; + quantity?: Maybe; + updated_at?: Maybe; +}; + /** order by min() on columns of table "order_items" */ export type OrderItems_Min_Order_By = { created_at?: InputMaybe; @@ -2916,6 +3607,18 @@ export enum OrderItems_Select_Column { UpdatedAt = 'updated_at' } +/** select "orderItems_aggregate_bool_exp_bool_and_arguments_columns" columns of table "order_items" */ +export enum OrderItems_Select_Column_OrderItems_Aggregate_Bool_Exp_Bool_And_Arguments_Columns { + /** column name */ + IsDeleted = 'is_deleted' +} + +/** select "orderItems_aggregate_bool_exp_bool_or_arguments_columns" columns of table "order_items" */ +export enum OrderItems_Select_Column_OrderItems_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns { + /** column name */ + IsDeleted = 'is_deleted' +} + /** input type for updating data in table "order_items" */ export type OrderItems_Set_Input = { created_at?: InputMaybe; @@ -2928,18 +3631,39 @@ export type OrderItems_Set_Input = { updated_at?: InputMaybe; }; +/** aggregate stddev on columns */ +export type OrderItems_Stddev_Fields = { + __typename?: 'orderItems_stddev_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by stddev() on columns of table "order_items" */ export type OrderItems_Stddev_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate stddev_pop on columns */ +export type OrderItems_Stddev_Pop_Fields = { + __typename?: 'orderItems_stddev_pop_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by stddev_pop() on columns of table "order_items" */ export type OrderItems_Stddev_Pop_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate stddev_samp on columns */ +export type OrderItems_Stddev_Samp_Fields = { + __typename?: 'orderItems_stddev_samp_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by stddev_samp() on columns of table "order_items" */ export type OrderItems_Stddev_Samp_Order_By = { price?: InputMaybe; @@ -2966,6 +3690,13 @@ export type OrderItems_Stream_Cursor_Value_Input = { updated_at?: InputMaybe; }; +/** aggregate sum on columns */ +export type OrderItems_Sum_Fields = { + __typename?: 'orderItems_sum_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by sum() on columns of table "order_items" */ export type OrderItems_Sum_Order_By = { price?: InputMaybe; @@ -3000,18 +3731,39 @@ export type OrderItems_Updates = { where: OrderItems_Bool_Exp; }; +/** aggregate var_pop on columns */ +export type OrderItems_Var_Pop_Fields = { + __typename?: 'orderItems_var_pop_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by var_pop() on columns of table "order_items" */ export type OrderItems_Var_Pop_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate var_samp on columns */ +export type OrderItems_Var_Samp_Fields = { + __typename?: 'orderItems_var_samp_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by var_samp() on columns of table "order_items" */ export type OrderItems_Var_Samp_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate variance on columns */ +export type OrderItems_Variance_Fields = { + __typename?: 'orderItems_variance_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by variance() on columns of table "order_items" */ export type OrderItems_Variance_Order_By = { price?: InputMaybe; @@ -3043,9 +3795,12 @@ export type Orders = { customer_id?: Maybe; id: Scalars['uuid']; is_deleted: Scalars['Boolean']; + name?: Maybe; order_date?: Maybe; /** An array relationship */ order_items: Array; + /** An aggregate relationship */ + order_items_aggregate: OrderItems_Aggregate; order_status?: Maybe; shipped_date?: Maybe; /** An object relationship */ @@ -3063,6 +3818,16 @@ export type OrdersOrder_ItemsArgs = { where?: InputMaybe; }; + +/** List of orders */ +export type OrdersOrder_Items_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + /** order by aggregate values of table "orders" */ export type Orders_Aggregate_Order_By = { count?: InputMaybe; @@ -3087,8 +3852,10 @@ export type Orders_Bool_Exp = { customer_id?: InputMaybe; id?: InputMaybe; is_deleted?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; order_items?: InputMaybe; + order_items_aggregate?: InputMaybe; order_status?: InputMaybe; shipped_date?: InputMaybe; status_type?: InputMaybe; @@ -3108,6 +3875,7 @@ export type Orders_Insert_Input = { customer_id?: InputMaybe; id?: InputMaybe; is_deleted?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; order_items?: InputMaybe; order_status?: InputMaybe; @@ -3120,6 +3888,7 @@ export type Orders_Max_Order_By = { created_at?: InputMaybe; customer_id?: InputMaybe; id?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; shipped_date?: InputMaybe; updated_at?: InputMaybe; @@ -3130,6 +3899,7 @@ export type Orders_Min_Order_By = { created_at?: InputMaybe; customer_id?: InputMaybe; id?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; shipped_date?: InputMaybe; updated_at?: InputMaybe; @@ -3165,6 +3935,7 @@ export type Orders_Order_By = { customer_id?: InputMaybe; id?: InputMaybe; is_deleted?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; order_items_aggregate?: InputMaybe; order_status?: InputMaybe; @@ -3189,6 +3960,8 @@ export enum Orders_Select_Column { /** column name */ IsDeleted = 'is_deleted', /** column name */ + Name = 'name', + /** column name */ OrderDate = 'order_date', /** column name */ OrderStatus = 'order_status', @@ -3204,6 +3977,7 @@ export type Orders_Set_Input = { customer_id?: InputMaybe; id?: InputMaybe; is_deleted?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; order_status?: InputMaybe; shipped_date?: InputMaybe; @@ -3224,6 +3998,7 @@ export type Orders_Stream_Cursor_Value_Input = { customer_id?: InputMaybe; id?: InputMaybe; is_deleted?: InputMaybe; + name?: InputMaybe; order_date?: InputMaybe; order_status?: InputMaybe; shipped_date?: InputMaybe; @@ -3241,6 +4016,8 @@ export enum Orders_Update_Column { /** column name */ IsDeleted = 'is_deleted', /** column name */ + Name = 'name', + /** column name */ OrderDate = 'order_date', /** column name */ OrderStatus = 'order_status', @@ -3649,12 +4426,24 @@ export type Product_Availability = { name: Scalars['String']; /** An array relationship */ products: Array; + /** An aggregate relationship */ + products_aggregate: Products_Aggregate; type: Scalars['String']; }; /** Enum table for product availability */ -export type Product_AvailabilityProductsArgs = { +export type Product_AvailabilityProductsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +/** Enum table for product availability */ +export type Product_AvailabilityProducts_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; @@ -3669,6 +4458,7 @@ export type Product_Availability_Bool_Exp = { _or?: InputMaybe>; name?: InputMaybe; products?: InputMaybe; + products_aggregate?: InputMaybe; type?: InputMaybe; }; @@ -3711,6 +4501,8 @@ export type Products = { name?: Maybe; /** An array relationship */ order_items: Array; + /** An aggregate relationship */ + order_items_aggregate: OrderItems_Aggregate; price?: Maybe; /** An object relationship */ product_availability?: Maybe; @@ -3730,6 +4522,73 @@ export type ProductsOrder_ItemsArgs = { where?: InputMaybe; }; + +/** Types of products */ +export type ProductsOrder_Items_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +/** aggregated selection of "products" */ +export type Products_Aggregate = { + __typename?: 'products_aggregate'; + aggregate?: Maybe; + nodes: Array; +}; + +export type Products_Aggregate_Bool_Exp = { + bool_and?: InputMaybe; + bool_or?: InputMaybe; + count?: InputMaybe; +}; + +export type Products_Aggregate_Bool_Exp_Bool_And = { + arguments: Products_Select_Column_Products_Aggregate_Bool_Exp_Bool_And_Arguments_Columns; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Boolean_Comparison_Exp; +}; + +export type Products_Aggregate_Bool_Exp_Bool_Or = { + arguments: Products_Select_Column_Products_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Boolean_Comparison_Exp; +}; + +export type Products_Aggregate_Bool_Exp_Count = { + arguments?: InputMaybe>; + distinct?: InputMaybe; + filter?: InputMaybe; + predicate: Int_Comparison_Exp; +}; + +/** aggregate fields of "products" */ +export type Products_Aggregate_Fields = { + __typename?: 'products_aggregate_fields'; + avg?: Maybe; + count: Scalars['Int']; + max?: Maybe; + min?: Maybe; + stddev?: Maybe; + stddev_pop?: Maybe; + stddev_samp?: Maybe; + sum?: Maybe; + var_pop?: Maybe; + var_samp?: Maybe; + variance?: Maybe; +}; + + +/** aggregate fields of "products" */ +export type Products_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + /** order by aggregate values of table "products" */ export type Products_Aggregate_Order_By = { avg?: InputMaybe; @@ -3745,6 +4604,13 @@ export type Products_Aggregate_Order_By = { variance?: InputMaybe; }; +/** aggregate avg on columns */ +export type Products_Avg_Fields = { + __typename?: 'products_avg_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by avg() on columns of table "products" */ export type Products_Avg_Order_By = { price?: InputMaybe; @@ -3762,6 +4628,7 @@ export type Products_Bool_Exp = { is_deleted?: InputMaybe; name?: InputMaybe; order_items?: InputMaybe; + order_items_aggregate?: InputMaybe; price?: InputMaybe; product_availability?: InputMaybe; quantity?: InputMaybe; @@ -3795,6 +4662,19 @@ export type Products_Insert_Input = { updated_at?: InputMaybe; }; +/** aggregate max on columns */ +export type Products_Max_Fields = { + __typename?: 'products_max_fields'; + availability?: Maybe; + created_at?: Maybe; + id?: Maybe; + name?: Maybe; + price?: Maybe; + quantity?: Maybe; + thumbnailImgPath?: Maybe; + updated_at?: Maybe; +}; + /** order by max() on columns of table "products" */ export type Products_Max_Order_By = { availability?: InputMaybe; @@ -3807,6 +4687,19 @@ export type Products_Max_Order_By = { updated_at?: InputMaybe; }; +/** aggregate min on columns */ +export type Products_Min_Fields = { + __typename?: 'products_min_fields'; + availability?: Maybe; + created_at?: Maybe; + id?: Maybe; + name?: Maybe; + price?: Maybe; + quantity?: Maybe; + thumbnailImgPath?: Maybe; + updated_at?: Maybe; +}; + /** order by min() on columns of table "products" */ export type Products_Min_Order_By = { availability?: InputMaybe; @@ -3884,6 +4777,18 @@ export enum Products_Select_Column { UpdatedAt = 'updated_at' } +/** select "products_aggregate_bool_exp_bool_and_arguments_columns" columns of table "products" */ +export enum Products_Select_Column_Products_Aggregate_Bool_Exp_Bool_And_Arguments_Columns { + /** column name */ + IsDeleted = 'is_deleted' +} + +/** select "products_aggregate_bool_exp_bool_or_arguments_columns" columns of table "products" */ +export enum Products_Select_Column_Products_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns { + /** column name */ + IsDeleted = 'is_deleted' +} + /** input type for updating data in table "products" */ export type Products_Set_Input = { availability?: InputMaybe; @@ -3897,18 +4802,39 @@ export type Products_Set_Input = { updated_at?: InputMaybe; }; +/** aggregate stddev on columns */ +export type Products_Stddev_Fields = { + __typename?: 'products_stddev_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by stddev() on columns of table "products" */ export type Products_Stddev_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate stddev_pop on columns */ +export type Products_Stddev_Pop_Fields = { + __typename?: 'products_stddev_pop_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by stddev_pop() on columns of table "products" */ export type Products_Stddev_Pop_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate stddev_samp on columns */ +export type Products_Stddev_Samp_Fields = { + __typename?: 'products_stddev_samp_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by stddev_samp() on columns of table "products" */ export type Products_Stddev_Samp_Order_By = { price?: InputMaybe; @@ -3936,6 +4862,13 @@ export type Products_Stream_Cursor_Value_Input = { updated_at?: InputMaybe; }; +/** aggregate sum on columns */ +export type Products_Sum_Fields = { + __typename?: 'products_sum_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by sum() on columns of table "products" */ export type Products_Sum_Order_By = { price?: InputMaybe; @@ -3972,18 +4905,39 @@ export type Products_Updates = { where: Products_Bool_Exp; }; +/** aggregate var_pop on columns */ +export type Products_Var_Pop_Fields = { + __typename?: 'products_var_pop_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by var_pop() on columns of table "products" */ export type Products_Var_Pop_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate var_samp on columns */ +export type Products_Var_Samp_Fields = { + __typename?: 'products_var_samp_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by var_samp() on columns of table "products" */ export type Products_Var_Samp_Order_By = { price?: InputMaybe; quantity?: InputMaybe; }; +/** aggregate variance on columns */ +export type Products_Variance_Fields = { + __typename?: 'products_variance_fields'; + price?: Maybe; + quantity?: Maybe; +}; + /** order by variance() on columns of table "products" */ export type Products_Variance_Order_By = { price?: InputMaybe; @@ -3992,6 +4946,10 @@ export type Products_Variance_Order_By = { export type Query_Root = { __typename?: 'query_root'; + /** fetch data from the table: "accounts" */ + accounts: Array; + /** fetch data from the table: "accounts" using primary key columns */ + accounts_by_pk?: Maybe; /** fetch data from the table: "bus_stops" using primary key columns */ busStop?: Maybe; /** fetch data from the table: "bus_stop_departures" using primary key columns */ @@ -4030,6 +4988,10 @@ export type Query_Root = { enum_test_types: Array; /** fetch data from the table: "enum_test_types" using primary key columns */ enum_test_types_by_pk?: Maybe; + /** fetch data from the table: "events" using primary key columns */ + event?: Maybe; + /** fetch data from the table: "events" */ + events: Array; file?: Maybe; listParts?: Maybe; /** fetch data from the table: "map_points" using primary key columns */ @@ -4042,6 +5004,8 @@ export type Query_Root = { orderItem?: Maybe; /** fetch data from the table: "order_items" */ orderItems: Array; + /** fetch aggregated fields from the table: "order_items" */ + orderItemsAggregate: OrderItems_Aggregate; /** An array relationship */ orders: Array; /** fetch data from the table: "organizations" using primary key columns */ @@ -4066,10 +5030,16 @@ export type Query_Root = { product_availability_by_pk?: Maybe; /** An array relationship */ products: Array; + /** fetch aggregated fields from the table: "products" */ + productsAggregate: Products_Aggregate; /** fetch data from the table: "status_types" */ status_types: Array; /** fetch data from the table: "status_types" using primary key columns */ status_types_by_pk?: Maybe; + /** fetch data from the table: "test_x" using primary key columns */ + testX?: Maybe; + /** fetch data from the table: "test_x" */ + testXes: Array; /** fetch data from the table: "types_test" */ types_test: Array; /** fetch data from the table: "types_test" using primary key columns */ @@ -4077,6 +5047,20 @@ export type Query_Root = { }; +export type Query_RootAccountsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Query_RootAccounts_By_PkArgs = { + id: Scalars['Int']; +}; + + export type Query_RootBusStopArgs = { id: Scalars['uuid']; }; @@ -4213,6 +5197,20 @@ export type Query_RootEnum_Test_Types_By_PkArgs = { }; +export type Query_RootEventArgs = { + id: Scalars['uuid']; +}; + + +export type Query_RootEventsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Query_RootListPartsArgs = { fileKey: Scalars['String']; uploadId: Scalars['String']; @@ -4252,6 +5250,15 @@ export type Query_RootOrderItemsArgs = { }; +export type Query_RootOrderItemsAggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Query_RootOrdersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -4338,6 +5345,15 @@ export type Query_RootProductsArgs = { }; +export type Query_RootProductsAggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Query_RootStatus_TypesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -4352,6 +5368,20 @@ export type Query_RootStatus_Types_By_PkArgs = { }; +export type Query_RootTestXArgs = { + id: Scalars['uuid']; +}; + + +export type Query_RootTestXesArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Query_RootTypes_TestArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -4462,17 +5492,23 @@ export type Status_Types_Stream_Cursor_Value_Input = { export type Subscription_Root = { __typename?: 'subscription_root'; + /** fetch data from the table: "accounts" */ + accounts: Array; + /** fetch data from the table: "accounts" using primary key columns */ + accounts_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "accounts" */ + accounts_stream: Array; /** fetch data from the table: "bus_stops" using primary key columns */ busStop?: Maybe; /** fetch data from the table: "bus_stop_departures" using primary key columns */ busStopDeparture?: Maybe; /** fetch data from the table: "bus_stop_departures" */ busStopDepartures: Array; - /** fetch data from the table in a streaming manner : "bus_stop_departures" */ + /** fetch data from the table in a streaming manner: "bus_stop_departures" */ busStopDeparturesStream: Array; /** fetch data from the table: "bus_stops" */ busStops: Array; - /** fetch data from the table in a streaming manner : "bus_stops" */ + /** fetch data from the table in a streaming manner: "bus_stops" */ busStops_stream: Array; /** fetch data from the table: "customers" using primary key columns */ customer?: Maybe; @@ -4480,11 +5516,11 @@ export type Subscription_Root = { customer_types: Array; /** fetch data from the table: "customer_types" using primary key columns */ customer_types_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "customer_types" */ + /** fetch data from the table in a streaming manner: "customer_types" */ customer_types_stream: Array; /** An array relationship */ customers: Array; - /** fetch data from the table in a streaming manner : "customers" */ + /** fetch data from the table in a streaming manner: "customers" */ customers_stream: Array; /** fetch data from the table: "desh" */ desh: Array; @@ -4494,33 +5530,39 @@ export type Subscription_Root = { desh_products: Array; /** fetch data from the table: "desh_products" using primary key columns */ desh_products_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "desh_products" */ + /** fetch data from the table in a streaming manner: "desh_products" */ desh_products_stream: Array; /** An array relationship */ desh_sales: Array; /** fetch data from the table: "desh_sales" using primary key columns */ desh_sales_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "desh_sales" */ + /** fetch data from the table in a streaming manner: "desh_sales" */ desh_sales_stream: Array; - /** fetch data from the table in a streaming manner : "desh" */ + /** fetch data from the table in a streaming manner: "desh" */ desh_stream: Array; /** fetch data from the table: "desh_traffic" */ desh_traffic: Array; /** fetch data from the table: "desh_traffic" using primary key columns */ desh_traffic_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "desh_traffic" */ + /** fetch data from the table in a streaming manner: "desh_traffic" */ desh_traffic_stream: Array; /** fetch data from the table: "enum_test_types" */ enum_test_types: Array; /** fetch data from the table: "enum_test_types" using primary key columns */ enum_test_types_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "enum_test_types" */ + /** fetch data from the table in a streaming manner: "enum_test_types" */ enum_test_types_stream: Array; + /** fetch data from the table: "events" using primary key columns */ + event?: Maybe; + /** fetch data from the table: "events" */ + events: Array; + /** fetch data from the table in a streaming manner: "events" */ + events_stream: Array; /** fetch data from the table: "map_points" using primary key columns */ mapPoint?: Maybe; /** fetch data from the table: "map_points" */ mapPoints: Array; - /** fetch data from the table in a streaming manner : "map_points" */ + /** fetch data from the table in a streaming manner: "map_points" */ mapPoints_stream: Array; /** fetch data from the table: "orders" using primary key columns */ order?: Maybe; @@ -4528,11 +5570,13 @@ export type Subscription_Root = { orderItem?: Maybe; /** fetch data from the table: "order_items" */ orderItems: Array; - /** fetch data from the table in a streaming manner : "order_items" */ + /** fetch aggregated fields from the table: "order_items" */ + orderItemsAggregate: OrderItems_Aggregate; + /** fetch data from the table in a streaming manner: "order_items" */ orderItemsStream: Array; /** An array relationship */ orders: Array; - /** fetch data from the table in a streaming manner : "orders" */ + /** fetch data from the table in a streaming manner: "orders" */ ordersStream: Array; /** fetch data from the table: "organizations" using primary key columns */ organization?: Maybe; @@ -4540,17 +5584,17 @@ export type Subscription_Root = { organization_partnership_levels: Array; /** fetch data from the table: "organization_partnership_levels" using primary key columns */ organization_partnership_levels_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "organization_partnership_levels" */ + /** fetch data from the table in a streaming manner: "organization_partnership_levels" */ organization_partnership_levels_stream: Array; /** fetch data from the table: "organization_types" */ organization_types: Array; /** fetch data from the table: "organization_types" using primary key columns */ organization_types_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "organization_types" */ + /** fetch data from the table in a streaming manner: "organization_types" */ organization_types_stream: Array; /** An array relationship */ organizations: Array; - /** fetch data from the table in a streaming manner : "organizations" */ + /** fetch data from the table in a streaming manner: "organizations" */ organizationsStream: Array; /** fetch data from the table: "products" using primary key columns */ product?: Maybe; @@ -4558,27 +5602,56 @@ export type Subscription_Root = { product_availability: Array; /** fetch data from the table: "product_availability" using primary key columns */ product_availability_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "product_availability" */ + /** fetch data from the table in a streaming manner: "product_availability" */ product_availability_stream: Array; /** An array relationship */ products: Array; - /** fetch data from the table in a streaming manner : "products" */ + /** fetch aggregated fields from the table: "products" */ + productsAggregate: Products_Aggregate; + /** fetch data from the table in a streaming manner: "products" */ productsStream: Array; /** fetch data from the table: "status_types" */ status_types: Array; /** fetch data from the table: "status_types" using primary key columns */ status_types_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "status_types" */ + /** fetch data from the table in a streaming manner: "status_types" */ status_types_stream: Array; + /** fetch data from the table: "test_x" using primary key columns */ + testX?: Maybe; + /** fetch data from the table in a streaming manner: "test_x" */ + testX_stream: Array; + /** fetch data from the table: "test_x" */ + testXes: Array; /** fetch data from the table: "types_test" */ types_test: Array; /** fetch data from the table: "types_test" using primary key columns */ types_test_by_pk?: Maybe; - /** fetch data from the table in a streaming manner : "types_test" */ + /** fetch data from the table in a streaming manner: "types_test" */ types_test_stream: Array; }; +export type Subscription_RootAccountsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Subscription_RootAccounts_By_PkArgs = { + id: Scalars['Int']; +}; + + +export type Subscription_RootAccounts_StreamArgs = { + batch_size: Scalars['Int']; + cursor: Array>; + where?: InputMaybe; +}; + + export type Subscription_RootBusStopArgs = { id: Scalars['uuid']; }; @@ -4768,6 +5841,27 @@ export type Subscription_RootEnum_Test_Types_StreamArgs = { }; +export type Subscription_RootEventArgs = { + id: Scalars['uuid']; +}; + + +export type Subscription_RootEventsArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Subscription_RootEvents_StreamArgs = { + batch_size: Scalars['Int']; + cursor: Array>; + where?: InputMaybe; +}; + + export type Subscription_RootMapPointArgs = { id: Scalars['uuid']; }; @@ -4808,6 +5902,15 @@ export type Subscription_RootOrderItemsArgs = { }; +export type Subscription_RootOrderItemsAggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Subscription_RootOrderItemsStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; @@ -4929,6 +6032,15 @@ export type Subscription_RootProductsArgs = { }; +export type Subscription_RootProductsAggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Subscription_RootProductsStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; @@ -4957,6 +6069,27 @@ export type Subscription_RootStatus_Types_StreamArgs = { }; +export type Subscription_RootTestXArgs = { + id: Scalars['uuid']; +}; + + +export type Subscription_RootTestX_StreamArgs = { + batch_size: Scalars['Int']; + cursor: Array>; + where?: InputMaybe; +}; + + +export type Subscription_RootTestXesArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + export type Subscription_RootTypes_TestArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -4977,6 +6110,133 @@ export type Subscription_RootTypes_Test_StreamArgs = { where?: InputMaybe; }; +/** columns and relationships of "test_x" */ +export type TestX = { + __typename?: 'testX'; + createdAt: Scalars['timestamptz']; + id: Scalars['uuid']; + isDeleted: Scalars['Boolean']; + name: Scalars['String']; + updatedAt: Scalars['timestamptz']; +}; + +/** Boolean expression to filter rows from the table "test_x". All fields are combined with a logical 'AND'. */ +export type TestX_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + createdAt?: InputMaybe; + id?: InputMaybe; + isDeleted?: InputMaybe; + name?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** unique or primary key constraints on table "test_x" */ +export enum TestX_Constraint { + /** unique or primary key constraint on columns "id" */ + TestXPkey = 'test_x_pkey' +} + +/** input type for inserting data into table "test_x" */ +export type TestX_Insert_Input = { + createdAt?: InputMaybe; + id?: InputMaybe; + isDeleted?: InputMaybe; + name?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** response of any mutation on the table "test_x" */ +export type TestX_Mutation_Response = { + __typename?: 'testX_mutation_response'; + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int']; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "test_x" */ +export type TestX_On_Conflict = { + constraint: TestX_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "test_x". */ +export type TestX_Order_By = { + createdAt?: InputMaybe; + id?: InputMaybe; + isDeleted?: InputMaybe; + name?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** primary key columns input for table: test_x */ +export type TestX_Pk_Columns_Input = { + id: Scalars['uuid']; +}; + +/** select columns of table "test_x" */ +export enum TestX_Select_Column { + /** column name */ + CreatedAt = 'createdAt', + /** column name */ + Id = 'id', + /** column name */ + IsDeleted = 'isDeleted', + /** column name */ + Name = 'name', + /** column name */ + UpdatedAt = 'updatedAt' +} + +/** input type for updating data in table "test_x" */ +export type TestX_Set_Input = { + createdAt?: InputMaybe; + id?: InputMaybe; + isDeleted?: InputMaybe; + name?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** Streaming cursor of the table "testX" */ +export type TestX_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: TestX_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type TestX_Stream_Cursor_Value_Input = { + createdAt?: InputMaybe; + id?: InputMaybe; + isDeleted?: InputMaybe; + name?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** update columns of table "test_x" */ +export enum TestX_Update_Column { + /** column name */ + CreatedAt = 'createdAt', + /** column name */ + Id = 'id', + /** column name */ + IsDeleted = 'isDeleted', + /** column name */ + Name = 'name', + /** column name */ + UpdatedAt = 'updatedAt' +} + +export type TestX_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + where: TestX_Bool_Exp; +}; + /** Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. */ export type Time_Comparison_Exp = { _eq?: InputMaybe; diff --git a/src/generated/introspect.json b/src/generated/introspect.json index a110ba9..34fe84a 100644 --- a/src/generated/introspect.json +++ b/src/generated/introspect.json @@ -1813,59 +1813,72 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "bigint", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "accounts", + "description": "table for int IDs testing", + "fields": [ { - "name": "_eq", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gt", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gte", + "name": "password", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "bigint", - "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": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "description": "Boolean expression to filter rows from the table \"accounts\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "_in", + "name": "_and", "description": null, "type": { "kind": "LIST", @@ -1874,8 +1887,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", "ofType": null } } @@ -1885,11 +1898,11 @@ "deprecationReason": null }, { - "name": "_is_null", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", "ofType": null }, "defaultValue": null, @@ -1897,23 +1910,31 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lte", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", "ofType": null }, "defaultValue": null, @@ -1921,11 +1942,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -1933,20 +1954,12 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "password", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -1958,108 +1971,107 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "busStopDepartures", - "description": "columns and relationships of \"bus_stop_departures\"", - "fields": [ + "kind": "ENUM", + "name": "accounts_constraint", + "description": "unique or primary key constraints on table \"accounts\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "bus_stop", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "busStops", - "ofType": null - }, + "name": "accounts_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "accounts_inc_input", + "description": "input type for incrementing numeric columns in table \"accounts\"", + "fields": null, + "inputFields": [ { - "name": "bus_stop_id", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "accounts_insert_input", + "description": "input type for inserting data into table \"accounts\"", + "fields": null, + "inputFields": [ { - "name": "bus_stop_platform", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": 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": "line", + "name": "name", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "line_direction", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "busStops", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "line_direction_id", + "name": "password", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "accounts_mutation_response", + "description": "response of any mutation on the table \"accounts\"", + "fields": [ { - "name": "low_entry", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, @@ -2067,16 +2079,24 @@ "deprecationReason": null }, { - "name": "time_departure", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timetz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + } + } } }, "isDeprecated": false, @@ -2090,40 +2110,56 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_aggregate_order_by", - "description": "order by aggregate values of table \"bus_stop_departures\"", + "name": "accounts_on_conflict", + "description": "on_conflict condition type for table \"accounts\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "constraint", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "accounts_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "update_columns", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_max_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "accounts_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_min_order_by", + "name": "accounts_bool_exp", "ofType": null }, "defaultValue": null, @@ -2137,40 +2173,40 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"bus_stop_departures\"", + "name": "accounts_order_by", + "description": "Ordering options when selecting data from \"accounts\".", "fields": null, "inputFields": [ { - "name": "data", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_insert_input", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "name", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_on_conflict", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -2184,80 +2220,72 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", - "description": "Boolean expression to filter rows from the table \"bus_stop_departures\". All fields are combined with a logical 'AND'.", + "name": "accounts_pk_columns_input", + "description": "primary key columns input for table: accounts", "fields": null, "inputFields": [ { - "name": "_and", + "name": "id", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "accounts_select_column", + "description": "select columns of table \"accounts\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_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": "busStopDepartures_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "bus_stop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "password", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "accounts_set_input", + "description": "input type for updating data in table \"accounts\"", + "fields": null, + "inputFields": [ { - "name": "bus_stop_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -2265,11 +2293,11 @@ "deprecationReason": null }, { - "name": "bus_stop_platform", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2277,47 +2305,73 @@ "deprecationReason": null }, { - "name": "id", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "accounts_stream_cursor_input", + "description": "Streaming cursor of the table \"accounts\"", + "fields": null, + "inputFields": [ { - "name": "line", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "line_direction", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "accounts_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "line_direction_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -2325,11 +2379,11 @@ "deprecationReason": null }, { - "name": "low_entry", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2337,11 +2391,11 @@ "deprecationReason": null }, { - "name": "time_departure", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timetz_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2355,15 +2409,27 @@ }, { "kind": "ENUM", - "name": "busStopDepartures_constraint", - "description": "unique or primary key constraints on table \"bus_stop_departures\"", + "name": "accounts_update_column", + "description": "update columns of table \"accounts\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "bus_stop_departures_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -2372,16 +2438,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_insert_input", - "description": "input type for inserting data into table \"bus_stop_departures\"", + "name": "accounts_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "bus_stop", - "description": null, + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { "kind": "INPUT_OBJECT", - "name": "busStops_obj_rel_insert_input", + "name": "accounts_inc_input", "ofType": null }, "defaultValue": null, @@ -2389,11 +2455,11 @@ "deprecationReason": null }, { - "name": "bus_stop_id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "accounts_set_input", "ofType": null }, "defaultValue": null, @@ -2401,47 +2467,48 @@ "deprecationReason": null }, { - "name": "bus_stop_platform", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "bigint", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "line", + "name": "_eq", "description": null, "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "line_direction", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_obj_rel_insert_input", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -2449,11 +2516,11 @@ "deprecationReason": null }, { - "name": "line_direction_id", + "name": "_gt", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -2461,11 +2528,11 @@ "deprecationReason": null }, { - "name": "low_entry", + "name": "_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -2473,46 +2540,31 @@ "deprecationReason": null }, { - "name": "time_departure", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timetz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_max_order_by", - "description": "order by max() on columns of table \"bus_stop_departures\"", - "fields": null, - "inputFields": [ - { - "name": "bus_stop_id", + "name": "_in", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bus_stop_platform", + "name": "_is_null", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -2520,11 +2572,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_lt", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -2532,11 +2584,11 @@ "deprecationReason": null }, { - "name": "line", + "name": "_lte", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -2544,11 +2596,11 @@ "deprecationReason": null }, { - "name": "line_direction_id", + "name": "_neq", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -2556,12 +2608,20 @@ "deprecationReason": null }, { - "name": "time_departure", + "name": "_nin", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -2573,103 +2633,108 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_min_order_by", - "description": "order by min() on columns of table \"bus_stop_departures\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "busStopDepartures", + "description": "columns and relationships of \"bus_stop_departures\"", + "fields": [ + { + "name": "bus_stop", + "description": "An object relationship", + "args": [], + "type": { + "kind": "OBJECT", + "name": "busStops", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "bus_stop_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "bus_stop_platform", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "line", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "line_direction_id", - "description": null, + "name": "line_direction", + "description": "An object relationship", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "busStops", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "time_departure", + "name": "line_direction_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "busStopDepartures_mutation_response", - "description": "response of any mutation on the table \"bus_stop_departures\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "low_entry", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, @@ -2677,24 +2742,16 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "time_departure", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "busStopDepartures", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timetz", + "ofType": null } }, "isDeprecated": false, @@ -2708,28 +2765,59 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_on_conflict", - "description": "on_conflict condition type for table \"bus_stop_departures\"", + "name": "busStopDepartures_aggregate_order_by", + "description": "order by aggregate values of table \"bus_stop_departures\"", "fields": null, "inputFields": [ { - "name": "constraint", + "name": "count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "busStopDepartures_constraint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_max_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_min_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"bus_stop_departures\"", + "fields": null, + "inputFields": [ + { + "name": "data", "description": null, "type": { "kind": "NON_NULL", @@ -2741,23 +2829,23 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "busStopDepartures_update_column", + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_insert_input", "ofType": null } } } }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", + "name": "busStopDepartures_on_conflict", "ofType": null }, "defaultValue": null, @@ -2771,16 +2859,68 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_order_by", - "description": "Ordering options when selecting data from \"bus_stop_departures\".", + "name": "busStopDepartures_bool_exp", + "description": "Boolean expression to filter rows from the table \"bus_stop_departures\". 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": "busStopDepartures_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "bus_stop", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "busStops_order_by", + "name": "busStops_bool_exp", "ofType": null }, "defaultValue": null, @@ -2791,8 +2931,8 @@ "name": "bus_stop_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2803,8 +2943,8 @@ "name": "bus_stop_platform", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2815,8 +2955,8 @@ "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2827,8 +2967,8 @@ "name": "line", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2840,7 +2980,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "busStops_order_by", + "name": "busStops_bool_exp", "ofType": null }, "defaultValue": null, @@ -2851,8 +2991,8 @@ "name": "line_direction_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2863,8 +3003,8 @@ "name": "low_entry", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2875,8 +3015,8 @@ "name": "time_departure", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timetz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -2888,80 +3028,17 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_pk_columns_input", - "description": "primary key columns input for table: bus_stop_departures", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "ENUM", - "name": "busStopDepartures_select_column", - "description": "select columns of table \"bus_stop_departures\"", + "name": "busStopDepartures_constraint", + "description": "unique or primary key constraints on table \"bus_stop_departures\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "bus_stop_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bus_stop_platform", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "line", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "line_direction_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "low_entry", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_departure", - "description": "column name", + "name": "bus_stop_departures_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -2970,10 +3047,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_set_input", - "description": "input type for updating data in table \"bus_stop_departures\"", + "name": "busStopDepartures_insert_input", + "description": "input type for inserting data into table \"bus_stop_departures\"", "fields": null, "inputFields": [ + { + "name": "bus_stop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "bus_stop_id", "description": null, @@ -3022,6 +3111,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "line_direction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "line_direction_id", "description": null, @@ -3065,55 +3166,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_stream_cursor_input", - "description": "Streaming cursor of the table \"busStopDepartures\"", + "name": "busStopDepartures_max_order_by", + "description": "order by max() on columns of table \"bus_stop_departures\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", + "name": "bus_stop_id", + "description": null, "type": { "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "bus_stop_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3124,8 +3186,8 @@ "name": "bus_stop_platform", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3136,8 +3198,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3148,8 +3210,8 @@ "name": "line", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3160,20 +3222,8 @@ "name": "line_direction_id", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "low_entry", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3184,8 +3234,8 @@ "name": "time_departure", "description": null, "type": { - "kind": "SCALAR", - "name": "timetz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3198,70 +3248,65 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "busStopDepartures_update_column", - "description": "update columns of table \"bus_stop_departures\"", + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_min_order_by", + "description": "order by min() on columns of table \"bus_stop_departures\"", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { "name": "bus_stop_id", - "description": "column name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "bus_stop_platform", - "description": "column name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "line", - "description": "column name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "line_direction_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "low_entry", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_departure", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_set_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -3269,16 +3314,12 @@ "deprecationReason": null }, { - "name": "where", + "name": "time_departure", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -3291,90 +3332,29 @@ }, { "kind": "OBJECT", - "name": "busStops", - "description": "columns and relationships of \"bus_stops\"", + "name": "busStopDepartures_mutation_response", + "description": "response of any mutation on the table \"bus_stop_departures\"", "fields": [ { - "name": "bus_stop_departures", - "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": "busStopDepartures_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -3394,213 +3374,287 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_on_conflict", + "description": "on_conflict condition type for table \"bus_stop_departures\"", + "fields": null, + "inputFields": [ { - "name": "city", + "name": "constraint", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStopDepartures_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "update_columns", "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": "ENUM", + "name": "busStopDepartures_update_column", + "ofType": null + } + } } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "lat", + "name": "where", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "float8", + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_order_by", + "description": "Ordering options when selecting data from \"bus_stop_departures\".", + "fields": null, + "inputFields": [ + { + "name": "bus_stop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lng", + "name": "bus_stop_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "float8", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "bus_stop_platform", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "position", + "name": "id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "signedThumbnailImgPath", + "name": "line", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "GetUrlReturn", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "station_id", + "name": "line_direction", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "busStops_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "line_direction_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "trips_count", + "name": "low_entry", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "time_departure", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", - "description": "Boolean expression to filter rows from the table \"bus_stops\". All fields are combined with a logical 'AND'.", + "name": "busStopDepartures_pk_columns_input", + "description": "primary key columns input for table: bus_stop_departures", "fields": null, "inputFields": [ { - "name": "_and", + "name": "id", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "busStopDepartures_select_column", + "description": "select columns of table \"bus_stop_departures\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "bus_stop_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "bus_stop_platform", + "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": "busStops_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "bus_stop_departures", + "name": "line", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line_direction_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "low_entry", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time_departure", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_set_input", + "description": "input type for updating data in table \"bus_stop_departures\"", + "fields": null, + "inputFields": [ + { + "name": "bus_stop_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -3608,11 +3662,11 @@ "deprecationReason": null }, { - "name": "city", + "name": "bus_stop_platform", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3623,8 +3677,8 @@ "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -3632,11 +3686,11 @@ "deprecationReason": null }, { - "name": "lat", + "name": "line", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "float8_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3644,11 +3698,11 @@ "deprecationReason": null }, { - "name": "lng", + "name": "line_direction_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "float8_comparison_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -3656,11 +3710,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "low_entry", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -3668,47 +3722,73 @@ "deprecationReason": null }, { - "name": "position", + "name": "time_departure", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "geography_comparison_exp", + "kind": "SCALAR", + "name": "timetz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_stream_cursor_input", + "description": "Streaming cursor of the table \"busStopDepartures\"", + "fields": null, + "inputFields": [ { - "name": "station_id", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "thumbnailImgPath", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "trips_count", + "name": "bus_stop_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -3716,57 +3796,35 @@ "deprecationReason": null }, { - "name": "type", + "name": "bus_stop_platform", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "busStops_constraint", - "description": "unique or primary key constraints on table \"bus_stops\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "bus_stops_id_key", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "bus_stops_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "busStops_inc_input", - "description": "input type for incrementing numeric columns in table \"bus_stops\"", - "fields": null, - "inputFields": [ + }, { - "name": "lat", + "name": "line", "description": null, "type": { "kind": "SCALAR", - "name": "float8", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3774,11 +3832,11 @@ "deprecationReason": null }, { - "name": "lng", + "name": "line_direction_id", "description": null, "type": { "kind": "SCALAR", - "name": "float8", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -3786,11 +3844,11 @@ "deprecationReason": null }, { - "name": "station_id", + "name": "low_entry", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -3798,11 +3856,11 @@ "deprecationReason": null }, { - "name": "trips_count", + "name": "time_departure", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "timetz", "ofType": null }, "defaultValue": null, @@ -3814,216 +3872,398 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "busStopDepartures_update_column", + "description": "update columns of table \"bus_stop_departures\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "bus_stop_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bus_stop_platform", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line_direction_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "low_entry", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time_departure", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "busStops_insert_input", - "description": "input type for inserting data into table \"bus_stops\"", + "name": "busStopDepartures_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "bus_stop_departures", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_arr_rel_insert_input", + "name": "busStopDepartures_set_input", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "busStops", + "description": "columns and relationships of \"bus_stops\"", + "fields": [ + { + "name": "bus_stop_departures", + "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": "busStopDepartures_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "city", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "lat", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "float8", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "lng", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "float8", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "position", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "geography", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signedThumbnailImgPath", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "GetUrlReturn", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "station_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "thumbnailImgPath", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "trips_count", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "busStops_mutation_response", - "description": "response of any mutation on the table \"bus_stops\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "description": "Boolean expression to filter rows from the table \"bus_stops\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "_and", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "_not", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "busStops", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "busStops_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"bus_stops\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "_or", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStops_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null + } } }, "defaultValue": null, @@ -4031,74 +4271,509 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "bus_stop_departures", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "busStops_on_conflict", + "name": "busStopDepartures_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "busStops_on_conflict", - "description": "on_conflict condition type for table \"bus_stops\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", + "name": "city", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "busStops_constraint", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "busStops_update_column", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "lat", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", + "name": "float8_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lng", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "float8_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "geography_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "station_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trips_count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "busStops_constraint", + "description": "unique or primary key constraints on table \"bus_stops\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "bus_stops_id_key", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bus_stops_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStops_inc_input", + "description": "input type for incrementing numeric columns in table \"bus_stops\"", + "fields": null, + "inputFields": [ + { + "name": "lat", + "description": null, + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lng", + "description": null, + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "station_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trips_count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStops_insert_input", + "description": "input type for inserting data into table \"bus_stops\"", + "fields": null, + "inputFields": [ + { + "name": "bus_stop_departures", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "city", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lat", + "description": null, + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lng", + "description": null, + "type": { + "kind": "SCALAR", + "name": "float8", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": null, + "type": { + "kind": "SCALAR", + "name": "geography", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "station_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trips_count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "busStops_mutation_response", + "description": "response of any mutation on the table \"bus_stops\"", + "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": "busStops", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStops_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"bus_stops\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "busStops_on_conflict", + "description": "on_conflict condition type for table \"bus_stops\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStops_constraint", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStops_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", "ofType": null }, "defaultValue": null, @@ -13772,231 +14447,148 @@ "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": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "events", + "description": "columns and relationships of \"events\"", + "fields": [ { - "name": "_gte", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_in", + "name": "endAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lt", + "name": "location", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "geography", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lte", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_neq", + "name": "notification", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "float8", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_nin", + "name": "startAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "geography", - "description": null, - "fields": null, "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "geography_cast_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "geometry", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "geometry_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "geography_comparison_exp", - "description": "Boolean expression to compare columns of type \"geography\". All fields are combined with logical 'AND'.", + "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": "_cast", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "geography_cast_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "geography", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_gt", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gte", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null, @@ -14004,7 +14596,7 @@ "deprecationReason": null }, { - "name": "_in", + "name": "_or", "description": null, "type": { "kind": "LIST", @@ -14013,8 +14605,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", "ofType": null } } @@ -14024,11 +14616,11 @@ "deprecationReason": null }, { - "name": "_is_null", + "name": "description", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14036,11 +14628,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "endAt", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14048,11 +14640,11 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14060,11 +14652,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "location", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "geography_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14072,31 +14664,23 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "geography", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_st_d_within", - "description": "is the column within a given distance from the given geography value", + "name": "notification", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "st_d_within_geography_input", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14104,11 +14688,11 @@ "deprecationReason": null }, { - "name": "_st_intersects", - "description": "does the column spatially intersect the given geography value", + "name": "startAt", + "description": null, "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14121,50 +14705,34 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "geometry", - "description": null, + "kind": "ENUM", + "name": "events_constraint", + "description": "unique or primary key constraints on table \"events\"", "fields": null, "inputFields": null, "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "geometry_cast_exp", - "description": null, - "fields": null, - "inputFields": [ + "enumValues": [ { - "name": "geography", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "geography_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "name": "events_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "geometry_comparison_exp", - "description": "Boolean expression to compare columns of type \"geometry\". All fields are combined with logical 'AND'.", + "name": "events_insert_input", + "description": "input type for inserting data into table \"events\"", "fields": null, "inputFields": [ { - "name": "_cast", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "geometry_cast_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14172,11 +14740,11 @@ "deprecationReason": null }, { - "name": "_eq", + "name": "endAt", "description": null, "type": { "kind": "SCALAR", - "name": "geometry", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -14184,11 +14752,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "geometry", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -14196,11 +14764,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "location", "description": null, "type": { "kind": "SCALAR", - "name": "geometry", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14208,31 +14776,11 @@ "deprecationReason": null }, { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "geometry", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_is_null", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14240,11 +14788,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "geometry", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -14252,91 +14800,148 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "startAt", "description": null, "type": { "kind": "SCALAR", - "name": "geometry", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "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": "geometry", - "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": "geometry", - "ofType": null + "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": "INPUT_OBJECT", + "name": "events_on_conflict", + "description": "on_conflict condition type for table \"events\"", + "fields": null, + "inputFields": [ { - "name": "_st_3d_d_within", - "description": "is the column within a given 3D distance from the given geometry value", + "name": "constraint", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "st_d_within_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "events_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_st_3d_intersects", - "description": "does the column spatially intersect the given geometry value in 3D", + "name": "update_columns", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", - "ofType": null + "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": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "_st_contains", - "description": "does the column contain the given geometry value", + "name": "where", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": 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": [ { - "name": "_st_crosses", - "description": "does the column cross the given geometry value", + "name": "description", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14344,11 +14949,11 @@ "deprecationReason": null }, { - "name": "_st_d_within", - "description": "is the column within a given distance from the given geometry value", + "name": "endAt", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "st_d_within_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14356,11 +14961,11 @@ "deprecationReason": null }, { - "name": "_st_equals", - "description": "is the column equal to given geometry value (directionality is ignored)", + "name": "id", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14368,11 +14973,11 @@ "deprecationReason": null }, { - "name": "_st_intersects", - "description": "does the column spatially intersect the given geometry value", + "name": "location", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14380,11 +14985,11 @@ "deprecationReason": null }, { - "name": "_st_overlaps", - "description": "does the column 'spatially overlap' (intersect but not completely contain) the given geometry value", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14392,11 +14997,11 @@ "deprecationReason": null }, { - "name": "_st_touches", - "description": "does the column have atleast one point in common with the given geometry value", + "name": "notification", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14404,11 +15009,11 @@ "deprecationReason": null }, { - "name": "_st_within", - "description": "is the column contained in the given geometry value", + "name": "startAt", + "description": null, "type": { - "kind": "SCALAR", - "name": "geometry", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14420,40 +15025,98 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "interval", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "interval_comparison_exp", - "description": "Boolean expression to compare columns of type \"interval\". All fields are combined with logical 'AND'.", + "name": "events_pk_columns_input", + "description": "primary key columns input for table: events", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "interval", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "events_select_column", + "description": "select columns of table \"events\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_gt", + "name": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_set_input", + "description": "input type for updating data in table \"events\"", + "fields": null, + "inputFields": [ + { + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "interval", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14461,11 +15124,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "endAt", "description": null, "type": { "kind": "SCALAR", - "name": "interval", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -14473,19 +15136,86 @@ "deprecationReason": null }, { - "name": "_in", + "name": "id", "description": null, "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "SCALAR", + "name": "geography", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_stream_cursor_input", + "description": "Streaming cursor of the table \"events\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "interval", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "events_stream_cursor_value_input", + "ofType": null } }, "defaultValue": null, @@ -14493,11 +15223,34 @@ "deprecationReason": null }, { - "name": "_is_null", + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14505,11 +15258,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "endAt", "description": null, "type": { "kind": "SCALAR", - "name": "interval", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -14517,11 +15270,11 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "interval", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -14529,11 +15282,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "location", "description": null, "type": { "kind": "SCALAR", - "name": "interval", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14541,19 +15294,127 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "name", "description": null, "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "events_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": "events_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "interval", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "ofType": null } }, "defaultValue": null, @@ -14567,7 +15428,7 @@ }, { "kind": "SCALAR", - "name": "json", + "name": "float8", "description": null, "fields": null, "inputFields": null, @@ -14577,8 +15438,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "json_comparison_exp", - "description": "Boolean expression to compare columns of type \"json\". All fields are combined with logical 'AND'.", + "name": "float8_comparison_exp", + "description": "Boolean expression to compare columns of type \"float8\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { @@ -14586,7 +15447,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null }, "defaultValue": null, @@ -14598,7 +15459,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null }, "defaultValue": null, @@ -14610,7 +15471,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null }, "defaultValue": null, @@ -14628,7 +15489,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null } } @@ -14654,7 +15515,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null }, "defaultValue": null, @@ -14666,7 +15527,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null }, "defaultValue": null, @@ -14678,7 +15539,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null }, "defaultValue": null, @@ -14696,7 +15557,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "json", + "name": "float8", "ofType": null } } @@ -14712,7 +15573,7 @@ }, { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "description": null, "fields": null, "inputFields": null, @@ -14722,16 +15583,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", + "name": "geography_cast_exp", "description": null, "fields": null, "inputFields": [ { - "name": "String", + "name": "geometry", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "geometry_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14745,8 +15606,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", + "name": "geography_comparison_exp", + "description": "Boolean expression to compare columns of type \"geography\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { @@ -14754,31 +15615,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_contained_in", - "description": "is the column contained in the given json value", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_contains", - "description": "does the column contain the given json value at the top level", - "type": { - "kind": "SCALAR", - "name": "jsonb", + "name": "geography_cast_exp", "ofType": null }, "defaultValue": null, @@ -14790,7 +15627,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14802,7 +15639,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14814,65 +15651,13 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_has_key", - "description": "does the string exist as a top-level key in the column", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "geography", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, - { - "name": "_has_keys_all", - "description": "do all of these strings exist as top-level keys in the column", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_has_keys_any", - "description": "do any of these strings exist as top-level keys in the column", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "_in", "description": null, @@ -14884,7 +15669,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null } } @@ -14910,7 +15695,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14922,7 +15707,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14934,7 +15719,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null }, "defaultValue": null, @@ -14952,7 +15737,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "jsonb", + "name": "geography", "ofType": null } } @@ -14960,120 +15745,81 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "mapPoints", - "description": "geojson map points", - "fields": [ - { - "name": "geoJson", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "json", - "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": "location", - "description": null, - "args": [], + "name": "_st_d_within", + "description": "is the column within a given distance from the given geography value", "type": { - "kind": "SCALAR", - "name": "geography", + "kind": "INPUT_OBJECT", + "name": "st_d_within_geography_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "position", - "description": null, - "args": [], + "name": "_st_intersects", + "description": "does the column spatially intersect the given geography value", "type": { "kind": "SCALAR", "name": "geography", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", - "description": "Boolean expression to filter rows from the table \"map_points\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + "kind": "SCALAR", + "name": "geometry", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "geometry_cast_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "_and", + "name": "geography", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "geography_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "geometry_comparison_exp", + "description": "Boolean expression to compare columns of type \"geometry\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "_not", + "name": "_cast", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", + "name": "geometry_cast_exp", "ofType": null }, "defaultValue": null, @@ -15081,31 +15827,23 @@ "deprecationReason": null }, { - "name": "_or", + "name": "_eq", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "geometry", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "geoJson", + "name": "_gt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "json_comparison_exp", + "kind": "SCALAR", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15113,11 +15851,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_gte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15125,63 +15863,43 @@ "deprecationReason": null }, { - "name": "location", + "name": "_in", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "geography_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "geometry", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "position", + "name": "_is_null", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "geography_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "mapPoints_constraint", - "description": "unique or primary key constraints on table \"map_points\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "map_points_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_insert_input", - "description": "input type for inserting data into table \"map_points\"", - "fields": null, - "inputFields": [ + }, { - "name": "geoJson", + "name": "_lt", "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15189,11 +15907,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_lte", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15201,11 +15919,11 @@ "deprecationReason": null }, { - "name": "location", + "name": "_neq", "description": null, "type": { "kind": "SCALAR", - "name": "geography", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15213,148 +15931,91 @@ "deprecationReason": null }, { - "name": "position", + "name": "_nin", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "geometry", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "mapPoints_mutation_response", - "description": "response of any mutation on the table \"map_points\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "_st_3d_d_within", + "description": "is the column within a given 3D distance from the given geometry value", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "st_d_within_input", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "_st_3d_intersects", + "description": "does the column spatially intersect the given geometry value in 3D", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "mapPoints", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "geometry", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_on_conflict", - "description": "on_conflict condition type for table \"map_points\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", - "description": null, + "name": "_st_contains", + "description": "does the column contain the given geometry value", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "mapPoints_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "geometry", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", - "description": null, + "name": "_st_crosses", + "description": "does the column cross the given geometry value", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "mapPoints_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "geometry", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, + "name": "_st_d_within", + "description": "is the column within a given distance from the given geometry value", "type": { "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", + "name": "st_d_within_input", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_order_by", - "description": "Ordering options when selecting data from \"map_points\".", - "fields": null, - "inputFields": [ + }, { - "name": "geoJson", - "description": null, + "name": "_st_equals", + "description": "is the column equal to given geometry value (directionality is ignored)", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15362,11 +16023,11 @@ "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "_st_intersects", + "description": "does the column spatially intersect the given geometry value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15374,11 +16035,11 @@ "deprecationReason": null }, { - "name": "location", - "description": null, + "name": "_st_overlaps", + "description": "does the column 'spatially overlap' (intersect but not completely contain) the given geometry value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "geometry", "ofType": null }, "defaultValue": null, @@ -15386,39 +16047,24 @@ "deprecationReason": null }, { - "name": "position", - "description": null, + "name": "_st_touches", + "description": "does the column have atleast one point in common with the given geometry value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "geometry", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_pk_columns_input", - "description": "primary key columns input for table: map_points", - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "_st_within", + "description": "is the column contained in the given geometry value", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "SCALAR", + "name": "geometry", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -15430,52 +16076,83 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "mapPoints_select_column", - "description": "select columns of table \"map_points\"", + "kind": "SCALAR", + "name": "interval", + "description": null, "fields": null, "inputFields": null, "interfaces": null, - "enumValues": [ + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "interval_comparison_exp", + "description": "Boolean expression to compare columns of type \"interval\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "geoJson", - "description": "column name", + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "interval", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "interval", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "location", - "description": "column name", + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "interval", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "position", - "description": "column name", + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "interval", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_set_input", - "description": "input type for updating data in table \"map_points\"", - "fields": null, - "inputFields": [ + }, { - "name": "geoJson", + "name": "_is_null", "description": null, "type": { "kind": "SCALAR", - "name": "json", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15483,11 +16160,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_lt", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "interval", "ofType": null }, "defaultValue": null, @@ -15495,11 +16172,11 @@ "deprecationReason": null }, { - "name": "location", + "name": "_lte", "description": null, "type": { "kind": "SCALAR", - "name": "geography", + "name": "interval", "ofType": null }, "defaultValue": null, @@ -15507,69 +16184,60 @@ "deprecationReason": null }, { - "name": "position", + "name": "_neq", "description": null, "type": { "kind": "SCALAR", - "name": "geography", + "name": "interval", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_stream_cursor_input", - "description": "Streaming cursor of the table \"mapPoints\"", - "fields": null, - "inputFields": [ + }, { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "_nin", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_stream_cursor_value_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "interval", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "SCALAR", + "name": "json", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "mapPoints_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "json_comparison_exp", + "description": "Boolean expression to compare columns of type \"json\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "geoJson", + "name": "_eq", "description": null, "type": { "kind": "SCALAR", @@ -15581,11 +16249,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_gt", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "json", "ofType": null }, "defaultValue": null, @@ -15593,11 +16261,11 @@ "deprecationReason": null }, { - "name": "location", + "name": "_gte", "description": null, "type": { "kind": "SCALAR", - "name": "geography", + "name": "json", "ofType": null }, "defaultValue": null, @@ -15605,69 +16273,67 @@ "deprecationReason": null }, { - "name": "position", + "name": "_in", "description": null, "type": { - "kind": "SCALAR", - "name": "geography", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "json", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "mapPoints_update_column", - "description": "update columns of table \"map_points\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "geoJson", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "location", - "description": "column name", + "name": "_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "json", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "position", - "description": "column name", + "name": "_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "json", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "mapPoints_updates", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "_neq", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_set_input", + "kind": "SCALAR", + "name": "json", "ofType": null }, "defaultValue": null, @@ -15675,15 +16341,19 @@ "deprecationReason": null }, { - "name": "where", + "name": "_nin", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "json", + "ofType": null + } } }, "defaultValue": null, @@ -15697,7 +16367,7 @@ }, { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "description": null, "fields": null, "inputFields": null, @@ -15707,16 +16377,75 @@ }, { "kind": "INPUT_OBJECT", - "name": "money_comparison_exp", - "description": "Boolean expression to compare columns of type \"money\". All fields are combined with logical 'AND'.", + "name": "jsonb_cast_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "String", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ + { + "name": "_cast", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_cast_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_contained_in", + "description": "is the column contained in the given json value", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_contains", + "description": "does the column contain the given json value at the top level", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "_eq", "description": null, "type": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -15728,7 +16457,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -15740,13 +16469,65 @@ "description": null, "type": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_has_key", + "description": "does the string exist as a top-level key in the column", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "_has_keys_all", + "description": "do all of these strings exist as top-level keys in the column", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_has_keys_any", + "description": "do any of these strings exist as top-level keys in the column", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "_in", "description": null, @@ -15758,7 +16539,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null } } @@ -15784,7 +16565,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -15796,7 +16577,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -15808,7 +16589,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -15826,7 +16607,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "money", + "name": "jsonb", "ofType": null } } @@ -15842,40 +16623,20 @@ }, { "kind": "OBJECT", - "name": "mutation_root", - "description": "mutation root", + "name": "mapPoints", + "description": "geojson map points", "fields": [ { - "name": "abortMultipartUpload", + "name": "geoJson", "description": null, "args": [ { - "name": "fileKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uploadId", - "description": null, + "name": "path", + "description": "JSON select path", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -15883,1139 +16644,876 @@ } ], "type": { - "kind": "OBJECT", - "name": "AbortMultipartUploadReturn", + "kind": "SCALAR", + "name": "json", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "completeMultipartUpload", + "name": "id", "description": null, - "args": [ - { - "name": "fileKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PartInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uploadId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "CompleteMultipartUploadReturn", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createMultipartUpload", + "name": "location", "description": null, - "args": [ - { - "name": "fileKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numParts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "CreateMultipartUploadReturn", + "kind": "SCALAR", + "name": "geography", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertBusStop", - "description": "insert a single row into the table: \"bus_stops\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStops_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "position", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "busStops", + "kind": "SCALAR", + "name": "geography", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_bool_exp", + "description": "Boolean expression to filter rows from the table \"map_points\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "insertBusStopDeparture", - "description": "insert a single row into the table: \"bus_stop_departures\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_on_conflict", + "name": "mapPoints_bool_exp", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "busStopDepartures", - "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertBusStopDepartures", - "description": "insert data into the table: \"bus_stop_departures\"", - "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": "busStopDepartures_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "busStopDepartures_mutation_response", + "kind": "INPUT_OBJECT", + "name": "mapPoints_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertBusStops", - "description": "insert data into the table: \"bus_stops\"", - "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": "busStops_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "busStops_on_conflict", + "name": "mapPoints_bool_exp", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "geoJson", + "description": null, "type": { - "kind": "OBJECT", - "name": "busStops_mutation_response", + "kind": "INPUT_OBJECT", + "name": "json_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertCustomer", - "description": "insert a single row into the table: \"customers\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "customers_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "customers", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertCustomers", - "description": "insert data into the table: \"customers\"", - "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": "customers_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "location", + "description": null, "type": { - "kind": "OBJECT", - "name": "customers_mutation_response", + "kind": "INPUT_OBJECT", + "name": "geography_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertOrder", - "description": "insert a single row into the table: \"orders\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "position", + "description": null, "type": { - "kind": "OBJECT", - "name": "orders", + "kind": "INPUT_OBJECT", + "name": "geography_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "mapPoints_constraint", + "description": "unique or primary key constraints on table \"map_points\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "insertOrderitem", - "description": "insert a single row into the table: \"order_items\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "map_points_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_insert_input", + "description": "input type for inserting data into table \"map_points\"", + "fields": null, + "inputFields": [ + { + "name": "geoJson", + "description": null, "type": { - "kind": "OBJECT", - "name": "orderItems", + "kind": "SCALAR", + "name": "json", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertOrderitems", - "description": "insert data into the table: \"order_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": "orderItems_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "orderItems_mutation_response", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertOrders", - "description": "insert data into the table: \"orders\"", - "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": "orders_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "location", + "description": null, "type": { - "kind": "OBJECT", - "name": "orders_mutation_response", + "kind": "SCALAR", + "name": "geography", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertOrganization", - "description": "insert a single row into the table: \"organizations\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "position", + "description": null, "type": { - "kind": "OBJECT", - "name": "organizations", + "kind": "SCALAR", + "name": "geography", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "mapPoints_mutation_response", + "description": "response of any mutation on the table \"map_points\"", + "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": "insertOrganizations", - "description": "insert data into the table: \"organizations\"", - "args": [ - { - "name": "objects", - "description": "the rows 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": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_insert_input", - "ofType": null - } - } + "kind": "OBJECT", + "name": "mapPoints", + "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_on_conflict", + "description": "on_conflict condition type for table \"map_points\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, "type": { - "kind": "OBJECT", - "name": "organizations_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "mapPoints_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insertProduct", - "description": "insert a single row into the table: \"products\"", - "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": "products_insert_input", + "kind": "ENUM", + "name": "mapPoints_update_column", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "products", - "ofType": null }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "insertProducts", - "description": "insert data into the table: \"products\"", - "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": "products_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "where", + "description": null, "type": { - "kind": "OBJECT", - "name": "products_mutation_response", + "kind": "INPUT_OBJECT", + "name": "mapPoints_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_order_by", + "description": "Ordering options when selecting data from \"map_points\".", + "fields": null, + "inputFields": [ { - "name": "insert_desh", - "description": "insert data into the table: \"desh\"", - "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": "desh_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "geoJson", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_desh_one", - "description": "insert a single row into the table: \"desh\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_desh_products", - "description": "insert data into the table: \"desh_products\"", - "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": "desh_products_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_products_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "location", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_products_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_desh_products_one", - "description": "insert a single row into the table: \"desh_products\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_products_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_products_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "position", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_products", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_pk_columns_input", + "description": "primary key columns input for table: map_points", + "fields": null, + "inputFields": [ { - "name": "insert_desh_sales", - "description": "insert data into the table: \"desh_sales\"", - "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": "desh_sales_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "mapPoints_select_column", + "description": "select columns of table \"map_points\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "geoJson", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_set_input", + "description": "input type for updating data in table \"map_points\"", + "fields": null, + "inputFields": [ + { + "name": "geoJson", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_sales_mutation_response", + "kind": "SCALAR", + "name": "json", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_desh_sales_one", - "description": "insert a single row into the table: \"desh_sales\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_sales", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_desh_traffic", - "description": "insert data into the table: \"desh_traffic\"", - "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": "desh_traffic_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "location", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_traffic_mutation_response", + "kind": "SCALAR", + "name": "geography", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_desh_traffic_one", - "description": "insert a single row into the table: \"desh_traffic\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "position", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_traffic", + "kind": "SCALAR", + "name": "geography", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_stream_cursor_input", + "description": "Streaming cursor of the table \"mapPoints\"", + "fields": null, + "inputFields": [ { - "name": "insert_mapPoints", - "description": "insert data into the table: \"map_points\"", + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "geoJson", + "description": null, + "type": { + "kind": "SCALAR", + "name": "json", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "SCALAR", + "name": "geography", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": null, + "type": { + "kind": "SCALAR", + "name": "geography", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "mapPoints_update_column", + "description": "update columns of table \"map_points\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "geoJson", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "mapPoints_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": "mapPoints_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "money", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "money_comparison_exp", + "description": "Boolean expression to compare columns of type \"money\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "money", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "money", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "mutation_root", + "description": "mutation root", + "fields": [ + { + "name": "abortMultipartUpload", + "description": null, "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "fileKey", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -17023,12 +17521,16 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "uploadId", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -17037,25 +17539,41 @@ ], "type": { "kind": "OBJECT", - "name": "mapPoints_mutation_response", + "name": "AbortMultipartUploadReturn", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_mapPoints_one", - "description": "insert a single row into the table: \"map_points\"", + "name": "completeMultipartUpload", + "description": null, "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "fileKey", + "description": null, "type": { "kind": "NON_NULL", "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parts", + "description": null, + "type": { + "kind": "LIST", + "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "mapPoints_insert_input", + "name": "PartInput", "ofType": null } }, @@ -17064,12 +17582,16 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "uploadId", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -17078,34 +17600,26 @@ ], "type": { "kind": "OBJECT", - "name": "mapPoints", + "name": "CompleteMultipartUploadReturn", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_types_test", - "description": "insert data into the table: \"types_test\"", + "name": "createMultipartUpload", + "description": null, "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "fileKey", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "types_test_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -17113,11 +17627,23 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "metadata", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_on_conflict", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "numParts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17127,90 +17653,83 @@ ], "type": { "kind": "OBJECT", - "name": "types_test_mutation_response", + "name": "CreateMultipartUploadReturn", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_types_test_one", - "description": "insert a single row into the table: \"types_test\"", + "name": "deleteBusStop", + "description": "delete single row from the table: \"bus_stops\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "types_test_insert_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "types_test", + "name": "busStops", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateBusStop", - "description": "update single row of the table: \"bus_stops\"", + "name": "deleteBusStopDeparture", + "description": "delete single row from the table: \"bus_stop_departures\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteBusStopDepartures", + "description": "delete data from the table: \"bus_stop_departures\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStops_pk_columns_input", + "name": "busStopDepartures_bool_exp", "ofType": null } }, @@ -17221,37 +17740,25 @@ ], "type": { "kind": "OBJECT", - "name": "busStops", + "name": "busStopDepartures_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateBusStopDeparture", - "description": "update single row of the table: \"bus_stop_departures\"", + "name": "deleteBusStops", + "description": "delete data from the table: \"bus_stops\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_pk_columns_input", + "name": "busStops_bool_exp", "ofType": null } }, @@ -17262,37 +17769,54 @@ ], "type": { "kind": "OBJECT", - "name": "busStopDepartures", + "name": "busStops_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateBusStopDepartures", - "description": "update data of the table: \"bus_stop_departures\"", + "name": "deleteCustomer", + "description": "delete single row from the table: \"customers\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "customers", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomers", + "description": "delete data from the table: \"customers\"", + "args": [ { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", + "name": "customers_bool_exp", "ofType": null } }, @@ -17303,49 +17827,54 @@ ], "type": { "kind": "OBJECT", - "name": "busStopDepartures_mutation_response", + "name": "customers_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateBusStops", - "description": "update data of the table: \"bus_stops\"", + "name": "deleteOrder", + "description": "delete single row from the table: \"orders\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "busStops_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "orders", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOrders", + "description": "delete data from the table: \"orders\"", + "args": [ { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", + "name": "orders_bool_exp", "ofType": null } }, @@ -17356,37 +17885,25 @@ ], "type": { "kind": "OBJECT", - "name": "busStops_mutation_response", + "name": "orders_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateCustomer", - "description": "update single row of the table: \"customers\"", + "name": "deleteOrganization", + "description": "delete single row from the table: \"organizations\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "customers_pk_columns_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, @@ -17397,37 +17914,25 @@ ], "type": { "kind": "OBJECT", - "name": "customers", + "name": "organizations", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateCustomers", - "description": "update data of the table: \"customers\"", + "name": "deleteOrganizations", + "description": "delete data from the table: \"organizations\"", "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", + "name": "organizations_bool_exp", "ofType": null } }, @@ -17438,37 +17943,25 @@ ], "type": { "kind": "OBJECT", - "name": "customers_mutation_response", + "name": "organizations_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateOrder", - "description": "update single row of the table: \"orders\"", + "name": "deleteProduct", + "description": "delete single row from the table: \"products\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_pk_columns_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, @@ -17479,49 +17972,25 @@ ], "type": { "kind": "OBJECT", - "name": "orders", + "name": "products", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateOrderItem", - "description": "update single row of the table: \"order_items\"", + "name": "deleteProducts", + "description": "delete data from the table: \"products\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_pk_columns_input", + "name": "products_bool_exp", "ofType": null } }, @@ -17532,49 +18001,25 @@ ], "type": { "kind": "OBJECT", - "name": "orderItems", + "name": "products_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateOrderItems", - "description": "update data of the table: \"order_items\"", + "name": "delete_accounts", + "description": "delete data from the table: \"accounts\"", "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "name": "accounts_bool_exp", "ofType": null } }, @@ -17585,37 +18030,54 @@ ], "type": { "kind": "OBJECT", - "name": "orderItems_mutation_response", + "name": "accounts_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateOrders", - "description": "update data of the table: \"orders\"", + "name": "delete_accounts_by_pk", + "description": "delete single row from the table: \"accounts\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orders_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_desh", + "description": "delete data from the table: \"desh\"", + "args": [ { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "name": "desh_bool_exp", "ofType": null } }, @@ -17626,49 +18088,25 @@ ], "type": { "kind": "OBJECT", - "name": "orders_mutation_response", + "name": "desh_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateOrganization", - "description": "update single row of the table: \"organizations\"", + "name": "delete_desh_by_pk", + "description": "delete single row from the table: \"desh\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_pk_columns_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, @@ -17679,49 +18117,25 @@ ], "type": { "kind": "OBJECT", - "name": "organizations", + "name": "desh", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateOrganizations", - "description": "update data of the table: \"organizations\"", + "name": "delete_desh_products", + "description": "delete data from the table: \"desh_products\"", "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "name": "desh_products_bool_exp", "ofType": null } }, @@ -17732,49 +18146,25 @@ ], "type": { "kind": "OBJECT", - "name": "organizations_mutation_response", + "name": "desh_products_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateProduct", - "description": "update single row of the table: \"products\"", + "name": "delete_desh_products_by_pk", + "description": "delete single row from the table: \"desh_products\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "products_pk_columns_input", + "kind": "SCALAR", + "name": "uuid", "ofType": null } }, @@ -17785,49 +18175,25 @@ ], "type": { "kind": "OBJECT", - "name": "products", + "name": "desh_products", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateProducts", - "description": "update data of the table: \"products\"", + "name": "delete_desh_sales", + "description": "delete data from the table: \"desh_sales\"", "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "desh_sales_bool_exp", "ofType": null } }, @@ -17838,34 +18204,26 @@ ], "type": { "kind": "OBJECT", - "name": "products_mutation_response", + "name": "desh_sales_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_busStopDepartures_many", - "description": "update multiples rows of table: \"bus_stop_departures\"", + "name": "delete_desh_sales_by_pk", + "description": "delete single row from the table: \"desh_sales\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStopDepartures_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null, @@ -17874,39 +18232,27 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "busStopDepartures_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "desh_sales", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_busStops_many", - "description": "update multiples rows of table: \"bus_stops\"", + "name": "delete_desh_traffic", + "description": "delete data from the table: \"desh_traffic\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "busStops_updates", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "desh_traffic_bool_exp", + "ofType": null } }, "defaultValue": null, @@ -17915,39 +18261,27 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "busStops_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "desh_traffic_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_customers_many", - "description": "update multiples rows of table: \"customers\"", + "name": "delete_desh_traffic_by_pk", + "description": "delete single row from the table: \"desh_traffic\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "customers_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null, @@ -17956,54 +18290,26 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "customers_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "desh_traffic", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh", - "description": "update data of the table: \"desh\"", + "name": "delete_mapPoints", + "description": "delete data from the table: \"map_points\"", "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_bool_exp", + "name": "mapPoints_bool_exp", "ofType": null } }, @@ -18014,49 +18320,54 @@ ], "type": { "kind": "OBJECT", - "name": "desh_mutation_response", + "name": "mapPoints_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_by_pk", - "description": "update single row of the table: \"desh\"", + "name": "delete_mapPoints_by_pk", + "description": "delete single row from the table: \"map_points\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "desh_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "mapPoints", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_types_test", + "description": "delete data from the table: \"types_test\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_pk_columns_input", + "name": "types_test_bool_exp", "ofType": null } }, @@ -18067,34 +18378,26 @@ ], "type": { "kind": "OBJECT", - "name": "desh", + "name": "types_test_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_many", - "description": "update multiples rows of table: \"desh\"", + "name": "delete_types_test_by_pk", + "description": "delete single row from the table: \"types_test\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null, @@ -18103,44 +18406,40 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "types_test", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_products", - "description": "update data of the table: \"desh_products\"", + "name": "insertBusStop", + "description": "insert a single row into the table: \"bus_stops\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "desh_products_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_products_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "busStops_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -18149,39 +18448,39 @@ ], "type": { "kind": "OBJECT", - "name": "desh_products_mutation_response", + "name": "busStops", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_products_by_pk", - "description": "update single row of the table: \"desh_products\"", + "name": "insertBusStopDeparture", + "description": "insert a single row into the table: \"bus_stop_departures\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "desh_products_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_products_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -18190,19 +18489,19 @@ ], "type": { "kind": "OBJECT", - "name": "desh_products", + "name": "busStopDepartures", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_products_many", - "description": "update multiples rows of table: \"desh_products\"", + "name": "insertBusStopDepartures", + "description": "insert data into the table: \"bus_stop_departures\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18214,7 +18513,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_products_updates", + "name": "busStopDepartures_insert_input", "ofType": null } } @@ -18223,133 +18522,125 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh_products_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "busStopDepartures_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_sales", - "description": "update data of the table: \"desh_sales\"", + "name": "insertBusStops", + "description": "insert data into the table: \"bus_stops\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "desh_sales_set_input", + "name": "busStops_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "desh_sales_mutation_response", + "name": "busStops_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_sales_by_pk", - "description": "update single row of the table: \"desh_sales\"", + "name": "insertCustomer", + "description": "insert a single row into the table: \"customers\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customers_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "desh_sales_set_input", + "name": "customers_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "desh_sales", + "name": "customers", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_sales_many", - "description": "update multiples rows of table: \"desh_sales\"", + "name": "insertCustomers", + "description": "insert data into the table: \"customers\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18361,7 +18652,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_sales_updates", + "name": "customers_insert_input", "ofType": null } } @@ -18370,133 +18661,76 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh_sales_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_desh_traffic", - "description": "update data of the table: \"desh_traffic\"", - "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_set_input", + "name": "customers_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "desh_traffic_mutation_response", + "name": "customers_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_traffic_by_pk", - "description": "update single row of the table: \"desh_traffic\"", + "name": "insertEvent", + "description": "insert a single row into the table: \"events\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_set_input", + "name": "events_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "desh_traffic", + "name": "events", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_desh_traffic_many", - "description": "update multiples rows of table: \"desh_traffic\"", + "name": "insertEvents", + "description": "insert data into the table: \"events\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18508,7 +18742,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_updates", + "name": "events_insert_input", "ofType": null } } @@ -18517,47 +18751,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh_traffic_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "events_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_mapPoints", - "description": "update data of the table: \"map_points\"", + "name": "insertOrder", + "description": "insert a single row into the table: \"orders\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "orders_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -18566,39 +18808,39 @@ ], "type": { "kind": "OBJECT", - "name": "mapPoints_mutation_response", + "name": "orders", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_mapPoints_by_pk", - "description": "update single row of the table: \"map_points\"", + "name": "insertOrderitem", + "description": "insert a single row into the table: \"order_items\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "orderItems_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -18607,19 +18849,19 @@ ], "type": { "kind": "OBJECT", - "name": "mapPoints", + "name": "orderItems", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_mapPoints_many", - "description": "update multiples rows of table: \"map_points\"", + "name": "insertOrderitems", + "description": "insert data into the table: \"order_items\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18631,7 +18873,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "mapPoints_updates", + "name": "orderItems_insert_input", "ofType": null } } @@ -18640,27 +18882,35 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "mapPoints_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "orderItems_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_orderItems_many", - "description": "update multiples rows of table: \"order_items\"", + "name": "insertOrders", + "description": "insert data into the table: \"orders\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18672,7 +18922,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_updates", + "name": "orders_insert_input", "ofType": null } } @@ -18681,68 +18931,76 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orderItems_mutation_response", - "ofType": null - } + ], + "type": { + "kind": "OBJECT", + "name": "orders_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_orders_many", - "description": "update multiples rows of table: \"orders\"", + "name": "insertOrganization", + "description": "insert a single row into the table: \"organizations\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_updates", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "organizations_insert_input", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orders_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "organizations", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_organizations_many", - "description": "update multiples rows of table: \"organizations\"", + "name": "insertOrganizations", + "description": "insert data into the table: \"organizations\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18754,7 +19012,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_updates", + "name": "organizations_insert_input", "ofType": null } } @@ -18763,27 +19021,76 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organizations_mutation_response", - "ofType": null + "kind": "OBJECT", + "name": "organizations_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insertProduct", + "description": "insert a single row into the table: \"products\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "products", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_products_many", - "description": "update multiples rows of table: \"products\"", + "name": "insertProducts", + "description": "insert data into the table: \"products\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -18795,7 +19102,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_updates", + "name": "products_insert_input", "ofType": null } } @@ -18804,119 +19111,194 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "products_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "products_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_types_test", - "description": "update data of the table: \"types_test\"", + "name": "insertTestX", + "description": "insert a single row into the table: \"test_x\"", "args": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_append_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "testX_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_delete_at_path_input", + "name": "testX_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "testX", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insertTestXes", + "description": "insert data into the table: \"test_x\"", + "args": [ { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_delete_elem_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "testX_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_delete_key_input", + "name": "testX_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "testX_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_accounts", + "description": "insert data into the table: \"accounts\"", + "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_prepend_input", + "name": "accounts_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "accounts_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_accounts_one", + "description": "insert a single row into the table: \"accounts\"", + "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "types_test_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "accounts_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -18925,111 +19307,178 @@ ], "type": { "kind": "OBJECT", - "name": "types_test_mutation_response", + "name": "accounts", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_types_test_by_pk", - "description": "update single row of the table: \"types_test\"", + "name": "insert_desh", + "description": "insert data into the table: \"desh\"", "args": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_append_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_delete_at_path_input", + "name": "desh_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "desh_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_desh_one", + "description": "insert a single row into the table: \"desh\"", + "args": [ { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_delete_elem_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_delete_key_input", + "name": "desh_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "desh", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_desh_products", + "description": "insert data into the table: \"desh_products\"", + "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_products_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_prepend_input", + "name": "desh_products_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "desh_products_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_desh_products_one", + "description": "insert a single row into the table: \"desh_products\"", + "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_products_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "types_test_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "desh_products_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -19038,19 +19487,19 @@ ], "type": { "kind": "OBJECT", - "name": "types_test", + "name": "desh_products", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_types_test_many", - "description": "update multiples rows of table: \"types_test\"", + "name": "insert_desh_sales", + "description": "insert data into the table: \"desh_sales\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -19062,7 +19511,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "types_test_updates", + "name": "desh_sales_insert_input", "ofType": null } } @@ -19071,1064 +19520,2671 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "types_test_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "desh_sales_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": "numeric_comparison_exp", - "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_eq", - "description": null, + "name": "insert_desh_sales_one", + "description": "insert a single row into the table: \"desh_sales\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "desh_sales", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gt", - "description": null, + "name": "insert_desh_traffic", + "description": "insert data into the table: \"desh_traffic\"", + "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": "desh_traffic_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "desh_traffic_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gte", - "description": null, + "name": "insert_desh_traffic_one", + "description": "insert a single row into the table: \"desh_traffic\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "desh_traffic", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", + "name": "insert_mapPoints", + "description": "insert data into the table: \"map_points\"", + "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": "mapPoints_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_on_conflict", "ofType": null - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_is_null", - "description": null, + ], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "mapPoints_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lt", - "description": null, + "name": "insert_mapPoints_one", + "description": "insert a single row into the table: \"map_points\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "mapPoints", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lte", - "description": null, + "name": "insert_types_test", + "description": "insert data into the table: \"types_test\"", + "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": "types_test_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "types_test_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_neq", - "description": null, + "name": "insert_types_test_one", + "description": "insert a single row into the table: \"types_test\"", + "args": [ + { + "name": "object", + "description": "the row to be inserted", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "types_test_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "types_test", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", + "name": "updateBusStop", + "description": "update single row of the table: \"bus_stops\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_inc_input", "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "orderItems", - "description": "List of items", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "OBJECT", + "name": "busStops", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_deleted", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "name": "updateBusStopDeparture", + "description": "update single row of the table: \"bus_stop_departures\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": "An object relationship", - "args": [], + ], "type": { "kind": "OBJECT", - "name": "orders", + "name": "busStopDepartures", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orders_id", - "description": null, - "args": [], + "name": "updateBusStopDepartures", + "description": "update data of the table: \"bus_stop_departures\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "busStopDepartures_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "product", - "description": "An object relationship", - "args": [], + "name": "updateBusStops", + "description": "update data of the table: \"bus_stops\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "products", + "name": "busStops_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", - "description": null, - "args": [], + "name": "updateCustomer", + "description": "update single row of the table: \"customers\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "customers_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customers_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "customers", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, - "args": [], + "name": "updateCustomers", + "description": "update data of the table: \"customers\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "customers_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customers_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "customers_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "name": "updateEvent", + "description": "update single row of the table: \"events\"", + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_aggregate_order_by", - "description": "order by aggregate values of table \"order_items\"", - "fields": null, - "inputFields": [ - { - "name": "avg", - "description": null, + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_avg_order_by", + "kind": "OBJECT", + "name": "events", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", - "description": null, + "name": "updateEvents", + "description": "update data of the table: \"events\"", + "args": [ + { + "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, + "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": "events_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "events_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", - "description": null, + "name": "updateOrder", + "description": "update single row of the table: \"orders\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_max_order_by", + "kind": "OBJECT", + "name": "orders", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", - "description": null, + "name": "updateOrderItem", + "description": "update single row of the table: \"order_items\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_min_order_by", + "kind": "OBJECT", + "name": "orderItems", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", - "description": null, + "name": "updateOrderItems", + "description": "update data of the table: \"order_items\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_stddev_order_by", + "kind": "OBJECT", + "name": "orderItems_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", - "description": null, + "name": "updateOrders", + "description": "update data of the table: \"orders\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_stddev_pop_order_by", + "kind": "OBJECT", + "name": "orders_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", - "description": null, + "name": "updateOrganization", + "description": "update single row of the table: \"organizations\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organizations_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_stddev_samp_order_by", + "kind": "OBJECT", + "name": "organizations", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", - "description": null, + "name": "updateOrganizations", + "description": "update data of the table: \"organizations\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organizations_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_sum_order_by", + "kind": "OBJECT", + "name": "organizations_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_var_pop_order_by", - "ofType": null - }, - "defaultValue": null, + "name": "updateProduct", + "description": "update single row of the table: \"products\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "products", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", - "description": null, + "name": "updateProducts", + "description": "update data of the table: \"products\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_var_samp_order_by", + "kind": "OBJECT", + "name": "products_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", - "description": null, + "name": "updateTestX", + "description": "update single row of the table: \"test_x\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "testX_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "testX_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_variance_order_by", + "kind": "OBJECT", + "name": "testX", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"order_items\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "updateTestXes", + "description": "update data of the table: \"test_x\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "testX_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_insert_input", + "name": "testX_bool_exp", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "testX_mutation_response", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "update_accounts", + "description": "update data of the table: \"accounts\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_on_conflict", + "kind": "OBJECT", + "name": "accounts_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_avg_order_by", - "description": "order by avg() on columns of table \"order_items\"", - "fields": null, - "inputFields": [ + }, { - "name": "price", - "description": null, + "name": "update_accounts_by_pk", + "description": "update single row of the table: \"accounts\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "accounts", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, + "name": "update_accounts_many", + "description": "update multiples rows of table: \"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": "accounts_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "description": "Boolean expression to filter rows from the table \"order_items\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", - "description": null, + "name": "update_busStopDepartures_many", + "description": "update multiples rows of table: \"bus_stop_departures\"", + "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": "busStopDepartures_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "busStopDepartures_mutation_response", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", - "description": null, + "name": "update_busStops_many", + "description": "update multiples rows of table: \"bus_stops\"", + "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": "busStops_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStops_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", - "description": null, + "name": "update_customers_many", + "description": "update multiples rows of table: \"customers\"", + "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": "customers_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "customers_mutation_response", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "update_desh", + "description": "update data of the table: \"desh\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "OBJECT", + "name": "desh_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_desh_by_pk", + "description": "update single row of the table: \"desh\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "OBJECT", + "name": "desh", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_deleted", - "description": null, + "name": "update_desh_many", + "description": "update multiples rows of table: \"desh\"", + "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": "desh_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order", - "description": null, + "name": "update_desh_products", + "description": "update data of the table: \"desh_products\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_products_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_products_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "kind": "OBJECT", + "name": "desh_products_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "orders_id", - "description": null, + "name": "update_desh_products_by_pk", + "description": "update single row of the table: \"desh_products\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_products_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_products_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "OBJECT", + "name": "desh_products", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", - "description": null, + "name": "update_desh_products_many", + "description": "update multiples rows of table: \"desh_products\"", + "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": "desh_products_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "money_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_products_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product", - "description": null, + "name": "update_desh_sales", + "description": "update data of the table: \"desh_sales\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "kind": "OBJECT", + "name": "desh_sales_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", - "description": null, + "name": "update_desh_sales_by_pk", + "description": "update single row of the table: \"desh_sales\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "OBJECT", + "name": "desh_sales", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, + "name": "update_desh_sales_many", + "description": "update multiples rows of table: \"desh_sales\"", + "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": "desh_sales_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_sales_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "orderItems_constraint", - "description": "unique or primary key constraints on table \"order_items\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "order_items_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_inc_input", - "description": "input type for incrementing numeric columns in table \"order_items\"", - "fields": null, - "inputFields": [ - { - "name": "price", - "description": null, + "name": "update_desh_traffic", + "description": "update data of the table: \"desh_traffic\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "money", + "kind": "OBJECT", + "name": "desh_traffic_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, + "name": "update_desh_traffic_by_pk", + "description": "update single row of the table: \"desh_traffic\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "desh_traffic", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_insert_input", - "description": "input type for inserting data into table \"order_items\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orders_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "product", - "description": null, + "name": "update_desh_traffic_many", + "description": "update multiples rows of table: \"desh_traffic\"", + "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": "desh_traffic_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "products_obj_rel_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_traffic_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", - "description": 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, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, + "name": "update_mapPoints", + "description": "update data of the table: \"map_points\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "mapPoints_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_max_order_by", - "description": "order by max() on columns of table \"order_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, + "name": "update_mapPoints_by_pk", + "description": "update single row of the table: \"map_points\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "mapPoints", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_mapPoints_many", + "description": "update multiples rows of table: \"map_points\"", + "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": "mapPoints_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "mapPoints_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "orders_id", - "description": null, + "name": "update_orderItems_many", + "description": "update multiples rows of table: \"order_items\"", + "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": "orderItems_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "orderItems_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", - "description": null, + "name": "update_orders_many", + "description": "update multiples rows of table: \"orders\"", + "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": "orders_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "orders_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", - "description": null, + "name": "update_organizations_many", + "description": "update multiples rows of table: \"organizations\"", + "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": "organizations_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "organizations_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, + "name": "update_products_many", + "description": "update multiples rows of table: \"products\"", + "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": "products_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "products_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_min_order_by", - "description": "order by min() on columns of table \"order_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, + "name": "update_testX_many", + "description": "update multiples rows of table: \"test_x\"", + "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": "testX_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "testX_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_types_test", + "description": "update data of the table: \"types_test\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_append_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "types_test_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "types_test_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "orders_id", - "description": null, + "name": "update_types_test_by_pk", + "description": "update single row of the table: \"types_test\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_append_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "types_test_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "types_test", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", - "description": null, + "name": "update_types_test_many", + "description": "update multiples rows of table: \"types_test\"", + "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": "types_test_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "types_test_mutation_response", + "ofType": null + } }, - "defaultValue": 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": "numeric_comparison_exp", + "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "product_id", + "name": "_eq", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -20136,11 +22192,11 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "_gt", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -20148,130 +22204,104 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "_gte", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "orderItems_mutation_response", - "description": "response of any mutation on the table \"order_items\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "_in", + "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": "numeric", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "_is_null", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orderItems", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_on_conflict", - "description": "on_conflict condition type for table \"order_items\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", + "name": "_lt", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "orderItems_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "numeric", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "_lte", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "orderItems_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "numeric", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "_neq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -20279,246 +22309,274 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "orderItems_order_by", - "description": "Ordering options when selecting data from \"order_items\".", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orderItems", + "description": "List of items", + "fields": [ { "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "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": "is_deleted", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "order", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "orders_order_by", + "kind": "OBJECT", + "name": "orders", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "orders_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "price", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "money", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "product", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "products_order_by", + "kind": "OBJECT", + "name": "products", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "product_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "quantity", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "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 } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "orderItems_pk_columns_input", - "description": "primary key columns input for table: order_items", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orderItems_aggregate", + "description": "aggregated selection of \"order_items\"", + "fields": [ { - "name": "id", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "orderItems_aggregate_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", "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": "orderItems", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "orderItems_select_column", - "description": "select columns of table \"order_items\"", + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp", + "description": null, "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": "is_deleted", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orders_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "product_id", - "description": "column name", + "name": "bool_and", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp_bool_and", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": "column name", + "name": "bool_or", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp_bool_or", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "orderItems_set_input", - "description": "input type for updating data in table \"order_items\"", + "name": "orderItems_aggregate_bool_exp_bool_and", + "description": null, "fields": null, "inputFields": [ { - "name": "created_at", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "orderItems_select_column_orderItems_aggregate_bool_exp_bool_and_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -20526,11 +22584,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -20538,35 +22596,54 @@ "deprecationReason": null }, { - "name": "orders_id", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp_bool_or", + "description": null, + "fields": null, + "inputFields": [ { - "name": "price", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "orderItems_select_column_orderItems_aggregate_bool_exp_bool_or_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -20574,11 +22651,11 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -20586,12 +22663,16 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -20604,51 +22685,48 @@ }, { "kind": "INPUT_OBJECT", - "name": "orderItems_stddev_order_by", - "description": "order by stddev() on columns of table \"order_items\"", + "name": "orderItems_aggregate_bool_exp_count", + "description": null, "fields": null, "inputFields": [ { - "name": "price", + "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": "orderItems_select_column", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"order_items\"", - "fields": null, - "inputFields": [ + }, { - "name": "price", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -20656,12 +22734,16 @@ "deprecationReason": null }, { - "name": "quantity", + "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, "isDeprecated": false, @@ -20673,198 +22755,197 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "orderItems_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"order_items\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orderItems_aggregate_fields", + "description": "aggregate fields of \"order_items\"", + "fields": [ { - "name": "price", + "name": "avg", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "orderItems_avg_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", + "name": "count", "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_stream_cursor_input", - "description": "Streaming cursor of the table \"orderItems\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "orderItems_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_stream_cursor_value_input", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "max", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "OBJECT", + "name": "orderItems_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "min", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "orderItems_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "stddev", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "orderItems_stddev_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_deleted", + "name": "stddev_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "orderItems_stddev_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "orders_id", + "name": "stddev_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "orderItems_stddev_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", + "name": "sum", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "money", + "kind": "OBJECT", + "name": "orderItems_sum_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", + "name": "var_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "OBJECT", + "name": "orderItems_var_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", + "name": "var_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "orderItems_var_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "variance", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "orderItems_variance_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "orderItems_sum_order_by", - "description": "order by sum() on columns of table \"order_items\"", + "name": "orderItems_aggregate_order_by", + "description": "order by aggregate values of table \"order_items\"", "fields": null, "inputFields": [ { - "name": "price", + "name": "avg", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "orderItems_avg_order_by", "ofType": null }, "defaultValue": null, @@ -20872,7 +22953,7 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "count", "description": null, "type": { "kind": "ENUM", @@ -20882,83 +22963,61 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "orderItems_update_column", - "description": "update columns of table \"order_items\"", - "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": "is_deleted", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orders_id", - "description": "column name", + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_max_order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", - "description": "column name", + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_min_order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_id", - "description": "column name", + "name": "stddev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_stddev_order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": "column name", + "name": "stddev_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_stddev_pop_order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orderItems_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "stddev_samp", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_inc_input", + "name": "orderItems_stddev_samp_order_by", "ofType": null }, "defaultValue": null, @@ -20966,11 +23025,11 @@ "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "sum", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_set_input", + "name": "orderItems_sum_order_by", "ofType": null }, "defaultValue": null, @@ -20978,16 +23037,36 @@ "deprecationReason": null }, { - "name": "where", + "name": "var_pop", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "orderItems_var_pop_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_var_samp_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_variance_order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -21000,28 +23079,40 @@ }, { "kind": "INPUT_OBJECT", - "name": "orderItems_var_pop_order_by", - "description": "order by var_pop() on columns of table \"order_items\"", + "name": "orderItems_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"order_items\"", "fields": null, "inputFields": [ { - "name": "price", + "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": "orderItems_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "orderItems_on_conflict", "ofType": null }, "defaultValue": null, @@ -21034,44 +23125,44 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "orderItems_var_samp_order_by", - "description": "order by var_samp() on columns of table \"order_items\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orderItems_avg_fields", + "description": "aggregate avg on columns", + "fields": [ { "name": "price", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "quantity", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "orderItems_variance_order_by", - "description": "order by variance() on columns of table \"order_items\"", + "name": "orderItems_avg_order_by", + "description": "order by avg() on columns of table \"order_items\"", "fields": null, "inputFields": [ { @@ -21104,312 +23195,153 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "order_by", - "description": "column ordering options", + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "description": "Boolean expression to filter rows from the table \"order_items\". All fields are combined with a logical 'AND'.", "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": "orders", - "description": "List of orders", - "fields": [ + "inputFields": [ { - "name": "created_at", + "name": "_and", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "customers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customer_id", + "name": "_not", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_deleted", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_date", + "name": "id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "date", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_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": "orderItems_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "is_deleted", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orderItems", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_status", + "name": "order", "description": null, - "args": [], "type": { - "kind": "ENUM", - "name": "status_types_enum", + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "shipped_date", + "name": "orders_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "date", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_type", - "description": "An object relationship", - "args": [], + "name": "price", + "description": null, "type": { - "kind": "OBJECT", - "name": "status_types", + "kind": "INPUT_OBJECT", + "name": "money_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "product", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orders_aggregate_order_by", - "description": "order by aggregate values of table \"orders\"", - "fields": null, - "inputFields": [ + }, { - "name": "count", + "name": "product_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -21417,11 +23349,11 @@ "deprecationReason": null }, { - "name": "max", + "name": "quantity", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orders_max_order_by", + "name": "Int_comparison_exp", "ofType": null }, "defaultValue": null, @@ -21429,11 +23361,11 @@ "deprecationReason": null }, { - "name": "min", + "name": "updated_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orders_min_order_by", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -21445,42 +23377,47 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "orderItems_constraint", + "description": "unique or primary key constraints on table \"order_items\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "order_items_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "orders_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"orders\"", + "name": "orderItems_inc_input", + "description": "input type for incrementing numeric columns in table \"order_items\"", "fields": null, "inputFields": [ { - "name": "data", + "name": "price", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_insert_input", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "money", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "quantity", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orders_on_conflict", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -21494,36 +23431,28 @@ }, { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", - "description": "Boolean expression to filter rows from the table \"orders\". All fields are combined with a logical 'AND'.", + "name": "orderItems_insert_input", + "description": "input type for inserting data into table \"order_items\"", "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": "orders_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -21531,31 +23460,23 @@ "deprecationReason": null }, { - "name": "_or", + "name": "is_deleted", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "order", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "orders_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -21563,11 +23484,11 @@ "deprecationReason": null }, { - "name": "customer", + "name": "orders_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -21575,11 +23496,11 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "money", "ofType": null }, "defaultValue": null, @@ -21587,11 +23508,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "product", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "products_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -21599,11 +23520,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "product_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -21611,11 +23532,11 @@ "deprecationReason": null }, { - "name": "order_date", + "name": "quantity", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -21623,135 +23544,129 @@ "deprecationReason": null }, { - "name": "order_items", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "orderItems_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "order_status", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "status_types_enum_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "shipped_date", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_type", + "name": "orders_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "price", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "money", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "orders_constraint", - "description": "unique or primary key constraints on table \"orders\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "orders_pkey", - "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orders_insert_input", - "description": "input type for inserting data into table \"orders\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "product_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer", + "name": "quantity", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "customers_obj_rel_insert_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer_id", + "name": "updated_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "uuid", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "orderItems_max_order_by", + "description": "order by max() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ { - "name": "id", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21759,11 +23674,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21771,11 +23686,11 @@ "deprecationReason": null }, { - "name": "order_date", + "name": "orders_id", "description": null, "type": { - "kind": "SCALAR", - "name": "date", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21783,11 +23698,11 @@ "deprecationReason": null }, { - "name": "order_items", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_arr_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21795,11 +23710,11 @@ "deprecationReason": null }, { - "name": "order_status", + "name": "product_id", "description": null, "type": { "kind": "ENUM", - "name": "status_types_enum", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21807,11 +23722,11 @@ "deprecationReason": null }, { - "name": "shipped_date", + "name": "quantity", "description": null, "type": { - "kind": "SCALAR", - "name": "date", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21822,8 +23737,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21836,92 +23751,104 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "orders_max_order_by", - "description": "order by max() on columns of table \"orders\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orderItems_min_fields", + "description": "aggregate min on columns", + "fields": [ { "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer_id", + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "orders_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "money", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "shipped_date", + "name": "product_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "orders_min_order_by", - "description": "order by min() on columns of table \"orders\"", + "name": "orderItems_min_order_by", + "description": "order by min() on columns of table \"order_items\"", "fields": null, "inputFields": [ { @@ -21937,7 +23864,7 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -21949,7 +23876,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "orders_id", "description": null, "type": { "kind": "ENUM", @@ -21961,7 +23888,7 @@ "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": null, "type": { "kind": "ENUM", @@ -21973,7 +23900,19 @@ "deprecationReason": null }, { - "name": "shipped_date", + "name": "product_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", "description": null, "type": { "kind": "ENUM", @@ -22003,8 +23942,8 @@ }, { "kind": "OBJECT", - "name": "orders_mutation_response", - "description": "response of any mutation on the table \"orders\"", + "name": "orderItems_mutation_response", + "description": "response of any mutation on the table \"order_items\"", "fields": [ { "name": "affected_rows", @@ -22037,7 +23976,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orders", + "name": "orderItems", "ofType": null } } @@ -22054,47 +23993,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "orders_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"orders\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "orders_on_conflict", - "description": "on_conflict condition type for table \"orders\"", + "name": "orderItems_on_conflict", + "description": "on_conflict condition type for table \"order_items\"", "fields": null, "inputFields": [ { @@ -22105,7 +24005,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "orders_constraint", + "name": "orderItems_constraint", "ofType": null } }, @@ -22127,7 +24027,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "orders_update_column", + "name": "orderItems_update_column", "ofType": null } } @@ -22142,7 +24042,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -22156,8 +24056,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "orders_order_by", - "description": "Ordering options when selecting data from \"orders\".", + "name": "orderItems_order_by", + "description": "Ordering options when selecting data from \"order_items\".", "fields": null, "inputFields": [ { @@ -22173,11 +24073,11 @@ "deprecationReason": null }, { - "name": "customer", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "customers_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -22185,7 +24085,7 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "is_deleted", "description": null, "type": { "kind": "ENUM", @@ -22197,11 +24097,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "order", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "orders_order_by", "ofType": null }, "defaultValue": null, @@ -22209,7 +24109,7 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "orders_id", "description": null, "type": { "kind": "ENUM", @@ -22221,7 +24121,7 @@ "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": null, "type": { "kind": "ENUM", @@ -22233,11 +24133,11 @@ "deprecationReason": null }, { - "name": "order_items_aggregate", + "name": "product", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_aggregate_order_by", + "name": "products_order_by", "ofType": null }, "defaultValue": null, @@ -22245,7 +24145,7 @@ "deprecationReason": null }, { - "name": "order_status", + "name": "product_id", "description": null, "type": { "kind": "ENUM", @@ -22257,7 +24157,7 @@ "deprecationReason": null }, { - "name": "shipped_date", + "name": "quantity", "description": null, "type": { "kind": "ENUM", @@ -22268,18 +24168,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "status_type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "status_types_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "updated_at", "description": null, @@ -22299,8 +24187,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "orders_pk_columns_input", - "description": "primary key columns input for table: orders", + "name": "orderItems_pk_columns_input", + "description": "primary key columns input for table: order_items", "fields": null, "inputFields": [ { @@ -22326,8 +24214,8 @@ }, { "kind": "ENUM", - "name": "orders_select_column", - "description": "select columns of table \"orders\"", + "name": "orderItems_select_column", + "description": "select columns of table \"order_items\"", "fields": null, "inputFields": null, "interfaces": null, @@ -22339,37 +24227,37 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "is_deleted", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "is_deleted", + "name": "orders_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "order_status", + "name": "product_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "shipped_date", + "name": "quantity", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -22383,10 +24271,44 @@ ], "possibleTypes": null }, + { + "kind": "ENUM", + "name": "orderItems_select_column_orderItems_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"orderItems_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"order_items\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "is_deleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "orderItems_select_column_orderItems_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"orderItems_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"order_items\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "is_deleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "orders_set_input", - "description": "input type for updating data in table \"orders\"", + "name": "orderItems_set_input", + "description": "input type for updating data in table \"order_items\"", "fields": null, "inputFields": [ { @@ -22402,7 +24324,7 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -22414,11 +24336,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "is_deleted", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -22426,11 +24348,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "orders_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -22438,11 +24360,11 @@ "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "money", "ofType": null }, "defaultValue": null, @@ -22450,11 +24372,11 @@ "deprecationReason": null }, { - "name": "order_status", + "name": "product_id", "description": null, "type": { - "kind": "ENUM", - "name": "status_types_enum", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -22462,11 +24384,11 @@ "deprecationReason": null }, { - "name": "shipped_date", + "name": "quantity", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -22490,10 +24412,220 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "orderItems_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "orders_stream_cursor_input", - "description": "Streaming cursor of the table \"orders\"", + "name": "orderItems_stddev_order_by", + "description": "order by stddev() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "orderItems_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "orderItems_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "orderItems_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "orderItems_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "orderItems_stream_cursor_input", + "description": "Streaming cursor of the table \"orderItems\"", "fields": null, "inputFields": [ { @@ -22504,7 +24636,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orders_stream_cursor_value_input", + "name": "orderItems_stream_cursor_value_input", "ofType": null } }, @@ -22531,7 +24663,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "orders_stream_cursor_value_input", + "name": "orderItems_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ @@ -22548,7 +24680,7 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -22560,11 +24692,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "is_deleted", "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -22572,11 +24704,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "orders_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -22584,11 +24716,11 @@ "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "money", "ofType": null }, "defaultValue": null, @@ -22596,11 +24728,11 @@ "deprecationReason": null }, { - "name": "order_status", + "name": "product_id", "description": null, "type": { - "kind": "ENUM", - "name": "status_types_enum", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -22608,11 +24740,11 @@ "deprecationReason": null }, { - "name": "shipped_date", + "name": "quantity", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -22636,10 +24768,80 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "orderItems_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "orderItems_sum_order_by", + "description": "order by sum() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "ENUM", - "name": "orders_update_column", - "description": "update columns of table \"orders\"", + "name": "orderItems_update_column", + "description": "update columns of table \"order_items\"", "fields": null, "inputFields": null, "interfaces": null, @@ -22651,37 +24853,37 @@ "deprecationReason": null }, { - "name": "customer_id", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "is_deleted", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "is_deleted", + "name": "orders_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "order_date", + "name": "price", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "order_status", + "name": "product_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "shipped_date", + "name": "quantity", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -22697,16 +24899,28 @@ }, { "kind": "INPUT_OBJECT", - "name": "orders_updates", + "name": "orderItems_updates", "description": null, "fields": null, "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "orders_set_input", + "name": "orderItems_set_input", "ofType": null }, "defaultValue": null, @@ -22721,7 +24935,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "name": "orderItems_bool_exp", "ofType": null } }, @@ -22736,138 +24950,29 @@ }, { "kind": "OBJECT", - "name": "organization_partnership_levels", - "description": "Enum table for customer partnership levels", + "name": "orderItems_var_pop_fields", + "description": "aggregate var_pop on columns", "fields": [ { - "name": "level", + "name": "price", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "quantity", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizations", - "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": "organizations_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organizations", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -22880,80 +24985,86 @@ }, { "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", - "description": "Boolean expression to filter rows from the table \"organization_partnership_levels\". All fields are combined with a logical 'AND'.", + "name": "orderItems_var_pop_order_by", + "description": "order by var_pop() on columns of table \"order_items\"", "fields": null, "inputFields": [ { - "name": "_and", + "name": "price", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "quantity", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "orderItems_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "_or", + "name": "price", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "level", + "name": "quantity", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "orderItems_var_samp_order_by", + "description": "order by var_samp() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -22961,11 +25072,11 @@ "deprecationReason": null }, { - "name": "organizations", + "name": "quantity", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -22978,25 +25089,48 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_order_by", - "description": "Ordering options when selecting data from \"organization_partnership_levels\".", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orderItems_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "level", + "name": "price", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "quantity", + "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": "orderItems_variance_order_by", + "description": "order by variance() on columns of table \"order_items\"", + "fields": null, + "inputFields": [ + { + "name": "price", "description": null, "type": { "kind": "ENUM", @@ -23008,11 +25142,11 @@ "deprecationReason": null }, { - "name": "organizations_aggregate", + "name": "quantity", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -23026,21 +25160,45 @@ }, { "kind": "ENUM", - "name": "organization_partnership_levels_select_column", - "description": "select columns of table \"organization_partnership_levels\"", + "name": "order_by", + "description": "column ordering options", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "level", - "description": "column name", + "name": "asc", + "description": "in ascending order, nulls last", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "column name", + "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 } @@ -23048,98 +25206,108 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_stream_cursor_input", - "description": "Streaming cursor of the table \"organization_partnership_levels\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "orders", + "description": "List of orders", + "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": "organization_partnership_levels_stream_cursor_value_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "customer", + "description": "An object relationship", + "args": [], "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "OBJECT", + "name": "customers", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "level", + "name": "customer_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, - "defaultValue": 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": "is_deleted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "organization_types", - "description": "Enum table for customer types", - "fields": [ + }, { - "name": "name", + "name": "order_date", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organizations", + "name": "order_items", "description": "An array relationship", "args": [ { @@ -23153,7 +25321,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "organizations_select_column", + "name": "orderItems_select_column", "ofType": null } } @@ -23197,7 +25365,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_order_by", + "name": "orderItems_order_by", "ofType": null } } @@ -23211,7 +25379,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -23230,7 +25398,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organizations", + "name": "orderItems", "ofType": null } } @@ -23240,134 +25408,164 @@ "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], + "name": "order_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": "orderItems_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "orderItems_aggregate", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", - "description": "Boolean expression to filter rows from the table \"organization_types\". 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": "organization_types_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_not", + "name": "order_status", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", + "kind": "ENUM", + "name": "status_types_enum", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "shipped_date", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "date", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "organizations", - "description": null, + "name": "status_type", + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "kind": "OBJECT", + "name": "status_types", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "organization_types_order_by", - "description": "Ordering options when selecting data from \"organization_types\".", + "name": "orders_aggregate_order_by", + "description": "order by aggregate values of table \"orders\"", "fields": null, "inputFields": [ { - "name": "name", + "name": "count", "description": null, "type": { "kind": "ENUM", @@ -23379,11 +25577,11 @@ "deprecationReason": null }, { - "name": "organizations_aggregate", + "name": "max", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "organizations_aggregate_order_by", + "name": "orders_max_order_by", "ofType": null }, "defaultValue": null, @@ -23391,11 +25589,11 @@ "deprecationReason": null }, { - "name": "type", + "name": "min", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "orders_min_order_by", "ofType": null }, "defaultValue": null, @@ -23407,45 +25605,30 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "organization_types_select_column", - "description": "select columns of table \"organization_types\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "organization_types_stream_cursor_input", - "description": "Streaming cursor of the table \"organization_types\"", + "name": "orders_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"orders\"", "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": "organization_types_stream_cursor_value_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_insert_input", + "ofType": null + } + } } }, "defaultValue": null, @@ -23453,11 +25636,11 @@ "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "orders_on_conflict", "ofType": null }, "defaultValue": null, @@ -23471,315 +25654,252 @@ }, { "kind": "INPUT_OBJECT", - "name": "organization_types_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "orders_bool_exp", + "description": "Boolean expression to filter rows from the table \"orders\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "name", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "organizations", - "description": "List of organizations", - "fields": [ + }, { - "name": "created_at", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crn", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customers", - "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": "customers_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "customers_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "customer", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "customers", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "customers_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "is_deleted", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "name", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_partnership_level", - "description": "An object relationship", - "args": [], + "name": "order_date", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organization_partnership_levels", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_type", - "description": "An object relationship", - "args": [], + "name": "order_items", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organization_types", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_items_aggregate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "order_status", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "status_types_enum_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipped_date", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "status_types_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "orders_constraint", + "description": "unique or primary key constraints on table \"orders\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "orders_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "organizations_aggregate_order_by", - "description": "order by aggregate values of table \"organizations\"", + "name": "orders_insert_input", + "description": "input type for inserting data into table \"orders\"", "fields": null, "inputFields": [ { - "name": "avg", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_avg_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -23787,11 +25907,11 @@ "deprecationReason": null }, { - "name": "count", + "name": "customer", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "customers_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -23799,11 +25919,11 @@ "deprecationReason": null }, { - "name": "max", + "name": "customer_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_max_order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -23811,11 +25931,11 @@ "deprecationReason": null }, { - "name": "min", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_min_order_by", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -23823,11 +25943,11 @@ "deprecationReason": null }, { - "name": "stddev", + "name": "is_deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_stddev_order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -23835,11 +25955,11 @@ "deprecationReason": null }, { - "name": "stddev_pop", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_stddev_pop_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -23847,11 +25967,11 @@ "deprecationReason": null }, { - "name": "stddev_samp", + "name": "order_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_stddev_samp_order_by", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -23859,11 +25979,11 @@ "deprecationReason": null }, { - "name": "sum", + "name": "order_items", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "organizations_sum_order_by", + "name": "orderItems_arr_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -23871,11 +25991,11 @@ "deprecationReason": null }, { - "name": "var_pop", + "name": "order_status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_var_pop_order_by", + "kind": "ENUM", + "name": "status_types_enum", "ofType": null }, "defaultValue": null, @@ -23883,11 +26003,11 @@ "deprecationReason": null }, { - "name": "var_samp", + "name": "shipped_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_var_samp_order_by", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -23895,11 +26015,11 @@ "deprecationReason": null }, { - "name": "variance", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_variance_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -23913,12 +26033,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_avg_order_by", - "description": "order by avg() on columns of table \"organizations\"", + "name": "orders_max_order_by", + "description": "order by max() on columns of table \"orders\"", "fields": null, "inputFields": [ { - "name": "crn", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -23928,44 +26048,13 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", - "description": "Boolean expression to filter rows from the table \"organizations\". 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": "organizations_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_not", + "name": "customer_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -23973,31 +26062,23 @@ "deprecationReason": null }, { - "name": "_or", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24005,11 +26086,11 @@ "deprecationReason": null }, { - "name": "crn", + "name": "order_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24017,11 +26098,11 @@ "deprecationReason": null }, { - "name": "customers", + "name": "shipped_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24029,23 +26110,34 @@ "deprecationReason": null }, { - "name": "id", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "orders_min_order_by", + "description": "order by min() on columns of table \"orders\"", + "fields": null, + "inputFields": [ { - "name": "is_deleted", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24053,11 +26145,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "customer_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24065,11 +26157,11 @@ "deprecationReason": null }, { - "name": "organization_partnership_level", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24077,11 +26169,11 @@ "deprecationReason": null }, { - "name": "organization_type", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24089,11 +26181,11 @@ "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24101,11 +26193,11 @@ "deprecationReason": null }, { - "name": "type", + "name": "shipped_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24116,8 +26208,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24130,372 +26222,23 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "organizations_constraint", - "description": "unique or primary key constraints on table \"organizations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "orders_mutation_response", + "description": "response of any mutation on the table \"orders\"", + "fields": [ { - "name": "organizations_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_inc_input", - "description": "input type for incrementing numeric columns in table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "crn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_insert_input", - "description": "input type for inserting data into table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pratnership_level", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_max_order_by", - "description": "order by max() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crn", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pratnership_level", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_min_order_by", - "description": "order by min() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crn", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pratnership_level", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "organizations_mutation_response", - "description": "response of any mutation on the table \"organizations\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "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 }, @@ -24514,7 +26257,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organizations", + "name": "orders", "ofType": null } } @@ -24531,8 +26274,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"organizations\"", + "name": "orders_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"orders\"", "fields": null, "inputFields": [ { @@ -24543,7 +26286,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_insert_input", + "name": "orders_insert_input", "ofType": null } }, @@ -24556,7 +26299,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "organizations_on_conflict", + "name": "orders_on_conflict", "ofType": null }, "defaultValue": null, @@ -24570,8 +26313,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_on_conflict", - "description": "on_conflict condition type for table \"organizations\"", + "name": "orders_on_conflict", + "description": "on_conflict condition type for table \"orders\"", "fields": null, "inputFields": [ { @@ -24582,7 +26325,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "organizations_constraint", + "name": "orders_constraint", "ofType": null } }, @@ -24604,7 +26347,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "organizations_update_column", + "name": "orders_update_column", "ofType": null } } @@ -24619,7 +26362,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "name": "orders_bool_exp", "ofType": null }, "defaultValue": null, @@ -24633,8 +26376,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_order_by", - "description": "Ordering options when selecting data from \"organizations\".", + "name": "orders_order_by", + "description": "Ordering options when selecting data from \"orders\".", "fields": null, "inputFields": [ { @@ -24650,11 +26393,11 @@ "deprecationReason": null }, { - "name": "crn", + "name": "customer", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "customers_order_by", "ofType": null }, "defaultValue": null, @@ -24662,11 +26405,11 @@ "deprecationReason": null }, { - "name": "customers_aggregate", + "name": "customer_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "customers_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24710,11 +26453,11 @@ "deprecationReason": null }, { - "name": "organization_partnership_level", + "name": "order_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24722,11 +26465,11 @@ "deprecationReason": null }, { - "name": "organization_type", + "name": "order_items_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "organization_types_order_by", + "name": "orderItems_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -24734,7 +26477,7 @@ "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_status", "description": null, "type": { "kind": "ENUM", @@ -24746,7 +26489,7 @@ "deprecationReason": null }, { - "name": "type", + "name": "shipped_date", "description": null, "type": { "kind": "ENUM", @@ -24757,6 +26500,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "status_type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "status_types_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "updated_at", "description": null, @@ -24776,8 +26531,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_pk_columns_input", - "description": "primary key columns input for table: organizations", + "name": "orders_pk_columns_input", + "description": "primary key columns input for table: orders", "fields": null, "inputFields": [ { @@ -24803,8 +26558,8 @@ }, { "kind": "ENUM", - "name": "organizations_select_column", - "description": "select columns of table \"organizations\"", + "name": "orders_select_column", + "description": "select columns of table \"orders\"", "fields": null, "inputFields": null, "interfaces": null, @@ -24816,7 +26571,7 @@ "deprecationReason": null }, { - "name": "crn", + "name": "customer_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -24840,13 +26595,19 @@ "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_date", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "order_status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipped_date", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -24862,8 +26623,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_set_input", - "description": "input type for updating data in table \"organizations\"", + "name": "orders_set_input", + "description": "input type for updating data in table \"orders\"", "fields": null, "inputFields": [ { @@ -24879,11 +26640,11 @@ "deprecationReason": null }, { - "name": "crn", + "name": "customer_id", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -24927,11 +26688,11 @@ "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "defaultValue": null, @@ -24939,11 +26700,23 @@ "deprecationReason": null }, { - "name": "type", + "name": "order_status", + "description": null, + "type": { + "kind": "ENUM", + "name": "status_types_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipped_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "defaultValue": null, @@ -24969,39 +26742,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_stddev_order_by", - "description": "order by stddev() on columns of table \"organizations\"", + "name": "orders_stream_cursor_input", + "description": "Streaming cursor of the table \"orders\"", "fields": null, "inputFields": [ { - "name": "crn", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ + }, { - "name": "crn", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { "kind": "ENUM", - "name": "order_by", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -25015,78 +26781,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"organizations\"", + "name": "orders_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "crn", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_stream_cursor_input", - "description": "Streaming cursor of the table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_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": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -25094,11 +26798,11 @@ "deprecationReason": null }, { - "name": "crn", + "name": "customer_id", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -25142,11 +26846,11 @@ "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "defaultValue": null, @@ -25154,11 +26858,11 @@ "deprecationReason": null }, { - "name": "type", + "name": "order_status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "status_types_enum", "ofType": null }, "defaultValue": null, @@ -25166,34 +26870,23 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "shipped_date", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "date", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_sum_order_by", - "description": "order by sum() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ + }, { - "name": "crn", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -25207,8 +26900,8 @@ }, { "kind": "ENUM", - "name": "organizations_update_column", - "description": "update columns of table \"organizations\"", + "name": "orders_update_column", + "description": "update columns of table \"orders\"", "fields": null, "inputFields": null, "interfaces": null, @@ -25220,7 +26913,7 @@ "deprecationReason": null }, { - "name": "crn", + "name": "customer_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -25244,13 +26937,19 @@ "deprecationReason": null }, { - "name": "pratnership_level", + "name": "order_date", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "order_status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipped_date", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -25266,28 +26965,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "organizations_updates", + "name": "orders_updates", "description": null, "fields": null, "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "organizations_set_input", + "name": "orders_set_input", "ofType": null }, "defaultValue": null, @@ -25302,7 +26989,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "name": "orders_bool_exp", "ofType": null } }, @@ -25316,79 +27003,26 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "organizations_var_pop_order_by", - "description": "order by var_pop() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "crn", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_var_samp_order_by", - "description": "order by var_samp() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ - { - "name": "crn", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "organizations_variance_order_by", - "description": "order by variance() on columns of table \"organizations\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "organization_partnership_levels", + "description": "Enum table for customer partnership levels", + "fields": [ { - "name": "crn", + "name": "level", "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "product_availability", - "description": "Enum table for product availability", - "fields": [ + }, { "name": "name", "description": null, @@ -25406,7 +27040,7 @@ "deprecationReason": null }, { - "name": "products", + "name": "organizations", "description": "An array relationship", "args": [ { @@ -25420,7 +27054,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "products_select_column", + "name": "organizations_select_column", "ofType": null } } @@ -25464,7 +27098,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_order_by", + "name": "organizations_order_by", "ofType": null } } @@ -25478,7 +27112,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -25497,7 +27131,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "products", + "name": "organizations", "ofType": null } } @@ -25505,22 +27139,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -25530,8 +27148,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", - "description": "Boolean expression to filter rows from the table \"product_availability\". All fields are combined with a logical 'AND'.", + "name": "organization_partnership_levels_bool_exp", + "description": "Boolean expression to filter rows from the table \"organization_partnership_levels\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -25545,7 +27163,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", + "name": "organization_partnership_levels_bool_exp", "ofType": null } } @@ -25559,7 +27177,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", + "name": "organization_partnership_levels_bool_exp", "ofType": null }, "defaultValue": null, @@ -25577,7 +27195,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", + "name": "organization_partnership_levels_bool_exp", "ofType": null } } @@ -25587,7 +27205,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "level", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -25599,11 +27217,11 @@ "deprecationReason": null }, { - "name": "products", + "name": "name", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -25611,11 +27229,11 @@ "deprecationReason": null }, { - "name": "type", + "name": "organizations", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -25629,12 +27247,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "product_availability_order_by", - "description": "Ordering options when selecting data from \"product_availability\".", + "name": "organization_partnership_levels_order_by", + "description": "Ordering options when selecting data from \"organization_partnership_levels\".", "fields": null, "inputFields": [ { - "name": "name", + "name": "level", "description": null, "type": { "kind": "ENUM", @@ -25646,11 +27264,11 @@ "deprecationReason": null }, { - "name": "products_aggregate", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "products_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25658,11 +27276,11 @@ "deprecationReason": null }, { - "name": "type", + "name": "organizations_aggregate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "organizations_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -25676,20 +27294,20 @@ }, { "kind": "ENUM", - "name": "product_availability_select_column", - "description": "select columns of table \"product_availability\"", + "name": "organization_partnership_levels_select_column", + "description": "select columns of table \"organization_partnership_levels\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "name", + "name": "level", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "name", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -25699,8 +27317,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "product_availability_stream_cursor_input", - "description": "Streaming cursor of the table \"product_availability\"", + "name": "organization_partnership_levels_stream_cursor_input", + "description": "Streaming cursor of the table \"organization_partnership_levels\"", "fields": null, "inputFields": [ { @@ -25711,7 +27329,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "product_availability_stream_cursor_value_input", + "name": "organization_partnership_levels_stream_cursor_value_input", "ofType": null } }, @@ -25738,12 +27356,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "product_availability_stream_cursor_value_input", + "name": "organization_partnership_levels_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "name", + "name": "level", "description": null, "type": { "kind": "SCALAR", @@ -25755,7 +27373,7 @@ "deprecationReason": null }, { - "name": "type", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -25773,69 +27391,9 @@ }, { "kind": "OBJECT", - "name": "products", - "description": "Types of products", + "name": "organization_types", + "description": "Enum table for customer types", "fields": [ - { - "name": "availability", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_deleted", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "name", "description": null, @@ -25849,7 +27407,7 @@ "deprecationReason": null }, { - "name": "order_items", + "name": "organizations", "description": "An array relationship", "args": [ { @@ -25863,7 +27421,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "orderItems_select_column", + "name": "organizations_select_column", "ofType": null } } @@ -25907,7 +27465,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_order_by", + "name": "organizations_order_by", "ofType": null } } @@ -25921,7 +27479,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -25940,7 +27498,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orderItems", + "name": "organizations", "ofType": null } } @@ -25950,71 +27508,7 @@ "deprecationReason": null }, { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "product_availability", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "product_availability", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedThumbnailImgPath", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GetUrlReturn", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "thumbnailImgPath", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", + "name": "type", "description": null, "args": [], "type": { @@ -26022,7 +27516,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null } }, @@ -26037,28 +27531,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_aggregate_order_by", - "description": "order by aggregate values of table \"products\"", + "name": "organization_types_bool_exp", + "description": "Boolean expression to filter rows from the table \"organization_types\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "avg", + "name": "_and", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "products_avg_order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organization_types_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "_not", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "organization_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -26066,23 +27568,31 @@ "deprecationReason": null }, { - "name": "max", + "name": "_or", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "products_max_order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organization_types_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "name", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "products_min_order_by", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26090,11 +27600,11 @@ "deprecationReason": null }, { - "name": "stddev", + "name": "organizations", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "products_stddev_order_by", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -26102,23 +27612,34 @@ "deprecationReason": null }, { - "name": "stddev_pop", + "name": "type", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "products_stddev_pop_order_by", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "organization_types_order_by", + "description": "Ordering options when selecting data from \"organization_types\".", + "fields": null, + "inputFields": [ { - "name": "stddev_samp", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "products_stddev_samp_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26126,11 +27647,11 @@ "deprecationReason": null }, { - "name": "sum", + "name": "organizations_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "products_sum_order_by", + "name": "organizations_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -26138,35 +27659,73 @@ "deprecationReason": null }, { - "name": "var_pop", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "products_var_pop_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "organization_types_select_column", + "description": "select columns of table \"organization_types\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "var_samp", - "description": null, + "name": "type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "organization_types_stream_cursor_input", + "description": "Streaming cursor of the table \"organization_types\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "products_var_samp_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organization_types_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "products_variance_order_by", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -26180,16 +27739,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_avg_order_by", - "description": "order by avg() on columns of table \"products\"", + "name": "organization_types_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "price", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26197,11 +27756,11 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "type", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26214,69 +27773,281 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "products_bool_exp", - "description": "Boolean expression to filter rows from the table \"products\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "organizations", + "description": "List of organizations", + "fields": [ { - "name": "_and", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crn", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "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": "customers_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customers_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "customers_bool_exp", "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "customers", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", + "name": "organization_partnership_level", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "organization_partnership_levels", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization_type", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "organization_types", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pratnership_level", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "products_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "availability", + "name": "type", + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "organizations_aggregate_order_by", + "description": "order by aggregate values of table \"organizations\"", + "fields": null, + "inputFields": [ + { + "name": "avg", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "organizations_avg_order_by", "ofType": null }, "defaultValue": null, @@ -26284,11 +28055,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26296,11 +28067,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "max", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "name": "organizations_max_order_by", "ofType": null }, "defaultValue": null, @@ -26308,11 +28079,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "min", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "name": "organizations_min_order_by", "ofType": null }, "defaultValue": null, @@ -26320,11 +28091,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "stddev", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "organizations_stddev_order_by", "ofType": null }, "defaultValue": null, @@ -26332,11 +28103,11 @@ "deprecationReason": null }, { - "name": "order_items", + "name": "stddev_pop", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "name": "organizations_stddev_pop_order_by", "ofType": null }, "defaultValue": null, @@ -26344,11 +28115,11 @@ "deprecationReason": null }, { - "name": "price", + "name": "stddev_samp", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "money_comparison_exp", + "name": "organizations_stddev_samp_order_by", "ofType": null }, "defaultValue": null, @@ -26356,11 +28127,11 @@ "deprecationReason": null }, { - "name": "product_availability", + "name": "sum", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", + "name": "organizations_sum_order_by", "ofType": null }, "defaultValue": null, @@ -26368,11 +28139,11 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "var_pop", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "name": "organizations_var_pop_order_by", "ofType": null }, "defaultValue": null, @@ -26380,11 +28151,11 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "var_samp", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "organizations_var_samp_order_by", "ofType": null }, "defaultValue": null, @@ -26392,11 +28163,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "variance", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "organizations_variance_order_by", "ofType": null }, "defaultValue": null, @@ -26409,70 +28180,81 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "products_constraint", - "description": "unique or primary key constraints on table \"products\"", + "kind": "INPUT_OBJECT", + "name": "organizations_avg_order_by", + "description": "order by avg() on columns of table \"organizations\"", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "products_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "crn", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "products_inc_input", - "description": "input type for incrementing numeric columns in table \"products\"", + "name": "organizations_bool_exp", + "description": "Boolean expression to filter rows from the table \"organizations\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "price", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organizations_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quantity", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "products_insert_input", - "description": "input type for inserting data into table \"products\"", - "fields": null, - "inputFields": [ + }, { - "name": "availability", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organizations_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -26482,8 +28264,8 @@ "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26491,11 +28273,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "crn", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26503,11 +28285,11 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "customers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "customers_bool_exp", "ofType": null }, "defaultValue": null, @@ -26515,11 +28297,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26527,11 +28309,11 @@ "deprecationReason": null }, { - "name": "order_items", + "name": "is_deleted", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_arr_rel_insert_input", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26539,11 +28321,11 @@ "deprecationReason": null }, { - "name": "price", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "money", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26551,11 +28333,11 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "organization_partnership_level", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "organization_partnership_levels_bool_exp", "ofType": null }, "defaultValue": null, @@ -26563,11 +28345,11 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "organization_type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "organization_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -26575,11 +28357,35 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "pratnership_level", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -26591,24 +28397,171 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "organizations_constraint", + "description": "unique or primary key constraints on table \"organizations\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "organizations_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "products_max_order_by", - "description": "order by max() on columns of table \"products\"", + "name": "organizations_inc_input", + "description": "input type for incrementing numeric columns in table \"organizations\"", "fields": null, "inputFields": [ { - "name": "availability", + "name": "crn", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "organizations_insert_input", + "description": "input type for inserting data into table \"organizations\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crn", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "customers_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pratnership_level", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "organizations_max_order_by", + "description": "order by max() on columns of table \"organizations\"", + "fields": null, + "inputFields": [ { "name": "created_at", "description": null, @@ -26622,7 +28575,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -26634,7 +28587,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -26646,7 +28599,7 @@ "deprecationReason": null }, { - "name": "price", + "name": "name", "description": null, "type": { "kind": "ENUM", @@ -26658,7 +28611,7 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "pratnership_level", "description": null, "type": { "kind": "ENUM", @@ -26670,7 +28623,7 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": null, "type": { "kind": "ENUM", @@ -26700,12 +28653,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_min_order_by", - "description": "order by min() on columns of table \"products\"", + "name": "organizations_min_order_by", + "description": "order by min() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "availability", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -26717,7 +28670,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -26753,19 +28706,7 @@ "deprecationReason": null }, { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "pratnership_level", "description": null, "type": { "kind": "ENUM", @@ -26777,7 +28718,7 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": null, "type": { "kind": "ENUM", @@ -26807,8 +28748,8 @@ }, { "kind": "OBJECT", - "name": "products_mutation_response", - "description": "response of any mutation on the table \"products\"", + "name": "organizations_mutation_response", + "description": "response of any mutation on the table \"organizations\"", "fields": [ { "name": "affected_rows", @@ -26841,7 +28782,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "products", + "name": "organizations", "ofType": null } } @@ -26858,8 +28799,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"products\"", + "name": "organizations_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"organizations\"", "fields": null, "inputFields": [ { @@ -26870,7 +28811,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_insert_input", + "name": "organizations_insert_input", "ofType": null } }, @@ -26883,7 +28824,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "products_on_conflict", + "name": "organizations_on_conflict", "ofType": null }, "defaultValue": null, @@ -26897,8 +28838,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_on_conflict", - "description": "on_conflict condition type for table \"products\"", + "name": "organizations_on_conflict", + "description": "on_conflict condition type for table \"organizations\"", "fields": null, "inputFields": [ { @@ -26909,7 +28850,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "products_constraint", + "name": "organizations_constraint", "ofType": null } }, @@ -26931,7 +28872,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "products_update_column", + "name": "organizations_update_column", "ofType": null } } @@ -26946,7 +28887,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -26960,12 +28901,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_order_by", - "description": "Ordering options when selecting data from \"products\".", + "name": "organizations_order_by", + "description": "Ordering options when selecting data from \"organizations\".", "fields": null, "inputFields": [ { - "name": "availability", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -26977,7 +28918,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -26989,11 +28930,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "customers_aggregate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "customers_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -27001,7 +28942,7 @@ "deprecationReason": null }, { - "name": "is_deleted", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -27013,7 +28954,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "is_deleted", "description": null, "type": { "kind": "ENUM", @@ -27025,11 +28966,11 @@ "deprecationReason": null }, { - "name": "order_items_aggregate", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -27037,11 +28978,11 @@ "deprecationReason": null }, { - "name": "price", + "name": "organization_partnership_level", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "organization_partnership_levels_order_by", "ofType": null }, "defaultValue": null, @@ -27049,11 +28990,11 @@ "deprecationReason": null }, { - "name": "product_availability", + "name": "organization_type", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "product_availability_order_by", + "name": "organization_types_order_by", "ofType": null }, "defaultValue": null, @@ -27061,7 +29002,7 @@ "deprecationReason": null }, { - "name": "quantity", + "name": "pratnership_level", "description": null, "type": { "kind": "ENUM", @@ -27073,7 +29014,7 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": null, "type": { "kind": "ENUM", @@ -27103,8 +29044,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_pk_columns_input", - "description": "primary key columns input for table: products", + "name": "organizations_pk_columns_input", + "description": "primary key columns input for table: organizations", "fields": null, "inputFields": [ { @@ -27130,20 +29071,20 @@ }, { "kind": "ENUM", - "name": "products_select_column", - "description": "select columns of table \"products\"", + "name": "organizations_select_column", + "description": "select columns of table \"organizations\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "availability", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "crn", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -27167,19 +29108,13 @@ "deprecationReason": null }, { - "name": "price", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "pratnership_level", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -27195,16 +29130,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_set_input", - "description": "input type for updating data in table \"products\"", + "name": "organizations_set_input", + "description": "input type for updating data in table \"organizations\"", "fields": null, "inputFields": [ { - "name": "availability", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -27212,11 +29147,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "crn", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -27260,23 +29195,11 @@ "deprecationReason": null }, { - "name": "price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "pratnership_level", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27284,7 +29207,7 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": null, "type": { "kind": "SCALAR", @@ -27314,24 +29237,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_stddev_order_by", - "description": "order by stddev() on columns of table \"products\"", + "name": "organizations_stddev_order_by", + "description": "order by stddev() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27349,24 +29260,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"products\"", + "name": "organizations_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27384,24 +29283,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"products\"", + "name": "organizations_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27419,8 +29306,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_stream_cursor_input", - "description": "Streaming cursor of the table \"products\"", + "name": "organizations_stream_cursor_input", + "description": "Streaming cursor of the table \"organizations\"", "fields": null, "inputFields": [ { @@ -27431,7 +29318,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_stream_cursor_value_input", + "name": "organizations_stream_cursor_value_input", "ofType": null } }, @@ -27458,16 +29345,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_stream_cursor_value_input", + "name": "organizations_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "availability", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -27475,11 +29362,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "crn", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -27523,23 +29410,11 @@ "deprecationReason": null }, { - "name": "price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "money", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "pratnership_level", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27547,7 +29422,7 @@ "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": null, "type": { "kind": "SCALAR", @@ -27577,24 +29452,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_sum_order_by", - "description": "order by sum() on columns of table \"products\"", + "name": "organizations_sum_order_by", + "description": "order by sum() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27612,20 +29475,20 @@ }, { "kind": "ENUM", - "name": "products_update_column", - "description": "update columns of table \"products\"", + "name": "organizations_update_column", + "description": "update columns of table \"organizations\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "availability", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "crn", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -27649,19 +29512,13 @@ "deprecationReason": null }, { - "name": "price", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "pratnership_level", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "thumbnailImgPath", + "name": "type", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -27677,7 +29534,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_updates", + "name": "organizations_updates", "description": null, "fields": null, "inputFields": [ @@ -27686,7 +29543,7 @@ "description": "increments the numeric columns with given value of the filtered values", "type": { "kind": "INPUT_OBJECT", - "name": "products_inc_input", + "name": "organizations_inc_input", "ofType": null }, "defaultValue": null, @@ -27698,7 +29555,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "products_set_input", + "name": "organizations_set_input", "ofType": null }, "defaultValue": null, @@ -27713,7 +29570,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "organizations_bool_exp", "ofType": null } }, @@ -27728,24 +29585,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_var_pop_order_by", - "description": "order by var_pop() on columns of table \"products\"", + "name": "organizations_var_pop_order_by", + "description": "order by var_pop() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27763,24 +29608,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_var_samp_order_by", - "description": "order by var_samp() on columns of table \"products\"", + "name": "organizations_var_samp_order_by", + "description": "order by var_samp() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27798,24 +29631,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "products_variance_order_by", - "description": "order by variance() on columns of table \"products\"", + "name": "organizations_variance_order_by", + "description": "order by variance() on columns of table \"organizations\"", "fields": null, "inputFields": [ { - "name": "price", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", + "name": "crn", "description": null, "type": { "kind": "ENUM", @@ -27833,70 +29654,28 @@ }, { "kind": "OBJECT", - "name": "query_root", - "description": null, + "name": "product_availability", + "description": "Enum table for product availability", "fields": [ { - "name": "busStop", - "description": "fetch data from the table: \"bus_stops\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "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": "OBJECT", - "name": "busStops", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "busStopDeparture", - "description": "fetch data from the table: \"bus_stop_departures\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "busStopDepartures", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "busStopDepartures", - "description": "fetch data from the table: \"bus_stop_departures\"", + "name": "products", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -27909,7 +29688,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "busStopDepartures_select_column", + "name": "products_select_column", "ofType": null } } @@ -27953,7 +29732,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_order_by", + "name": "products_order_by", "ofType": null } } @@ -27967,7 +29746,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", + "name": "products_bool_exp", "ofType": null }, "defaultValue": null, @@ -27986,7 +29765,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "busStopDepartures", + "name": "products", "ofType": null } } @@ -27996,8 +29775,8 @@ "deprecationReason": null }, { - "name": "busStops", - "description": "fetch data from the table: \"bus_stops\"", + "name": "products_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -28010,7 +29789,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "busStops_select_column", + "name": "products_select_column", "ofType": null } } @@ -28054,7 +29833,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStops_order_by", + "name": "products_order_by", "ofType": null } } @@ -28068,7 +29847,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", + "name": "products_bool_exp", "ofType": null }, "defaultValue": null, @@ -28080,183 +29859,370 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", + "kind": "OBJECT", + "name": "products_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "product_availability_bool_exp", + "description": "Boolean expression to filter rows from the table \"product_availability\". 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": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "busStops", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "product_availability_bool_exp", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer", - "description": "fetch data from the table: \"customers\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "customers", + "kind": "INPUT_OBJECT", + "name": "product_availability_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer_types", - "description": "fetch data from the table: \"customer_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": "customer_types_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "customer_types_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "customer_types_bool_exp", + "name": "product_availability_bool_exp", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "products", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "products_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "product_availability_order_by", + "description": "Ordering options when selecting data from \"product_availability\".", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "products_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "product_availability_select_column", + "description": "select columns of table \"product_availability\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "product_availability_stream_cursor_input", + "description": "Streaming cursor of the table \"product_availability\"", + "fields": null, + "inputFields": [ + { + "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": "OBJECT", - "name": "customer_types", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "product_availability_stream_cursor_value_input", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer_types_by_pk", - "description": "fetch data from the table: \"customer_types\" using primary key columns", - "args": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "product_availability_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products", + "description": "Types of products", + "fields": [ + { + "name": "availability", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "customer_types", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customers", + "name": "order_items", "description": "An array relationship", "args": [ { @@ -28270,7 +30236,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "customers_select_column", + "name": "orderItems_select_column", "ofType": null } } @@ -28314,7 +30280,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "customers_order_by", + "name": "orderItems_order_by", "ofType": null } } @@ -28328,7 +30294,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -28347,7 +30313,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "customers", + "name": "orderItems", "ofType": null } } @@ -28357,8 +30323,8 @@ "deprecationReason": null }, { - "name": "desh", - "description": "fetch data from the table: \"desh\"", + "name": "order_items_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -28371,7 +30337,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "desh_select_column", + "name": "orderItems_select_column", "ofType": null } } @@ -28415,7 +30381,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_order_by", + "name": "orderItems_order_by", "ofType": null } } @@ -28429,7 +30395,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -28441,392 +30407,121 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh", - "ofType": null - } - } + "kind": "OBJECT", + "name": "orderItems_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_by_pk", - "description": "fetch data from the table: \"desh\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product_availability", + "description": "An object relationship", + "args": [], "type": { "kind": "OBJECT", - "name": "desh", + "name": "product_availability", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_products", - "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": "desh_products_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_products_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_products_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "quantity", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh_products", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_products_by_pk", - "description": "fetch data from the table: \"desh_products\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "signedThumbnailImgPath", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "desh_products", + "name": "GetUrlReturn", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_sales", - "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": "desh_sales_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_sales_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "thumbnailImgPath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "OBJECT", - "name": "desh_sales", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_aggregate", + "description": "aggregated selection of \"products\"", + "fields": [ { - "name": "desh_sales_by_pk", - "description": "fetch data from the table: \"desh_sales\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "aggregate", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "desh_sales", + "name": "products_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_traffic", - "description": "fetch data from the table: \"desh_traffic\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "desh_traffic_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_traffic_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "nodes", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -28838,7 +30533,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh_traffic", + "name": "products", "ofType": null } } @@ -28846,321 +30541,289 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "desh_traffic_by_pk", - "description": "fetch data from the table: \"desh_traffic\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "bool_and", + "description": null, "type": { - "kind": "OBJECT", - "name": "desh_traffic", + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp_bool_and", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "downloadGetUrl", + "name": "bool_or", "description": null, - "args": [ - { - "name": "fileKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "GetUrlReturn", + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp_bool_or", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "downloadGetUrls", + "name": "count", "description": null, - "args": [ - { - "name": "fileKeys", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp_bool_and", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "products_select_column_products_aggregate_bool_exp_bool_and_arguments_columns", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, "type": { - "kind": "OBJECT", - "name": "GetUrlsReturn", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "enum_test_types", - "description": "fetch data from the table: \"enum_test_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": "enum_test_types_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "enum_test_types_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "enum_test_types_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp_bool_or", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "enum_test_types", - "ofType": null - } - } + "kind": "ENUM", + "name": "products_select_column_products_aggregate_bool_exp_bool_or_arguments_columns", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "enum_test_types_by_pk", - "description": "fetch data from the table: \"enum_test_types\" using primary key columns", - "args": [ - { - "name": "int_enum", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "distinct", + "description": null, "type": { - "kind": "OBJECT", - "name": "enum_test_types", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "file", + "name": "filter", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "File", + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "listParts", + "name": "predicate", "description": null, - "args": [ - { - "name": "fileKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uploadId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", + "description": null, "type": { - "kind": "OBJECT", - "name": "Part", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "products_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mapPoint", - "description": "fetch data from the table: \"map_points\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_aggregate_fields", + "description": "aggregate fields of \"products\"", + "fields": [ + { + "name": "avg", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "mapPoints", + "name": "products_avg_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mapPoints", - "description": "fetch data from the table: \"map_points\"", + "name": "count", + "description": null, "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "columns", + "description": null, "type": { "kind": "LIST", "name": null, @@ -29169,7 +30832,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "mapPoints_select_column", + "name": "products_select_column", "ofType": null } } @@ -29179,55 +30842,11 @@ "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "distinct", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -29239,707 +30858,6773 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "mapPoints", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "order", - "description": "fetch data from the table: \"orders\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "max", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "orders", + "name": "products_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orderItem", - "description": "fetch data from the table: \"order_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, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "min", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "orderItems", + "name": "products_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orderItems", - "description": "fetch data from the table: \"order_items\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "orderItems_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderItems_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "stddev", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orderItems", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "products_stddev_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orders", - "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": "orders_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orders_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "stddev_pop", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orders", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "products_stddev_pop_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization", - "description": "fetch data from the table: \"organizations\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "stddev_samp", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "organizations", + "name": "products_stddev_samp_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_partnership_levels", - "description": "fetch data from the table: \"organization_partnership_levels\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "organization_partnership_levels_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "sum", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organization_partnership_levels", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "products_sum_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_partnership_levels_by_pk", - "description": "fetch data from the table: \"organization_partnership_levels\" using primary key columns", - "args": [ - { - "name": "level", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "var_pop", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "organization_partnership_levels", + "name": "products_var_pop_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_types", - "description": "fetch data from the table: \"organization_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": "organization_types_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organization_types_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "var_samp", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organization_types", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "products_var_samp_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_types_by_pk", - "description": "fetch data from the table: \"organization_types\" using primary key columns", - "args": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "variance", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "organization_types", + "name": "products_variance_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_aggregate_order_by", + "description": "order by aggregate values of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "avg", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_avg_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "organizations", - "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": "organizations_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "organizations_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "count", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "organizations", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "part", + "name": "max", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Part", + "kind": "INPUT_OBJECT", + "name": "products_max_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "prepareUploadParts", + "name": "min", "description": null, - "args": [ - { - "name": "fileKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_min_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_stddev_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_stddev_pop_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_stddev_samp_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_sum_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_var_pop_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_var_samp_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_variance_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_avg_fields", + "description": "aggregate avg on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_avg_order_by", + "description": "order by avg() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "description": "Boolean expression to filter rows from the table \"products\". 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": "products_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availability", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_items", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_items_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "money_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product_availability", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "product_availability_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "products_constraint", + "description": "unique or primary key constraints on table \"products\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "products_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_inc_input", + "description": "input type for incrementing numeric columns in table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_insert_input", + "description": "input type for inserting data into table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "availability", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_items", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_max_fields", + "description": "aggregate max on columns", + "fields": [ + { + "name": "availability", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_max_order_by", + "description": "order by max() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "availability", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_min_fields", + "description": "aggregate min on columns", + "fields": [ + { + "name": "availability", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_min_order_by", + "description": "order by min() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "availability", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_mutation_response", + "description": "response of any mutation on the table \"products\"", + "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": "products", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_on_conflict", + "description": "on_conflict condition type for table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "products_constraint", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "products_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_order_by", + "description": "Ordering options when selecting data from \"products\".", + "fields": null, + "inputFields": [ + { + "name": "availability", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_items_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product_availability", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "product_availability_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_pk_columns_input", + "description": "primary key columns input for table: products", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "products_select_column", + "description": "select columns of table \"products\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "availability", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "products_select_column_products_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"products_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"products\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "is_deleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "products_select_column_products_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"products_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"products\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "is_deleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_set_input", + "description": "input type for updating data in table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "availability", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_stddev_order_by", + "description": "order by stddev() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_stream_cursor_input", + "description": "Streaming cursor of the table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "availability", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_sum_order_by", + "description": "order by sum() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "products_update_column", + "description": "update columns of table \"products\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "availability", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_deleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumbnailImgPath", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "products_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_var_pop_order_by", + "description": "order by var_pop() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_var_samp_order_by", + "description": "order by var_samp() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "products_variance_fields", + "description": "aggregate variance on columns", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "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": "products_variance_order_by", + "description": "order by variance() on columns of table \"products\"", + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "query_root", + "description": null, + "fields": [ + { + "name": "accounts", + "description": "fetch data from the table: \"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": "accounts_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accounts_by_pk", + "description": "fetch data from the table: \"accounts\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStop", + "description": "fetch data from the table: \"bus_stops\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "busStops", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStopDeparture", + "description": "fetch data from the table: \"bus_stop_departures\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStopDepartures", + "description": "fetch data from the table: \"bus_stop_departures\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStopDepartures_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStops", + "description": "fetch data from the table: \"bus_stops\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStops_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStops", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": "fetch data from the table: \"customers\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "customers", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer_types", + "description": "fetch data from the table: \"customer_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": "customer_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customer_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "customer_types_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "customer_types", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer_types_by_pk", + "description": "fetch data from the table: \"customer_types\" using primary key columns", + "args": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "customer_types", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "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": "customers_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customers_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "customers_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "customers", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh", + "description": "fetch data from the table: \"desh\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "desh_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_by_pk", + "description": "fetch data from the table: \"desh\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "desh", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_products", + "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": "desh_products_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_products_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_products", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_products_by_pk", + "description": "fetch data from the table: \"desh_products\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "desh_products", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_sales", + "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": "desh_sales_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_sales", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_sales_by_pk", + "description": "fetch data from the table: \"desh_sales\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "desh_sales", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_traffic", + "description": "fetch data from the table: \"desh_traffic\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "desh_traffic_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_traffic", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desh_traffic_by_pk", + "description": "fetch data from the table: \"desh_traffic\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "desh_traffic", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "downloadGetUrl", + "description": null, + "args": [ + { + "name": "fileKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "GetUrlReturn", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "downloadGetUrls", + "description": null, + "args": [ + { + "name": "fileKeys", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "GetUrlsReturn", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enum_test_types", + "description": "fetch data from the table: \"enum_test_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": "enum_test_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "enum_test_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "enum_test_types_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "enum_test_types", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enum_test_types_by_pk", + "description": "fetch data from the table: \"enum_test_types\" using primary key columns", + "args": [ + { + "name": "int_enum", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "enum_test_types", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "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, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "events", + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "events_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "events_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "events", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "listParts", + "description": null, + "args": [ + { + "name": "fileKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uploadId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Part", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mapPoint", + "description": "fetch data from the table: \"map_points\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "mapPoints", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mapPoints", + "description": "fetch data from the table: \"map_points\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "mapPoints_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "mapPoints_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "mapPoints", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": "fetch data from the table: \"orders\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "orders", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderItem", + "description": "fetch data from the table: \"order_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, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "orderItems", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderItems", + "description": "fetch data from the table: \"order_items\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "orderItems_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "orderItems", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderItemsAggregate", + "description": "fetch aggregated fields from the table: \"order_items\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "orderItems_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orderItems_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "orderItems_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "orderItems_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "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": "orders_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "orders", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "fetch data from the table: \"organizations\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "organizations", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization_partnership_levels", + "description": "fetch data from the table: \"organization_partnership_levels\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "organization_partnership_levels_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organization_partnership_levels_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "organization_partnership_levels_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "organization_partnership_levels", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization_partnership_levels_by_pk", + "description": "fetch data from the table: \"organization_partnership_levels\" using primary key columns", + "args": [ + { + "name": "level", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "organization_partnership_levels", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization_types", + "description": "fetch data from the table: \"organization_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": "organization_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organization_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "organization_types_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "organization_types", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization_types_by_pk", + "description": "fetch data from the table: \"organization_types\" using primary key columns", + "args": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "organization_types", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizations", + "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": "organizations_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "organizations_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "organizations_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "organizations", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "part", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Part", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prepareUploadParts", + "description": null, + "args": [ + { + "name": "fileKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "partNumber", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uploadId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "GetUrlReturn", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product", + "description": "fetch data from the table: \"products\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "products", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product_availability", + "description": "fetch data from the table: \"product_availability\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "product_availability_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "product_availability_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "product_availability_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "product_availability", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product_availability_by_pk", + "description": "fetch data from the table: \"product_availability\" using primary key columns", + "args": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "product_availability", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "products", + "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": "products_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "products", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productsAggregate", + "description": "fetch aggregated fields from the table: \"products\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "products_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "products_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "products_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "products_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_types", + "description": "fetch data from the table: \"status_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": "status_types_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "status_types_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "status_types_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "status_types", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_types_by_pk", + "description": "fetch data from the table: \"status_types\" using primary key columns", + "args": [ + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "status_types", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "testX", + "description": "fetch data from the table: \"test_x\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "testX", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "testXes", + "description": "fetch data from the table: \"test_x\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "testX_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "testX_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "testX_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "testX", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types_test", + "description": "fetch data from the table: \"types_test\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "types_test_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "types_test_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "types_test", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types_test_by_pk", + "description": "fetch data from the table: \"types_test\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "types_test", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "st_d_within_geography_input", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "distance", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "from", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "geography", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use_spheroid", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "st_d_within_input", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "distance", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "from", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "geometry", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "status_types", + "description": "columns and relationships of \"status_types\"", + "fields": [ + { + "name": "orders", + "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": "orders_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "orders_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "orders", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types_tests", + "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": "types_test_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "types_test_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "types_test", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "status_types_bool_exp", + "description": "Boolean expression to filter rows from the table \"status_types\". 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": "status_types_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "status_types_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "status_types_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types_tests", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "status_types_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Cancelled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Confirmed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Delivered", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Processing", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Refounded", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Shipped", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "status_types_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"status_types_enum\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_eq", + "description": null, + "type": { + "kind": "ENUM", + "name": "status_types_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "status_types_enum", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "ENUM", + "name": "status_types_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "status_types_enum", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "status_types_order_by", + "description": "Ordering options when selecting data from \"status_types\".", + "fields": null, + "inputFields": [ + { + "name": "orders_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "orders_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types_tests_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "types_test_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "status_types_select_column", + "description": "select columns of table \"status_types\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "status_types_stream_cursor_input", + "description": "Streaming cursor of the table \"status_types\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "status_types_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "status_types_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "subscription_root", + "description": null, + "fields": [ + { + "name": "accounts", + "description": "fetch data from the table: \"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": "accounts_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accounts_by_pk", + "description": "fetch data from the table: \"accounts\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accounts_stream", + "description": "fetch data from the table in a streaming manner: \"accounts\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStop", + "description": "fetch data from the table: \"bus_stops\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "busStops", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStopDeparture", + "description": "fetch data from the table: \"bus_stop_departures\" using primary key columns", + "args": [ { - "name": "partNumber", + "name": "id", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStopDepartures", + "description": "fetch data from the table: \"bus_stop_departures\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStopDepartures_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStopDeparturesStream", + "description": "fetch data from the table in a streaming manner: \"bus_stop_departures\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { "kind": "NON_NULL", "name": null, @@ -29954,33 +37639,235 @@ "deprecationReason": null }, { - "name": "uploadId", - "description": 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": "busStopDepartures_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStopDepartures_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStopDepartures", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStops", + "description": "fetch data from the table: \"bus_stops\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "busStops_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStops", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "busStops_stream", + "description": "fetch data from the table in a streaming manner: \"bus_stops\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "busStops_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "busStops_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "GetUrlReturn", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "busStops", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "product", - "description": "fetch data from the table: \"products\" using primary key columns", + "name": "customer", + "description": "fetch data from the table: \"customers\" using primary key columns", "args": [ { "name": "id", @@ -30001,15 +37888,15 @@ ], "type": { "kind": "OBJECT", - "name": "products", + "name": "customers", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_availability", - "description": "fetch data from the table: \"product_availability\"", + "name": "customer_types", + "description": "fetch data from the table: \"customer_types\"", "args": [ { "name": "distinct_on", @@ -30022,7 +37909,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "product_availability_select_column", + "name": "customer_types_select_column", "ofType": null } } @@ -30066,7 +37953,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "product_availability_order_by", + "name": "customer_types_order_by", "ofType": null } } @@ -30080,7 +37967,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", + "name": "customer_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -30099,7 +37986,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "product_availability", + "name": "customer_types", "ofType": null } } @@ -30109,8 +37996,8 @@ "deprecationReason": null }, { - "name": "product_availability_by_pk", - "description": "fetch data from the table: \"product_availability\" using primary key columns", + "name": "customer_types_by_pk", + "description": "fetch data from the table: \"customer_types\" using primary key columns", "args": [ { "name": "type", @@ -30131,14 +38018,87 @@ ], "type": { "kind": "OBJECT", - "name": "product_availability", + "name": "customer_types", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "products", + "name": "customer_types_stream", + "description": "fetch data from the table in a streaming manner: \"customer_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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customer_types_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "customer_types_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "customer_types", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", "description": "An array relationship", "args": [ { @@ -30152,7 +38112,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "products_select_column", + "name": "customers_select_column", "ofType": null } } @@ -30174,29 +38134,102 @@ "deprecationReason": null }, { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "customers_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "customers_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "customers", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers_stream", + "description": "fetch data from the table in a streaming manner: \"customers\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "products_order_by", + "name": "customers_stream_cursor_input", "ofType": null } } @@ -30210,7 +38243,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "products_bool_exp", + "name": "customers_bool_exp", "ofType": null }, "defaultValue": null, @@ -30229,7 +38262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "products", + "name": "customers", "ofType": null } } @@ -30239,8 +38272,8 @@ "deprecationReason": null }, { - "name": "status_types", - "description": "fetch data from the table: \"status_types\"", + "name": "desh", + "description": "fetch data from the table: \"desh\"", "args": [ { "name": "distinct_on", @@ -30253,7 +38286,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "status_types_select_column", + "name": "desh_select_column", "ofType": null } } @@ -30297,7 +38330,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "status_types_order_by", + "name": "desh_order_by", "ofType": null } } @@ -30311,7 +38344,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", + "name": "desh_bool_exp", "ofType": null }, "defaultValue": null, @@ -30330,7 +38363,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "status_types", + "name": "desh", "ofType": null } } @@ -30340,18 +38373,18 @@ "deprecationReason": null }, { - "name": "status_types_by_pk", - "description": "fetch data from the table: \"status_types\" using primary key columns", + "name": "desh_by_pk", + "description": "fetch data from the table: \"desh\" 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 } }, @@ -30362,15 +38395,15 @@ ], "type": { "kind": "OBJECT", - "name": "status_types", + "name": "desh", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "types_test", - "description": "fetch data from the table: \"types_test\"", + "name": "desh_products", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -30383,7 +38416,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "types_test_select_column", + "name": "desh_products_select_column", "ofType": null } } @@ -30427,7 +38460,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "types_test_order_by", + "name": "desh_products_order_by", "ofType": null } } @@ -30441,7 +38474,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_bool_exp", + "name": "desh_products_bool_exp", "ofType": null }, "defaultValue": null, @@ -30460,7 +38493,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "types_test", + "name": "desh_products", "ofType": null } } @@ -30470,8 +38503,8 @@ "deprecationReason": null }, { - "name": "types_test_by_pk", - "description": "fetch data from the table: \"types_test\" using primary key columns", + "name": "desh_products_by_pk", + "description": "fetch data from the table: \"desh_products\" using primary key columns", "args": [ { "name": "id", @@ -30492,139 +38525,26 @@ ], "type": { "kind": "OBJECT", - "name": "types_test", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "st_d_within_geography_input", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "distance", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "from", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "geography", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "use_spheroid", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "desh_products", "ofType": null }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "st_d_within_input", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "distance", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "from", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "geometry", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "status_types", - "description": "columns and relationships of \"status_types\"", - "fields": [ - { - "name": "orders", - "description": "An array relationship", + "name": "desh_products_stream", + "description": "fetch data from the table in a streaming manner: \"desh_products\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "orders_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "defaultValue": null, @@ -30632,41 +38552,17 @@ "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orders_order_by", + "name": "desh_products_stream_cursor_input", "ofType": null } } @@ -30680,7 +38576,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "name": "desh_products_bool_exp", "ofType": null }, "defaultValue": null, @@ -30699,7 +38595,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orders", + "name": "desh_products", "ofType": null } } @@ -30709,23 +38605,7 @@ "deprecationReason": null }, { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "types_tests", + "name": "desh_sales", "description": "An array relationship", "args": [ { @@ -30739,7 +38619,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "types_test_select_column", + "name": "desh_sales_select_column", "ofType": null } } @@ -30783,7 +38663,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "types_test_order_by", + "name": "desh_sales_order_by", "ofType": null } } @@ -30797,7 +38677,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "types_test_bool_exp", + "name": "desh_sales_bool_exp", "ofType": null }, "defaultValue": null, @@ -30809,395 +38689,301 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "types_test", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", - "description": "Boolean expression to filter rows from the table \"status_types\". 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": "status_types_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orders", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "types_tests", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "status_types_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Cancelled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Confirmed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Delivered", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Processing", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Refounded", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Shipped", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "status_types_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"status_types_enum\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "ENUM", - "name": "status_types_enum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "status_types_enum", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "ENUM", - "name": "status_types_enum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "status_types_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_sales", + "ofType": null + } } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "status_types_order_by", - "description": "Ordering options when selecting data from \"status_types\".", - "fields": null, - "inputFields": [ - { - "name": "orders_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "orders_aggregate_order_by", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", - "description": null, + "name": "desh_sales_by_pk", + "description": "fetch data from the table: \"desh_sales\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "desh_sales", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "types_tests_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_aggregate_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "status_types_select_column", - "description": "select columns of table \"status_types\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "status_types_stream_cursor_input", - "description": "Streaming cursor of the table \"status_types\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "desh_sales_stream", + "description": "fetch data from the table in a streaming manner: \"desh_sales\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_sales_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "status_types_stream_cursor_value_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_sales", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "desh_stream", + "description": "fetch data from the table in a streaming manner: \"desh\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "status_types_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "status", - "description": null, + "name": "desh_traffic", + "description": "fetch data from the table: \"desh_traffic\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "desh_traffic_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_traffic", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "description": null, - "fields": [ + }, { - "name": "busStop", - "description": "fetch data from the table: \"bus_stops\" using primary key columns", + "name": "desh_traffic_by_pk", + "description": "fetch data from the table: \"desh_traffic\" using primary key columns", "args": [ { "name": "id", @@ -31218,44 +39004,88 @@ ], "type": { "kind": "OBJECT", - "name": "busStops", + "name": "desh_traffic", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "busStopDeparture", - "description": "fetch data from the table: \"bus_stop_departures\" using primary key columns", + "name": "desh_traffic_stream", + "description": "fetch data from the table in a streaming manner: \"desh_traffic\"", "args": [ { - "name": "id", - "description": null, + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "desh_traffic_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "busStopDepartures", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "desh_traffic", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "busStopDepartures", - "description": "fetch data from the table: \"bus_stop_departures\"", + "name": "enum_test_types", + "description": "fetch data from the table: \"enum_test_types\"", "args": [ { "name": "distinct_on", @@ -31268,7 +39098,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "busStopDepartures_select_column", + "name": "enum_test_types_select_column", "ofType": null } } @@ -31312,7 +39142,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_order_by", + "name": "enum_test_types_order_by", "ofType": null } } @@ -31326,7 +39156,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", + "name": "enum_test_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -31345,7 +39175,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "busStopDepartures", + "name": "enum_test_types", "ofType": null } } @@ -31355,8 +39185,37 @@ "deprecationReason": null }, { - "name": "busStopDeparturesStream", - "description": "fetch data from the table in a streaming manner : \"bus_stop_departures\"", + "name": "enum_test_types_by_pk", + "description": "fetch data from the table: \"enum_test_types\" using primary key columns", + "args": [ + { + "name": "int_enum", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "enum_test_types", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enum_test_types_stream", + "description": "fetch data from the table in a streaming manner: \"enum_test_types\"", "args": [ { "name": "batch_size", @@ -31385,7 +39244,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_stream_cursor_input", + "name": "enum_test_types_stream_cursor_input", "ofType": null } } @@ -31399,7 +39258,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "busStopDepartures_bool_exp", + "name": "enum_test_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -31418,7 +39277,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "busStopDepartures", + "name": "enum_test_types", "ofType": null } } @@ -31428,8 +39287,37 @@ "deprecationReason": null }, { - "name": "busStops", - "description": "fetch data from the table: \"bus_stops\"", + "name": "event", + "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, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "events", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "events", + "description": "fetch data from the table: \"events\"", "args": [ { "name": "distinct_on", @@ -31442,7 +39330,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "busStops_select_column", + "name": "events_select_column", "ofType": null } } @@ -31486,7 +39374,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStops_order_by", + "name": "events_order_by", "ofType": null } } @@ -31500,7 +39388,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null, @@ -31519,7 +39407,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "busStops", + "name": "events", "ofType": null } } @@ -31529,8 +39417,8 @@ "deprecationReason": null }, { - "name": "busStops_stream", - "description": "fetch data from the table in a streaming manner : \"bus_stops\"", + "name": "events_stream", + "description": "fetch data from the table in a streaming manner: \"events\"", "args": [ { "name": "batch_size", @@ -31559,7 +39447,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "busStops_stream_cursor_input", + "name": "events_stream_cursor_input", "ofType": null } } @@ -31573,7 +39461,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "busStops_bool_exp", + "name": "events_bool_exp", "ofType": null }, "defaultValue": null, @@ -31592,7 +39480,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "busStops", + "name": "events", "ofType": null } } @@ -31602,8 +39490,8 @@ "deprecationReason": null }, { - "name": "customer", - "description": "fetch data from the table: \"customers\" using primary key columns", + "name": "mapPoint", + "description": "fetch data from the table: \"map_points\" using primary key columns", "args": [ { "name": "id", @@ -31624,15 +39512,15 @@ ], "type": { "kind": "OBJECT", - "name": "customers", + "name": "mapPoints", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customer_types", - "description": "fetch data from the table: \"customer_types\"", + "name": "mapPoints", + "description": "fetch data from the table: \"map_points\"", "args": [ { "name": "distinct_on", @@ -31645,7 +39533,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "customer_types_select_column", + "name": "mapPoints_select_column", "ofType": null } } @@ -31689,7 +39577,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "customer_types_order_by", + "name": "mapPoints_order_by", "ofType": null } } @@ -31703,7 +39591,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "customer_types_bool_exp", + "name": "mapPoints_bool_exp", "ofType": null }, "defaultValue": null, @@ -31722,7 +39610,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "customer_types", + "name": "mapPoints", "ofType": null } } @@ -31732,37 +39620,8 @@ "deprecationReason": null }, { - "name": "customer_types_by_pk", - "description": "fetch data from the table: \"customer_types\" using primary key columns", - "args": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "customer_types", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customer_types_stream", - "description": "fetch data from the table in a streaming manner : \"customer_types\"", + "name": "mapPoints_stream", + "description": "fetch data from the table in a streaming manner: \"map_points\"", "args": [ { "name": "batch_size", @@ -31791,7 +39650,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "customer_types_stream_cursor_input", + "name": "mapPoints_stream_cursor_input", "ofType": null } } @@ -31805,7 +39664,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "customer_types_bool_exp", + "name": "mapPoints_bool_exp", "ofType": null }, "defaultValue": null, @@ -31824,7 +39683,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "customer_types", + "name": "mapPoints", "ofType": null } } @@ -31834,182 +39693,66 @@ "deprecationReason": null }, { - "name": "customers", - "description": "An array relationship", + "name": "order", + "description": "fetch data from the table: \"orders\" using primary key columns", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "customers_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "customers_order_by", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "customers", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "orders", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customers_stream", - "description": "fetch data from the table in a streaming manner : \"customers\"", + "name": "orderItem", + "description": "fetch data from the table: \"order_items\" using primary key columns", "args": [ { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "uuid", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "customers_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "customers_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "customers", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "orderItems", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh", - "description": "fetch data from the table: \"desh\"", + "name": "orderItems", + "description": "fetch data from the table: \"order_items\"", "args": [ { "name": "distinct_on", @@ -32022,7 +39765,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "desh_select_column", + "name": "orderItems_select_column", "ofType": null } } @@ -32066,7 +39809,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_order_by", + "name": "orderItems_order_by", "ofType": null } } @@ -32080,7 +39823,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -32099,7 +39842,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh", + "name": "orderItems", "ofType": null } } @@ -32109,37 +39852,8 @@ "deprecationReason": null }, { - "name": "desh_by_pk", - "description": "fetch data from the table: \"desh\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "desh", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desh_products", - "description": "An array relationship", + "name": "orderItemsAggregate", + "description": "fetch aggregated fields from the table: \"order_items\"", "args": [ { "name": "distinct_on", @@ -32152,7 +39866,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "desh_products_select_column", + "name": "orderItems_select_column", "ofType": null } } @@ -32196,7 +39910,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_products_order_by", + "name": "orderItems_order_by", "ofType": null } } @@ -32210,7 +39924,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_products_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -32222,54 +39936,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh_products", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desh_products_by_pk", - "description": "fetch data from the table: \"desh_products\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "orderItems_aggregate", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "desh_products", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_products_stream", - "description": "fetch data from the table in a streaming manner : \"desh_products\"", + "name": "orderItemsStream", + "description": "fetch data from the table in a streaming manner: \"order_items\"", "args": [ { "name": "batch_size", @@ -32298,7 +39975,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_products_stream_cursor_input", + "name": "orderItems_stream_cursor_input", "ofType": null } } @@ -32312,7 +39989,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_products_bool_exp", + "name": "orderItems_bool_exp", "ofType": null }, "defaultValue": null, @@ -32331,7 +40008,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh_products", + "name": "orderItems", "ofType": null } } @@ -32341,7 +40018,7 @@ "deprecationReason": null }, { - "name": "desh_sales", + "name": "orders", "description": "An array relationship", "args": [ { @@ -32355,7 +40032,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "desh_sales_select_column", + "name": "orders_select_column", "ofType": null } } @@ -32399,7 +40076,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_sales_order_by", + "name": "orders_order_by", "ofType": null } } @@ -32413,7 +40090,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_sales_bool_exp", + "name": "orders_bool_exp", "ofType": null }, "defaultValue": null, @@ -32432,7 +40109,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh_sales", + "name": "orders", "ofType": null } } @@ -32442,37 +40119,8 @@ "deprecationReason": null }, { - "name": "desh_sales_by_pk", - "description": "fetch data from the table: \"desh_sales\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "desh_sales", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desh_sales_stream", - "description": "fetch data from the table in a streaming manner : \"desh_sales\"", + "name": "ordersStream", + "description": "fetch data from the table in a streaming manner: \"orders\"", "args": [ { "name": "batch_size", @@ -32501,7 +40149,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_sales_stream_cursor_input", + "name": "orders_stream_cursor_input", "ofType": null } } @@ -32515,7 +40163,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_sales_bool_exp", + "name": "orders_bool_exp", "ofType": null }, "defaultValue": null, @@ -32534,7 +40182,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh_sales", + "name": "orders", "ofType": null } } @@ -32544,81 +40192,37 @@ "deprecationReason": null }, { - "name": "desh_stream", - "description": "fetch data from the table in a streaming manner : \"desh\"", + "name": "organization", + "description": "fetch data from the table: \"organizations\" using primary key columns", "args": [ { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "uuid", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "desh_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "desh_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "desh", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "organizations", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_traffic", - "description": "fetch data from the table: \"desh_traffic\"", + "name": "organization_partnership_levels", + "description": "fetch data from the table: \"organization_partnership_levels\"", "args": [ { "name": "distinct_on", @@ -32631,7 +40235,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "desh_traffic_select_column", + "name": "organization_partnership_levels_select_column", "ofType": null } } @@ -32675,7 +40279,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_order_by", + "name": "organization_partnership_levels_order_by", "ofType": null } } @@ -32689,7 +40293,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_bool_exp", + "name": "organization_partnership_levels_bool_exp", "ofType": null }, "defaultValue": null, @@ -32708,7 +40312,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh_traffic", + "name": "organization_partnership_levels", "ofType": null } } @@ -32718,18 +40322,18 @@ "deprecationReason": null }, { - "name": "desh_traffic_by_pk", - "description": "fetch data from the table: \"desh_traffic\" using primary key columns", + "name": "organization_partnership_levels_by_pk", + "description": "fetch data from the table: \"organization_partnership_levels\" using primary key columns", "args": [ { - "name": "id", + "name": "level", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -32740,15 +40344,15 @@ ], "type": { "kind": "OBJECT", - "name": "desh_traffic", + "name": "organization_partnership_levels", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "desh_traffic_stream", - "description": "fetch data from the table in a streaming manner : \"desh_traffic\"", + "name": "organization_partnership_levels_stream", + "description": "fetch data from the table in a streaming manner: \"organization_partnership_levels\"", "args": [ { "name": "batch_size", @@ -32777,7 +40381,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_stream_cursor_input", + "name": "organization_partnership_levels_stream_cursor_input", "ofType": null } } @@ -32791,7 +40395,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "desh_traffic_bool_exp", + "name": "organization_partnership_levels_bool_exp", "ofType": null }, "defaultValue": null, @@ -32810,7 +40414,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "desh_traffic", + "name": "organization_partnership_levels", "ofType": null } } @@ -32820,8 +40424,8 @@ "deprecationReason": null }, { - "name": "enum_test_types", - "description": "fetch data from the table: \"enum_test_types\"", + "name": "organization_types", + "description": "fetch data from the table: \"organization_types\"", "args": [ { "name": "distinct_on", @@ -32834,7 +40438,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "enum_test_types_select_column", + "name": "organization_types_select_column", "ofType": null } } @@ -32878,7 +40482,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "enum_test_types_order_by", + "name": "organization_types_order_by", "ofType": null } } @@ -32892,7 +40496,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "enum_test_types_bool_exp", + "name": "organization_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -32911,7 +40515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "enum_test_types", + "name": "organization_types", "ofType": null } } @@ -32921,11 +40525,11 @@ "deprecationReason": null }, { - "name": "enum_test_types_by_pk", - "description": "fetch data from the table: \"enum_test_types\" using primary key columns", + "name": "organization_types_by_pk", + "description": "fetch data from the table: \"organization_types\" using primary key columns", "args": [ { - "name": "int_enum", + "name": "type", "description": null, "type": { "kind": "NON_NULL", @@ -32943,15 +40547,15 @@ ], "type": { "kind": "OBJECT", - "name": "enum_test_types", + "name": "organization_types", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enum_test_types_stream", - "description": "fetch data from the table in a streaming manner : \"enum_test_types\"", + "name": "organization_types_stream", + "description": "fetch data from the table in a streaming manner: \"organization_types\"", "args": [ { "name": "batch_size", @@ -32980,7 +40584,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "enum_test_types_stream_cursor_input", + "name": "organization_types_stream_cursor_input", "ofType": null } } @@ -32994,7 +40598,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "enum_test_types_bool_exp", + "name": "organization_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -33013,7 +40617,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "enum_test_types", + "name": "organization_types", "ofType": null } } @@ -33023,37 +40627,8 @@ "deprecationReason": null }, { - "name": "mapPoint", - "description": "fetch data from the table: \"map_points\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "mapPoints", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mapPoints", - "description": "fetch data from the table: \"map_points\"", + "name": "organizations", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -33066,7 +40641,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "mapPoints_select_column", + "name": "organizations_select_column", "ofType": null } } @@ -33110,7 +40685,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "mapPoints_order_by", + "name": "organizations_order_by", "ofType": null } } @@ -33124,7 +40699,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -33143,7 +40718,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "mapPoints", + "name": "organizations", "ofType": null } } @@ -33153,8 +40728,8 @@ "deprecationReason": null }, { - "name": "mapPoints_stream", - "description": "fetch data from the table in a streaming manner : \"map_points\"", + "name": "organizationsStream", + "description": "fetch data from the table in a streaming manner: \"organizations\"", "args": [ { "name": "batch_size", @@ -33183,7 +40758,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "mapPoints_stream_cursor_input", + "name": "organizations_stream_cursor_input", "ofType": null } } @@ -33197,7 +40772,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "mapPoints_bool_exp", + "name": "organizations_bool_exp", "ofType": null }, "defaultValue": null, @@ -33216,7 +40791,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "mapPoints", + "name": "organizations", "ofType": null } } @@ -33226,37 +40801,8 @@ "deprecationReason": null }, { - "name": "order", - "description": "fetch data from the table: \"orders\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "orders", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderItem", - "description": "fetch data from the table: \"order_items\" using primary key columns", + "name": "product", + "description": "fetch data from the table: \"products\" using primary key columns", "args": [ { "name": "id", @@ -33277,15 +40823,15 @@ ], "type": { "kind": "OBJECT", - "name": "orderItems", + "name": "products", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orderItems", - "description": "fetch data from the table: \"order_items\"", + "name": "product_availability", + "description": "fetch data from the table: \"product_availability\"", "args": [ { "name": "distinct_on", @@ -33298,7 +40844,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "orderItems_select_column", + "name": "product_availability_select_column", "ofType": null } } @@ -33342,7 +40888,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_order_by", + "name": "product_availability_order_by", "ofType": null } } @@ -33356,7 +40902,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "name": "product_availability_bool_exp", "ofType": null }, "defaultValue": null, @@ -33375,7 +40921,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orderItems", + "name": "product_availability", "ofType": null } } @@ -33385,8 +40931,37 @@ "deprecationReason": null }, { - "name": "orderItemsStream", - "description": "fetch data from the table in a streaming manner : \"order_items\"", + "name": "product_availability_by_pk", + "description": "fetch data from the table: \"product_availability\" using primary key columns", + "args": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "product_availability", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product_availability_stream", + "description": "fetch data from the table in a streaming manner: \"product_availability\"", "args": [ { "name": "batch_size", @@ -33415,7 +40990,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderItems_stream_cursor_input", + "name": "product_availability_stream_cursor_input", "ofType": null } } @@ -33429,7 +41004,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orderItems_bool_exp", + "name": "product_availability_bool_exp", "ofType": null }, "defaultValue": null, @@ -33448,7 +41023,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orderItems", + "name": "product_availability", "ofType": null } } @@ -33458,7 +41033,7 @@ "deprecationReason": null }, { - "name": "orders", + "name": "products", "description": "An array relationship", "args": [ { @@ -33472,7 +41047,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "orders_select_column", + "name": "products_select_column", "ofType": null } } @@ -33516,7 +41091,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orders_order_by", + "name": "products_order_by", "ofType": null } } @@ -33530,7 +41105,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "name": "products_bool_exp", "ofType": null }, "defaultValue": null, @@ -33549,7 +41124,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orders", + "name": "products", "ofType": null } } @@ -33559,19 +41134,23 @@ "deprecationReason": null }, { - "name": "ordersStream", - "description": "fetch data from the table in a streaming manner : \"orders\"", + "name": "productsAggregate", + "description": "fetch aggregated fields from the table: \"products\"", "args": [ { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "products_select_column", + "ofType": null + } } }, "defaultValue": null, @@ -33579,17 +41158,41 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orders_stream_cursor_input", + "name": "products_order_by", "ofType": null } } @@ -33603,7 +41206,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orders_bool_exp", + "name": "products_bool_exp", "ofType": null }, "defaultValue": null, @@ -33615,111 +41218,46 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orders", - "ofType": null - } - } + "kind": "OBJECT", + "name": "products_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization", - "description": "fetch data from the table: \"organizations\" using primary key columns", + "name": "productsStream", + "description": "fetch data from the table in a streaming manner: \"products\"", "args": [ { - "name": "id", - "description": null, + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "Int", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "organizations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization_partnership_levels", - "description": "fetch data from the table: \"organization_partnership_levels\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "organization_partnership_levels_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_order_by", + "name": "products_stream_cursor_input", "ofType": null } } @@ -33733,7 +41271,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", + "name": "products_bool_exp", "ofType": null }, "defaultValue": null, @@ -33752,7 +41290,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organization_partnership_levels", + "name": "products", "ofType": null } } @@ -33762,66 +41300,65 @@ "deprecationReason": null }, { - "name": "organization_partnership_levels_by_pk", - "description": "fetch data from the table: \"organization_partnership_levels\" using primary key columns", + "name": "status_types", + "description": "fetch data from the table: \"status_types\"", "args": [ { - "name": "level", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "status_types_select_column", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "organization_partnership_levels", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization_partnership_levels_stream", - "description": "fetch data from the table in a streaming manner : \"organization_partnership_levels\"", - "args": [ + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "order_by", + "description": "sort the rows by one or more columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_stream_cursor_input", + "name": "status_types_order_by", "ofType": null } } @@ -33835,7 +41372,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organization_partnership_levels_bool_exp", + "name": "status_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -33854,7 +41391,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organization_partnership_levels", + "name": "status_types", "ofType": null } } @@ -33864,65 +41401,66 @@ "deprecationReason": null }, { - "name": "organization_types", - "description": "fetch data from the table: \"organization_types\"", + "name": "status_types_by_pk", + "description": "fetch data from the table: \"status_types\" using primary key columns", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "status", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "organization_types_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "status_types", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_types_stream", + "description": "fetch data from the table in a streaming manner: \"status_types\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organization_types_order_by", + "name": "status_types_stream_cursor_input", "ofType": null } } @@ -33936,7 +41474,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", + "name": "status_types_bool_exp", "ofType": null }, "defaultValue": null, @@ -33955,7 +41493,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organization_types", + "name": "status_types", "ofType": null } } @@ -33965,18 +41503,18 @@ "deprecationReason": null }, { - "name": "organization_types_by_pk", - "description": "fetch data from the table: \"organization_types\" using primary key columns", + "name": "testX", + "description": "fetch data from the table: \"test_x\" using primary key columns", "args": [ { - "name": "type", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -33987,15 +41525,15 @@ ], "type": { "kind": "OBJECT", - "name": "organization_types", + "name": "testX", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organization_types_stream", - "description": "fetch data from the table in a streaming manner : \"organization_types\"", + "name": "testX_stream", + "description": "fetch data from the table in a streaming manner: \"test_x\"", "args": [ { "name": "batch_size", @@ -34024,7 +41562,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organization_types_stream_cursor_input", + "name": "testX_stream_cursor_input", "ofType": null } } @@ -34038,7 +41576,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organization_types_bool_exp", + "name": "testX_bool_exp", "ofType": null }, "defaultValue": null, @@ -34057,7 +41595,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organization_types", + "name": "testX", "ofType": null } } @@ -34067,8 +41605,8 @@ "deprecationReason": null }, { - "name": "organizations", - "description": "An array relationship", + "name": "testXes", + "description": "fetch data from the table: \"test_x\"", "args": [ { "name": "distinct_on", @@ -34081,7 +41619,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "organizations_select_column", + "name": "testX_select_column", "ofType": null } } @@ -34125,7 +41663,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_order_by", + "name": "testX_order_by", "ofType": null } } @@ -34139,7 +41677,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "name": "testX_bool_exp", "ofType": null }, "defaultValue": null, @@ -34158,7 +41696,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organizations", + "name": "testX", "ofType": null } } @@ -34168,19 +41706,23 @@ "deprecationReason": null }, { - "name": "organizationsStream", - "description": "fetch data from the table in a streaming manner : \"organizations\"", + "name": "types_test", + "description": "fetch data from the table: \"types_test\"", "args": [ { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "types_test_select_column", + "ofType": null + } } }, "defaultValue": null, @@ -34188,17 +41730,41 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "organizations_stream_cursor_input", + "name": "types_test_order_by", "ofType": null } } @@ -34212,7 +41778,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "organizations_bool_exp", + "name": "types_test_bool_exp", "ofType": null }, "defaultValue": null, @@ -34231,7 +41797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "organizations", + "name": "types_test", "ofType": null } } @@ -34241,8 +41807,8 @@ "deprecationReason": null }, { - "name": "product", - "description": "fetch data from the table: \"products\" using primary key columns", + "name": "types_test_by_pk", + "description": "fetch data from the table: \"types_test\" using primary key columns", "args": [ { "name": "id", @@ -34263,30 +41829,26 @@ ], "type": { "kind": "OBJECT", - "name": "products", + "name": "types_test", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_availability", - "description": "fetch data from the table: \"product_availability\"", + "name": "types_test_stream", + "description": "fetch data from the table in a streaming manner: \"types_test\"", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "product_availability_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "defaultValue": null, @@ -34294,41 +41856,17 @@ "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "product_availability_order_by", + "name": "types_test_stream_cursor_input", "ofType": null } } @@ -34342,14 +41880,367 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", + "name": "types_test_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null } - ], + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "types_test", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "testX", + "description": "columns and relationships of \"test_x\"", + "fields": [ + { + "name": "createdAt", + "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": "isDeleted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "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": "updatedAt", + "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": "INPUT_OBJECT", + "name": "testX_bool_exp", + "description": "Boolean expression to filter rows from the table \"test_x\". 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": "testX_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "testX_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "testX_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeleted", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "testX_constraint", + "description": "unique or primary key constraints on table \"test_x\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "test_x_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_insert_input", + "description": "input type for inserting data into table \"test_x\"", + "fields": null, + "inputFields": [ + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "testX_mutation_response", + "description": "response of any mutation on the table \"test_x\"", + "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, @@ -34361,7 +42252,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "product_availability", + "name": "testX", "ofType": null } } @@ -34369,89 +42260,38 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_on_conflict", + "description": "on_conflict condition type for table \"test_x\"", + "fields": null, + "inputFields": [ { - "name": "product_availability_by_pk", - "description": "fetch data from the table: \"product_availability\" using primary key columns", - "args": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "constraint", + "description": null, "type": { - "kind": "OBJECT", - "name": "product_availability", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "testX_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "product_availability_stream", - "description": "fetch data from the table in a streaming manner : \"product_availability\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "product_availability_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "product_availability_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "update_columns", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -34462,599 +42302,431 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "product_availability", + "kind": "ENUM", + "name": "testX_update_column", "ofType": null } } } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "products", - "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": "products_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "products_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "testX_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_order_by", + "description": "Ordering options when selecting data from \"test_x\".", + "fields": null, + "inputFields": [ + { + "name": "createdAt", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeleted", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_pk_columns_input", + "description": "primary key columns input for table: test_x", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "products", - "ofType": null - } - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "testX_select_column", + "description": "select columns of table \"test_x\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "createdAt", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "productsStream", - "description": "fetch data from the table in a streaming manner : \"products\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "products_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "products_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_set_input", + "description": "input type for updating data in table \"test_x\"", + "fields": null, + "inputFields": [ + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_stream_cursor_input", + "description": "Streaming cursor of the table \"testX\"", + "fields": null, + "inputFields": [ + { + "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": "OBJECT", - "name": "products", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "testX_stream_cursor_value_input", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_types", - "description": "fetch data from the table: \"status_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": "status_types_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "status_types_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "status_types", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_types_by_pk", - "description": "fetch data from the table: \"status_types\" using primary key columns", - "args": [ - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "status_types", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_types_stream", - "description": "fetch data from the table in a streaming manner : \"status_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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "status_types_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "status_types_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "isDeleted", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "status_types", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "types_test", - "description": "fetch data from the table: \"types_test\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "types_test_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "types_test_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "name", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "types_test", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "types_test_by_pk", - "description": "fetch data from the table: \"types_test\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updatedAt", + "description": null, "type": { - "kind": "OBJECT", - "name": "types_test", + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "testX_update_column", + "description": "update columns of table \"test_x\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "createdAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeleted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "testX_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": "testX_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "types_test_stream", - "description": "fetch data from the table in a streaming manner : \"types_test\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "types_test_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "types_test_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "where", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "types_test", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "testX_bool_exp", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, diff --git a/src/theme/mtheme.ts b/src/theme/mtheme.ts index ac2b1e3..c49b57c 100644 --- a/src/theme/mtheme.ts +++ b/src/theme/mtheme.ts @@ -174,6 +174,9 @@ const components: Components = { MuiOutlinedInput: { styleOverrides: { input: { + ':focus': { + borderRadius: 23 + }, borderRadius: 23, padding: '10px 35px 10px 20px!important', background: '#F2F3F4', @@ -238,7 +241,7 @@ const components: Components = { whiteSpace: 'nowrap', background: 'none', border: 'none', - padding: '0', + padding: '10px 0', ':first-of-type': { borderTopLeftRadius: '8px', borderBottomLeftRadius: '8px', @@ -253,7 +256,7 @@ const components: Components = { MuiLinearProgress: { styleOverrides: { root: { - marginTop: '-14px', + marginTop: '42px', borderRadius: '8px', }, }, @@ -293,6 +296,7 @@ const components: Components = { MuiListItemButton: { styleOverrides: { root: { + margin: '0', padding: '10px 16px', borderRadius: '20px', ':hover': { diff --git a/src/theme/typography.ts b/src/theme/typography.ts index 72e0411..0561fdb 100644 --- a/src/theme/typography.ts +++ b/src/theme/typography.ts @@ -1,4 +1,6 @@ -const typography = { +import { TypographyOptions } from '@mui/material/styles/createTypography' + +const typography: TypographyOptions = { h1: { fontWeight: 500, fontSize: 35, @@ -23,8 +25,16 @@ const typography = { fontWeight: 500, fontSize: 14, }, + body1: { + fontWeight: 400, + fontSize: 14, + }, + body2: { + fontWeight: 400, + fontSize: 14, + }, allVariants: { - FontFace: [ + fontFamily: [ 'Montserrat', 'Roboto', '"Helvetica Neue"', @@ -34,4 +44,4 @@ const typography = { }, } -export default typography +export default typography \ No newline at end of file diff --git a/src/views/errors/NotFoundView.tsx b/src/views/errors/NotFoundView.tsx index 8772d25..3417be3 100644 --- a/src/views/errors/NotFoundView.tsx +++ b/src/views/errors/NotFoundView.tsx @@ -1,7 +1,9 @@ -import React from 'react' +import React, { useState } from 'react' import { Box, Container, Typography } from '@mui/material' import { styled } from '@mui/material' import Page from '../../components/Page' +import NavBar from '../../layouts/DashboardLayout/NavBar' +import TopBar from '../../layouts/DashboardLayout/TopBar' const PREFIX = 'StyledNotFound' const classes = { @@ -32,7 +34,7 @@ const StyledNotFound = styled(Page)(({ theme }) => ({ const NotFoundView = () => ( - + 404: The page you are looking for isn’t here diff --git a/templates/TemplateVariables.md b/templates/TemplateVariables.md new file mode 100644 index 0000000..0afc0c6 --- /dev/null +++ b/templates/TemplateVariables.md @@ -0,0 +1,25 @@ +# Template variables +## automatic pre-fill rules + +It's based on field IDs: +```ts + "components": [ + { + "name": "Other", + "fields": [ + { + "id": "other",// <--- this + "name": "Fields", +``` + +- `thumbnail`: looks for signed urls `GetUrlReturn` type and optionally with more priority via this regex `/signed.*Thumbnail.*$/i` +or alternatively these regexes `/signed.*Thumbnail.*$/i, /signed.*LogoPath$/i, /logo_path$/i, /signed.*ImgPath$/i, /url$/i` +- `name`: looks for strings via these regexes `/.*name/i, /.*title/i` +- `geoJson`: looks for fields with `geography` type +- `start`: looks for date fields and optionally with higher priority some which name also includes 'start' +- `end`: looks for date fields and optionally with higher priority some which name also includes 'end' +- `x-axis/y-axis`: looks for fields of those types `'numeric', 'Int', 'bigint', 'numeric', 'date', 'time', 'timetz', 'timestamp', 'timestamptz'` +- `description`: looks for strings, excluding those that match regexes `/id$/, /.*Id$/, /.*Path$/, /updated_at$/i, /updatedAt$/i, /created_at$/i, /createdAt$/i, /is_deleted$/i, /isDeleted$/i, /signed.*Thumbnail.*$/i, /signed.*LogoPath$/i, /logo_path$/i, /signed.*ImgPath$/i, /url$/i` +- `other`: looks for all `SCALAR` type fields, excluding those that match regexes `/id$/, /.*Id$/, /.*Path$/, /updated_at$/i, /updatedAt$/i, /created_at$/i, /createdAt$/i, /is_deleted$/i, /isDeleted$/i, /signed.*Thumbnail.*$/i, /signed.*LogoPath$/i, /logo_path$/i, /signed.*ImgPath$/i, /url$/i` + +Logic is in this file: `packages/wysiwyg/src/lib/utils/templateVariables.ts` \ No newline at end of file diff --git a/templates/calendar-fullcalendar5/compiled-lang/en.json b/templates/calendar-fullcalendar5/compiled-lang/en.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/templates/calendar-fullcalendar5/compiled-lang/en.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/templates/calendar-fullcalendar5/index.html b/templates/calendar-fullcalendar5/index.html new file mode 100644 index 0000000..c540075 --- /dev/null +++ b/templates/calendar-fullcalendar5/index.html @@ -0,0 +1,21 @@ + + + + + + + Iteria Lowcode + + + + + + + +
+ + + diff --git a/templates/calendar-fullcalendar5/package.json b/templates/calendar-fullcalendar5/package.json new file mode 100644 index 0000000..1b47aa3 --- /dev/null +++ b/templates/calendar-fullcalendar5/package.json @@ -0,0 +1,56 @@ +{ + "name": "@iteria-app-mui/fullcalendar5", + "version": "0.0.0", + "main": "src/main.tsx", + "scripts": { + "dev": "vite", + "build": "vite build", + "build:development": "vite build --mode development", + "serve": "vite preview" + }, + "dependencies": { + "@fullcalendar/react": "5.11.2", + "@fullcalendar/daygrid": "5.11.2", + "@fullcalendar/timegrid": "5.11.2", + "@fullcalendar/interaction": "5.11.2", + "@iteria-app-mui/data-table": "workspace: *", + "@iteria-app/component-templates": "workspace: *", + "@mui/icons-material": "^5.2.5", + "@mui/lab": "^5.0.0-alpha.61", + "@mui/material": "^5.2.7", + "@mui/x-data-grid": "^5.12.2", + "chart.js": "^2.9.4", + "clsx": "^1.1.1", + "formik": "^2.2.9", + "graphql": "15.7.2", + "graphql-tag": "^2.12.4", + "history": "^5.3.0", + "moment": "^2.27.0", + "os-browserify": "^0.3.0", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "prop-types": "^15.7.2", + "react": "^17.0.2", + "react-chartjs-2": "^2.10.0", + "react-dom": "^17.0.2", + "react-feather": "^2.0.8", + "react-helmet": "^6.1.0", + "react-hook-form": "^7.28.0", + "react-intl": "^6.0.4", + "react-perfect-scrollbar": "^1.5.8", + "react-router": "^6.0.0-beta.0", + "react-router-dom": "6.0.0-beta.8", + "urql": "^3.0.3", + "uuid": "^8.3.2", + "yup": "^0.29.3" + }, + "devDependencies": { + "@rollup/plugin-alias": "^3.1.9", + "@types/react": "^17.0.0", + "@types/react-dom": "^17.0.0", + "@vitejs/plugin-react": "^1.1.0", + "change-case-all": "^1.0.14", + "typescript": "4.5.4", + "vite": "2.8.6" + } +} diff --git a/templates/calendar-fullcalendar5/src/App.tsx b/templates/calendar-fullcalendar5/src/App.tsx new file mode 100644 index 0000000..9321301 --- /dev/null +++ b/templates/calendar-fullcalendar5/src/App.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { useRoutes } from 'react-router-dom' +import { + I18nProvider, + ThemeProvider, + useLocale, + theme +} from '@iteria-app/component-templates' +import PropTypes from 'prop-types' +import { messages } from './locale' +import routes from './routes' + +const App = (): JSX.Element => { + const routing = useRoutes(routes) + const locale = useLocale() + const messagesObject = messages(locale) + + return ( + + + {routing} + + + ) +} + +App.propTypes = { + locale: PropTypes.string, + messages: PropTypes.object, +} + +export default App diff --git a/templates/calendar-fullcalendar5/src/components/entities/Entity/EntityCalendarEvent.tsx b/templates/calendar-fullcalendar5/src/components/entities/Entity/EntityCalendarEvent.tsx new file mode 100644 index 0000000..204b5df --- /dev/null +++ b/templates/calendar-fullcalendar5/src/components/entities/Entity/EntityCalendarEvent.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { FormatEntityField } from '@iteria-app-mui/common/src/components/fields/form/FormatEntityField' +import { EntityFragment } from '../../../generated/graphql' +import { Box, Typography } from '@mui/material' +import { getTitleFieldKey } from '@iteria-app/component-templates' + +export interface IPropsEntityCalendarEvent { + data: EntityFragment + relationshipName?: string +} + +const EntityCalendarEvent: React.FC = ({ data }) => { + const columns = [ + + + , + ] + const title = getTitleFieldKey(data) + return ( + <> + + + {data?.[`${title}`] ?? 'Event title'} + + + {Object.values(columns).filter((v) => { + if (v?.key?.toString().split('.')?.pop() !== title) + return v + })} + + ) +} + +export default EntityCalendarEvent diff --git a/templates/calendar-fullcalendar5/src/components/entities/Entity/EntityFullcalendar.tsx b/templates/calendar-fullcalendar5/src/components/entities/Entity/EntityFullcalendar.tsx new file mode 100644 index 0000000..041a97e --- /dev/null +++ b/templates/calendar-fullcalendar5/src/components/entities/Entity/EntityFullcalendar.tsx @@ -0,0 +1,78 @@ +import React, { useState } from 'react' +import '@fullcalendar/react/dist/vdom' //this needs to be imported before fullcalendar +import FullCalendar, { EventInput } from '@fullcalendar/react' +import dayGridPlugin from '@fullcalendar/daygrid' +import timeGridPlugin from '@fullcalendar/timegrid' +import interactionPlugin from '@fullcalendar/interaction' +import { + FilterProps, + getEventCustomData, + getInvertedColor, + getRandomColor, +} from '@iteria-app/component-templates' +import { useNavigate } from 'react-router-dom' +import { EntityFragment } from '../../../generated/graphql' +import EntityCalendarEvent from './EntityCalendarEvent' + +export interface EntityFullcalendarProps { + data: EntityFragment[] | null + filterProps: FilterProps + relationshipName?: string +} + +interface DateState { + start: Date + end: Date +} + +const EntityFullcalendar: React.FC = ({ + data, + filterProps, + relationshipName, +}) => { + const navigate = useNavigate() + return ( + { + console.log('fetch events', { start, end, timeZone }) + const filter = { + startAt: { _lte: end }, + endAt: { _gte: start }, + } + filterProps.onFilter(filter) + }} + events={({ start, end, timeZone }, success, failure) => { + const events: EventInput[] = data?.map((d) => { + return { + start: d?.startAt, + end: d?.endAt, + id: d?.id, + color: getRandomColor(d?.id).color, //TODO: add other default fields, depends what we want to use, https://fullcalendar.io/docs/event-source-object#options + textColor: getInvertedColor(getRandomColor(d?.id).rgba, true).color, + customData: getEventCustomData(d), + } + }) + + if (events) success(events) + }} + eventClick={(e) => navigate(e?.event?.id)} + eventContent={(eventInfo) => ( + + )} + /> + ) +} + +export default EntityFullcalendar diff --git a/templates/calendar-fullcalendar5/src/pages/Entity/[id].tsx b/templates/calendar-fullcalendar5/src/pages/Entity/[id].tsx new file mode 100644 index 0000000..bf7c51f --- /dev/null +++ b/templates/calendar-fullcalendar5/src/pages/Entity/[id].tsx @@ -0,0 +1,15 @@ +import React from 'react' +import EntityFormView from '@iteria-app-mui/common/src/components/entities/Entity/EntityFormView' +import EntityFormContainer from '@iteria-app-mui/common/src/components/entities/Entity/EntityFormContainer' + +const EntityFormPage: React.FC = () => { + return ( + ( + + )} + /> + ) +} + +export default EntityFormPage diff --git a/templates/calendar-fullcalendar5/src/pages/Entity/index.tsx b/templates/calendar-fullcalendar5/src/pages/Entity/index.tsx new file mode 100644 index 0000000..83d3d4c --- /dev/null +++ b/templates/calendar-fullcalendar5/src/pages/Entity/index.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import EntityFullcalendar from '../../components/entities/Entity/EntityFullcalendar' +import EntityListContainer from '@iteria-app-mui/common/src/components/entities/Entity/EntityListContainer' + +const EntityManyPage: React.FC = () => { + return ( + ( + + )} + /> + ) +} + +export default EntityManyPage diff --git a/templates/calendar-fullcalendar5/src/templateVariables.json b/templates/calendar-fullcalendar5/src/templateVariables.json new file mode 100644 index 0000000..1d3f453 --- /dev/null +++ b/templates/calendar-fullcalendar5/src/templateVariables.json @@ -0,0 +1,46 @@ +{ + "enitities": [ + { + "id": "entities", + "name": "Entities", + "required": true, + "minValues": 1 + } + ], + "components": [ + { + "name": "Calendar", + "fields": [ + { + "id": "name", + "name": "Title", + "validTypes": ["string"], + "required": false, + "multipleFields": false + }, + { + "id": "start", + "name": "Start", + "validTypes": ["date", "dateTime"], + "required": true, + "multipleFields": false + }, + { + "id": "end", + "name": "End", + "validTypes": ["date", "dateTime"], + "required": true, + "multipleFields": false + }, + { + "id": "description", + "name": "Description", + "validTypes": ["string"], + "required": false, + "multipleFields": false + } + ], + "props": [] + } + ] +} diff --git a/templates/common/src/components/entities/Entity/EntityForm.tsx b/templates/common/src/components/entities/Entity/EntityForm.tsx index e6dea7a..c756d4a 100644 --- a/templates/common/src/components/entities/Entity/EntityForm.tsx +++ b/templates/common/src/components/entities/Entity/EntityForm.tsx @@ -18,7 +18,7 @@ const EntityForm: React.FC = ({ relationshipName }) => { = ({ relationshipName }) => { { +export const BooleanFormat = ({ value }: { value?: boolean }) => { return } diff --git a/templates/common/src/components/fields/box/DateFormat.tsx b/templates/common/src/components/fields/box/DateFormat.tsx index 132103f..89ea800 100644 --- a/templates/common/src/components/fields/box/DateFormat.tsx +++ b/templates/common/src/components/fields/box/DateFormat.tsx @@ -2,7 +2,7 @@ import { Box } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateFormat = ({ value }) => { +export const DateFormat = ({ value }: { value?: string | number | Date }) => { const intl = useIntl() return {value ? intl.formatDate(value) : ''} } diff --git a/templates/common/src/components/fields/box/DateTimeFormat.tsx b/templates/common/src/components/fields/box/DateTimeFormat.tsx index cb58f66..234a9b5 100644 --- a/templates/common/src/components/fields/box/DateTimeFormat.tsx +++ b/templates/common/src/components/fields/box/DateTimeFormat.tsx @@ -2,7 +2,11 @@ import { Box } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateTimeFormat = ({ value }) => { +export const DateTimeFormat = ({ + value, +}: { + value?: string | number | Date +}) => { const intl = useIntl() return {`${intl.formatDate(value)} ${intl.formatTime(value)}`} } diff --git a/templates/common/src/components/fields/box/DefaultFormat.tsx b/templates/common/src/components/fields/box/DefaultFormat.tsx index 30caf9e..0531fbe 100644 --- a/templates/common/src/components/fields/box/DefaultFormat.tsx +++ b/templates/common/src/components/fields/box/DefaultFormat.tsx @@ -1,6 +1,6 @@ import { Box } from '@mui/material' import React from 'react' -export const DefaultFormat = ({ value }) => { +export const DefaultFormat = ({ value }: { value?: any }) => { return {value} } diff --git a/templates/common/src/components/fields/box/EnumFormat.tsx b/templates/common/src/components/fields/box/EnumFormat.tsx new file mode 100644 index 0000000..3300b9b --- /dev/null +++ b/templates/common/src/components/fields/box/EnumFormat.tsx @@ -0,0 +1,13 @@ +import { Box } from '@mui/material' +import React from 'react' +import { Translate } from '@iteria-app/component-templates' + +export const EnumFormat = ({ value }: { value?: string }) => ( + + + +) diff --git a/templates/common/src/components/fields/box/FormatEntityField.tsx b/templates/common/src/components/fields/box/FormatEntityField.tsx index f82b5d8..2a8a3cc 100644 --- a/templates/common/src/components/fields/box/FormatEntityField.tsx +++ b/templates/common/src/components/fields/box/FormatEntityField.tsx @@ -4,6 +4,7 @@ import { DateFormat } from './DateFormat' import { DateTimeFormat } from './DateTimeFormat' import { TimeFormat } from './TimeFormat' import { DefaultFormat } from './DefaultFormat' +import { StringFormat } from './StringFormat' type Props = { type: string @@ -12,6 +13,8 @@ type Props = { export const FormatEntityField = (props: Props) => { switch (props?.type?.toLocaleLowerCase()) { + case 'string': + return case 'boolean': return case 'date': diff --git a/templates/common/src/components/fields/box/JsonFormat.tsx b/templates/common/src/components/fields/box/JsonFormat.tsx new file mode 100644 index 0000000..26c31b6 --- /dev/null +++ b/templates/common/src/components/fields/box/JsonFormat.tsx @@ -0,0 +1,10 @@ +import { Box } from '@mui/material' +import React from 'react' + +export const JsonFormat = ({ + value, +}: { + value?: Record | any[] +}) => { + return {JSON.stringify(value)} +} diff --git a/templates/common/src/components/fields/box/StringFormat.tsx b/templates/common/src/components/fields/box/StringFormat.tsx new file mode 100644 index 0000000..e7d2299 --- /dev/null +++ b/templates/common/src/components/fields/box/StringFormat.tsx @@ -0,0 +1,6 @@ +import { Box } from '@mui/material' +import React from 'react' + +export const StringFormat = ({ value }: { value?: string }) => { + return {value} +} diff --git a/templates/common/src/components/fields/box/TimeFormat.tsx b/templates/common/src/components/fields/box/TimeFormat.tsx index 5b4d49a..befaec6 100644 --- a/templates/common/src/components/fields/box/TimeFormat.tsx +++ b/templates/common/src/components/fields/box/TimeFormat.tsx @@ -2,7 +2,7 @@ import { Box } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const TimeFormat = ({ value }) => { +export const TimeFormat = ({ value }: { value?: string | number | Date }) => { const intl = useIntl() return value ? {intl.formatTime(value)} : } diff --git a/templates/common/src/components/fields/box/index.ts b/templates/common/src/components/fields/box/index.ts index 8594886..2d5df7a 100644 --- a/templates/common/src/components/fields/box/index.ts +++ b/templates/common/src/components/fields/box/index.ts @@ -2,5 +2,7 @@ export * from './BooleanFormat' export * from './DateFormat' export * from './DateTimeFormat' export * from './DefaultFormat' +export * from './StringFormat' +export * from './JsonFormat' export * from './FormatEntityField' -export * from './TimeFormat' \ No newline at end of file +export * from './TimeFormat' diff --git a/templates/common/src/components/fields/chip/BooleanFormat.tsx b/templates/common/src/components/fields/chip/BooleanFormat.tsx index 7ed096c..7825f44 100644 --- a/templates/common/src/components/fields/chip/BooleanFormat.tsx +++ b/templates/common/src/components/fields/chip/BooleanFormat.tsx @@ -1,8 +1,19 @@ import React from 'react' import CheckIcon from '@mui/icons-material/Check' import CloseIcon from '@mui/icons-material/Close' -import { Chip } from "@mui/material" +import { Chip } from '@mui/material' -export const BooleanFormat = ({ value }: { value: boolean }) => { - return : } size="small" /> +export const BooleanFormat = ({ value }: { value?: boolean }) => { + return ( + + ) : ( + + ) + } + size="small" + /> + ) } diff --git a/templates/common/src/components/fields/chip/DateFormat.tsx b/templates/common/src/components/fields/chip/DateFormat.tsx index a732df9..875d840 100644 --- a/templates/common/src/components/fields/chip/DateFormat.tsx +++ b/templates/common/src/components/fields/chip/DateFormat.tsx @@ -2,7 +2,7 @@ import { Chip } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateFormat = ({ value }: { value: string }) => { +export const DateFormat = ({ value }: { value?: string | number | Date }) => { const intl = useIntl() return <>{value && } } diff --git a/templates/common/src/components/fields/chip/DateTimeFormat.tsx b/templates/common/src/components/fields/chip/DateTimeFormat.tsx index 67c8092..9c85f78 100644 --- a/templates/common/src/components/fields/chip/DateTimeFormat.tsx +++ b/templates/common/src/components/fields/chip/DateTimeFormat.tsx @@ -2,7 +2,11 @@ import { Chip } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateTimeFormat = ({ value }: { value: string }) => { +export const DateTimeFormat = ({ + value, +}: { + value?: string | number | Date +}) => { const intl = useIntl() return ( <> diff --git a/templates/common/src/components/fields/chip/DefaultFormat.tsx b/templates/common/src/components/fields/chip/DefaultFormat.tsx index eae7ea5..16c4600 100644 --- a/templates/common/src/components/fields/chip/DefaultFormat.tsx +++ b/templates/common/src/components/fields/chip/DefaultFormat.tsx @@ -1,6 +1,6 @@ import { Chip } from '@mui/material' import React from 'react' -export const DefaultFormat = ({ value }: { value: string }) => { +export const DefaultFormat = ({ value }: { value?: any }) => { return <>{value != null && } } diff --git a/templates/common/src/components/fields/chip/EnumFormat.tsx b/templates/common/src/components/fields/chip/EnumFormat.tsx new file mode 100644 index 0000000..6c02a15 --- /dev/null +++ b/templates/common/src/components/fields/chip/EnumFormat.tsx @@ -0,0 +1,13 @@ +import { Chip } from '@mui/material' +import React from 'react' +import { Translate } from '@iteria-app/component-templates' + +export const EnumFormat = ({ value }: { value?: string }) => ( + + {(val) => val != null && } + +) diff --git a/templates/common/src/components/fields/chip/FormatEntityField.tsx b/templates/common/src/components/fields/chip/FormatEntityField.tsx index f82b5d8..2a8a3cc 100644 --- a/templates/common/src/components/fields/chip/FormatEntityField.tsx +++ b/templates/common/src/components/fields/chip/FormatEntityField.tsx @@ -4,6 +4,7 @@ import { DateFormat } from './DateFormat' import { DateTimeFormat } from './DateTimeFormat' import { TimeFormat } from './TimeFormat' import { DefaultFormat } from './DefaultFormat' +import { StringFormat } from './StringFormat' type Props = { type: string @@ -12,6 +13,8 @@ type Props = { export const FormatEntityField = (props: Props) => { switch (props?.type?.toLocaleLowerCase()) { + case 'string': + return case 'boolean': return case 'date': diff --git a/templates/common/src/components/fields/chip/JsonFormat.tsx b/templates/common/src/components/fields/chip/JsonFormat.tsx new file mode 100644 index 0000000..e412e1b --- /dev/null +++ b/templates/common/src/components/fields/chip/JsonFormat.tsx @@ -0,0 +1,12 @@ +import { Chip } from '@mui/material' +import React from 'react' + +export const JsonFormat = ({ + value, +}: { + value?: Record | any[] +}) => { + return ( + <>{value != null && } + ) +} diff --git a/templates/common/src/components/fields/chip/StringFormat.tsx b/templates/common/src/components/fields/chip/StringFormat.tsx new file mode 100644 index 0000000..a743b31 --- /dev/null +++ b/templates/common/src/components/fields/chip/StringFormat.tsx @@ -0,0 +1,6 @@ +import { Chip } from '@mui/material' +import React from 'react' + +export const StringFormat = ({ value }: { value?: string }) => { + return <>{value != null && } +} diff --git a/templates/common/src/components/fields/chip/TimeFormat.tsx b/templates/common/src/components/fields/chip/TimeFormat.tsx index f54a1be..d779d8e 100644 --- a/templates/common/src/components/fields/chip/TimeFormat.tsx +++ b/templates/common/src/components/fields/chip/TimeFormat.tsx @@ -2,7 +2,7 @@ import { Chip } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const TimeFormat = ({ value }: { value: string }) => { +export const TimeFormat = ({ value }: { value?: string | number | Date }) => { const intl = useIntl() return <>{value && } } diff --git a/templates/common/src/components/fields/chip/index.ts b/templates/common/src/components/fields/chip/index.ts index 8594886..2d5df7a 100644 --- a/templates/common/src/components/fields/chip/index.ts +++ b/templates/common/src/components/fields/chip/index.ts @@ -2,5 +2,7 @@ export * from './BooleanFormat' export * from './DateFormat' export * from './DateTimeFormat' export * from './DefaultFormat' +export * from './StringFormat' +export * from './JsonFormat' export * from './FormatEntityField' -export * from './TimeFormat' \ No newline at end of file +export * from './TimeFormat' diff --git a/templates/common/src/components/fields/form/BooleanFormat.tsx b/templates/common/src/components/fields/form/BooleanFormat.tsx index c1f4c98..47205ee 100644 --- a/templates/common/src/components/fields/form/BooleanFormat.tsx +++ b/templates/common/src/components/fields/form/BooleanFormat.tsx @@ -1,15 +1,16 @@ import { Checkbox as CheckboxInput } from '@mui/material' -import React, { ChangeEventHandler, FocusEventHandler } from "react" +import React, { ChangeEventHandler, FocusEventHandler } from 'react' type BooleanFormatProps = { - value: boolean name: string + value?: boolean onChange: ChangeEventHandler } -export const BooleanFormat = ({ value, name, onChange }: BooleanFormatProps): JSX.Element => { - return +export const BooleanFormat = ({ + value, + name, + onChange, +}: BooleanFormatProps): JSX.Element => { + return } diff --git a/templates/common/src/components/fields/form/DateFormat.tsx b/templates/common/src/components/fields/form/DateFormat.tsx index fe117ac..367ace1 100644 --- a/templates/common/src/components/fields/form/DateFormat.tsx +++ b/templates/common/src/components/fields/form/DateFormat.tsx @@ -5,8 +5,8 @@ import AdapterDateFns from '@date-io/date-fns' import { saveDate } from '@iteria-app/component-templates' type DateFormatProps = { - name: string, - value: Date | string | null + name: string + value?: Date | string | number setFieldValue: (field: string, value: any, shouldValidate?: boolean) => void } diff --git a/templates/common/src/components/fields/form/DateTimeFormat.tsx b/templates/common/src/components/fields/form/DateTimeFormat.tsx index bb4fa12..bdd4e2d 100644 --- a/templates/common/src/components/fields/form/DateTimeFormat.tsx +++ b/templates/common/src/components/fields/form/DateTimeFormat.tsx @@ -5,8 +5,8 @@ import { DateTimePicker, LocalizationProvider } from '@mui/lab' import { saveDateTime } from '@iteria-app/component-templates' type DateTimeFormatProps = { - name: string, - value: Date | string | null + name: string + value?: Date | string | number setFieldValue: (field: string, value: any, shouldValidate?: boolean) => void } diff --git a/templates/common/src/components/fields/form/DefaultFormat.tsx b/templates/common/src/components/fields/form/DefaultFormat.tsx index 0b0467b..964b33d 100644 --- a/templates/common/src/components/fields/form/DefaultFormat.tsx +++ b/templates/common/src/components/fields/form/DefaultFormat.tsx @@ -2,8 +2,8 @@ import React, { ChangeEventHandler, FocusEventHandler } from 'react' import { Input } from '@mui/material' type DefaultFormatProps = { - value: string name: string + value?: any onChange?: ChangeEventHandler onBlur?: FocusEventHandler } @@ -21,7 +21,7 @@ export const DefaultFormat = ({ onClick={(event) => { event.stopPropagation() }} - fullWidth={true} + fullWidth value={value ?? ''} /> ) diff --git a/templates/common/src/components/fields/form/EnumFormat.tsx b/templates/common/src/components/fields/form/EnumFormat.tsx index cb2ca99..282d372 100644 --- a/templates/common/src/components/fields/form/EnumFormat.tsx +++ b/templates/common/src/components/fields/form/EnumFormat.tsx @@ -1,39 +1,39 @@ -import React, { ChangeEventHandler, FocusEventHandler } from 'react' -import { MenuItem, Select } from '@mui/material' +import React, { FocusEventHandler, ReactNode } from 'react' +import { MenuItem, Select, SelectChangeEvent } from '@mui/material' +import { getEnumTypes, Translate } from '@iteria-app/component-templates' +import introspection from '../../../generated/introspect.json' -type EnumFormatProps = { +interface EnumFormatProps { value: string name: string + onChange?: (event: SelectChangeEvent, child: ReactNode) => void onBlur?: FocusEventHandler } export const EnumFormat = ({ value, name, + onChange, onBlur, -}: EnumFormatProps): JSX.Element => { - return ( - - ) -} +}: EnumFormatProps): JSX.Element => ( + +) diff --git a/templates/common/src/components/fields/form/FormatEntityField.tsx b/templates/common/src/components/fields/form/FormatEntityField.tsx index f13229e..3cd00a7 100644 --- a/templates/common/src/components/fields/form/FormatEntityField.tsx +++ b/templates/common/src/components/fields/form/FormatEntityField.tsx @@ -6,6 +6,7 @@ import { TimeFormat } from './TimeFormat' import { DefaultFormat } from './DefaultFormat' import { ObjectFormat } from './ObjectFormat' import { JsonFormat } from './JsonFormat' +import { StringFormat } from './StringFormat' type Props = { type?: string @@ -21,6 +22,8 @@ type Props = { export const FormatEntityField = (props: Props) => { switch (props?.type?.toLocaleLowerCase()) { + case 'string': + return case 'boolean': return case 'date': diff --git a/templates/common/src/components/fields/form/JsonFormat.tsx b/templates/common/src/components/fields/form/JsonFormat.tsx index d3bfa56..645c781 100644 --- a/templates/common/src/components/fields/form/JsonFormat.tsx +++ b/templates/common/src/components/fields/form/JsonFormat.tsx @@ -2,8 +2,8 @@ import React, { ChangeEventHandler, FocusEventHandler } from 'react' import { Input } from '@mui/material' type JsonFormatProps = { - value: string name: string + value?: Record | any[] onChange?: ChangeEventHandler onBlur?: FocusEventHandler } diff --git a/templates/common/src/components/fields/form/StringFormat.tsx b/templates/common/src/components/fields/form/StringFormat.tsx new file mode 100644 index 0000000..99bcddf --- /dev/null +++ b/templates/common/src/components/fields/form/StringFormat.tsx @@ -0,0 +1,27 @@ +import React, { ChangeEventHandler, FocusEventHandler } from 'react' +import { Input } from '@mui/material' + +type DefaultFormatProps = { + name: string + value?: string + onChange?: ChangeEventHandler + onBlur?: FocusEventHandler +} + +export const StringFormat = ({ + value, + name, + onChange, + onBlur, +}: DefaultFormatProps): JSX.Element => ( + { + event.stopPropagation() + }} + fullWidth + value={value ?? ''} + /> +) diff --git a/templates/common/src/components/fields/form/TimeFormat.tsx b/templates/common/src/components/fields/form/TimeFormat.tsx index c08adeb..eebf30d 100644 --- a/templates/common/src/components/fields/form/TimeFormat.tsx +++ b/templates/common/src/components/fields/form/TimeFormat.tsx @@ -5,8 +5,8 @@ import { saveTime } from '@iteria-app/component-templates' import AdapterDateFns from '@date-io/date-fns' type DateTimeFormatProps = { - name: string, - value: Date | string | null + name: string + value?: Date | string | number setFieldValue: (field: string, value: any, shouldValidate?: boolean) => void } diff --git a/templates/common/src/components/fields/form/index.ts b/templates/common/src/components/fields/form/index.ts index 92e30fb..4b4d6a1 100644 --- a/templates/common/src/components/fields/form/index.ts +++ b/templates/common/src/components/fields/form/index.ts @@ -2,4 +2,5 @@ export * from './BooleanFormat' export * from './DateFormat' export * from './DateTimeFormat' export * from './DefaultFormat' -export * from './TimeFormat' \ No newline at end of file +export * from './StringFormat' +export * from './TimeFormat' diff --git a/templates/common/src/components/fields/typography/BooleanFormat.tsx b/templates/common/src/components/fields/typography/BooleanFormat.tsx index d5c2b06..0f3a8b1 100644 --- a/templates/common/src/components/fields/typography/BooleanFormat.tsx +++ b/templates/common/src/components/fields/typography/BooleanFormat.tsx @@ -1,6 +1,6 @@ import { Checkbox } from '@mui/material' import React from 'react' -export const BooleanFormat = ({ value }: {value?: any}): JSX.Element => { +export const BooleanFormat = ({ value }: { value: boolean }): JSX.Element => { return } diff --git a/templates/common/src/components/fields/typography/DateFormat.tsx b/templates/common/src/components/fields/typography/DateFormat.tsx index 348efbe..acf2249 100644 --- a/templates/common/src/components/fields/typography/DateFormat.tsx +++ b/templates/common/src/components/fields/typography/DateFormat.tsx @@ -2,7 +2,15 @@ import { Typography } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateFormat = ({ value }: {value?: any}): JSX.Element => { +export const DateFormat = ({ + value, +}: { + value?: Date | string | number +}): JSX.Element => { const intl = useIntl() - return {value ? intl.formatDate(value) : ''} + return ( + + {value ? intl.formatDate(value) : ''} + + ) } diff --git a/templates/common/src/components/fields/typography/DateTimeFormat.tsx b/templates/common/src/components/fields/typography/DateTimeFormat.tsx index 531ba1b..766b6d1 100644 --- a/templates/common/src/components/fields/typography/DateTimeFormat.tsx +++ b/templates/common/src/components/fields/typography/DateTimeFormat.tsx @@ -2,10 +2,14 @@ import { Typography } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateTimeFormat = ({ value }: {value?: any}) => { +export const DateTimeFormat = ({ + value, +}: { + value?: Date | string | number +}) => { const intl = useIntl() return ( - + {`${intl.formatDate(value)} ${intl.formatTime(value)}`} ) diff --git a/templates/common/src/components/fields/typography/DefaultFormat.tsx b/templates/common/src/components/fields/typography/DefaultFormat.tsx index 9b92f91..2c0b69d 100644 --- a/templates/common/src/components/fields/typography/DefaultFormat.tsx +++ b/templates/common/src/components/fields/typography/DefaultFormat.tsx @@ -1,11 +1,6 @@ -import { Typography } from "@mui/material" +import { Typography } from '@mui/material' import React from 'react' export const DefaultFormat = ({ value }: { value?: any }) => { - return ( - - {value} - - ) + return {JSON.stringify(value)} } - diff --git a/templates/common/src/components/fields/typography/EnumFormat.tsx b/templates/common/src/components/fields/typography/EnumFormat.tsx new file mode 100644 index 0000000..0c711f2 --- /dev/null +++ b/templates/common/src/components/fields/typography/EnumFormat.tsx @@ -0,0 +1,15 @@ +import { Typography } from '@mui/material' +import React from 'react' +import { + Translate, +} from '@iteria-app/component-templates' + +export const EnumFormat = ({ value }: { value?: string }) => ( + + + +) diff --git a/templates/common/src/components/fields/typography/FormatEntityField.tsx b/templates/common/src/components/fields/typography/FormatEntityField.tsx index 1b06b98..7161853 100644 --- a/templates/common/src/components/fields/typography/FormatEntityField.tsx +++ b/templates/common/src/components/fields/typography/FormatEntityField.tsx @@ -4,6 +4,7 @@ import { DateFormat } from './DateFormat' import { DateTimeFormat } from './DateTimeFormat' import { TimeFormat } from './TimeFormat' import { DefaultFormat } from './DefaultFormat' +import { StringFormat } from './StringFormat' type Props = { type: string @@ -19,6 +20,8 @@ type Props = { export const FormatEntityField = (props: Props) => { switch (props?.type?.toLocaleLowerCase()) { + case 'string': + return case 'boolean': return case 'date': diff --git a/templates/common/src/components/fields/typography/JsonFormat.tsx b/templates/common/src/components/fields/typography/JsonFormat.tsx index 85cde61..32fe171 100644 --- a/templates/common/src/components/fields/typography/JsonFormat.tsx +++ b/templates/common/src/components/fields/typography/JsonFormat.tsx @@ -1,11 +1,14 @@ -import { Typography } from "@mui/material" +import { Typography } from '@mui/material' import React from 'react' -export const JsonFormat = ({ value }: { value?: any }) => { +export const JsonFormat = ({ + value, +}: { + value?: Record | any[] +}) => { return ( - + {JSON.stringify(value)} ) } - diff --git a/templates/common/src/components/fields/typography/StringFormat.tsx b/templates/common/src/components/fields/typography/StringFormat.tsx new file mode 100644 index 0000000..cb76977 --- /dev/null +++ b/templates/common/src/components/fields/typography/StringFormat.tsx @@ -0,0 +1,10 @@ +import { Typography } from '@mui/material' +import React from 'react' + +export const StringFormat = ({ value }: { value?: string }) => { + return ( + + {value} + + ) +} diff --git a/templates/common/src/components/fields/typography/TimeFormat.tsx b/templates/common/src/components/fields/typography/TimeFormat.tsx index 5e6a174..2a64958 100644 --- a/templates/common/src/components/fields/typography/TimeFormat.tsx +++ b/templates/common/src/components/fields/typography/TimeFormat.tsx @@ -3,10 +3,10 @@ import React from 'react' import { useIntl } from 'react-intl' import { parseTime } from '@iteria-app/component-templates' -export const TimeFormat = ({ value }: { value?: any }) => { +export const TimeFormat = ({ value }: { value?: Date | string | number }) => { const intl = useIntl() return ( - + {value ? intl.formatTime(parseTime(value)) : ''} ) diff --git a/templates/common/src/components/fields/typography/index.ts b/templates/common/src/components/fields/typography/index.ts index 8594886..2fcfdef 100644 --- a/templates/common/src/components/fields/typography/index.ts +++ b/templates/common/src/components/fields/typography/index.ts @@ -2,5 +2,6 @@ export * from './BooleanFormat' export * from './DateFormat' export * from './DateTimeFormat' export * from './DefaultFormat' +export * from './StringFormat' export * from './FormatEntityField' -export * from './TimeFormat' \ No newline at end of file +export * from './TimeFormat' diff --git a/templates/common/src/components/fields/util-badge/BooleanFormat.tsx b/templates/common/src/components/fields/util-badge/BooleanFormat.tsx index 64779c9..57a46e3 100644 --- a/templates/common/src/components/fields/util-badge/BooleanFormat.tsx +++ b/templates/common/src/components/fields/util-badge/BooleanFormat.tsx @@ -1,7 +1,7 @@ import React from 'react' import DoneIcon from '@mui/icons-material/MoreVert' -import { Badge } from "@mui/material" +import { Badge } from '@mui/material' -export const BooleanFormat = ({ value }) => { +export const BooleanFormat = ({ value }: { value: boolean }) => { return : 'x'} /> } diff --git a/templates/common/src/components/fields/util-badge/DateFormat.tsx b/templates/common/src/components/fields/util-badge/DateFormat.tsx index b4498eb..442406c 100644 --- a/templates/common/src/components/fields/util-badge/DateFormat.tsx +++ b/templates/common/src/components/fields/util-badge/DateFormat.tsx @@ -2,7 +2,7 @@ import { Badge } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateFormat = ({ value }) => { +export const DateFormat = ({ value }: { value?: string | number | Date }) => { const intl = useIntl() return ( diff --git a/templates/common/src/components/fields/util-badge/DateTimeFormat.tsx b/templates/common/src/components/fields/util-badge/DateTimeFormat.tsx index 661739e..19f8d5e 100644 --- a/templates/common/src/components/fields/util-badge/DateTimeFormat.tsx +++ b/templates/common/src/components/fields/util-badge/DateTimeFormat.tsx @@ -2,7 +2,11 @@ import { Badge } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const DateTimeFormat = ({ value }) => { +export const DateTimeFormat = ({ + value, +}: { + value?: string | number | Date +}) => { const intl = useIntl() return ( { +export const DefaultFormat = ({ value }: { value?: any }) => { return } diff --git a/templates/common/src/components/fields/util-badge/EnumFormat.tsx b/templates/common/src/components/fields/util-badge/EnumFormat.tsx new file mode 100644 index 0000000..42ee83b --- /dev/null +++ b/templates/common/src/components/fields/util-badge/EnumFormat.tsx @@ -0,0 +1,17 @@ +import { Badge } from '@mui/material' +import React from 'react' +import { + Translate, +} from '@iteria-app/component-templates' + +export const EnumFormat = ({ value }: { value?: string }) => { + return ( + + {(val) => val != null && } + + ) +} diff --git a/templates/common/src/components/fields/util-badge/FormatEntityField.tsx b/templates/common/src/components/fields/util-badge/FormatEntityField.tsx index f82b5d8..2a8a3cc 100644 --- a/templates/common/src/components/fields/util-badge/FormatEntityField.tsx +++ b/templates/common/src/components/fields/util-badge/FormatEntityField.tsx @@ -4,6 +4,7 @@ import { DateFormat } from './DateFormat' import { DateTimeFormat } from './DateTimeFormat' import { TimeFormat } from './TimeFormat' import { DefaultFormat } from './DefaultFormat' +import { StringFormat } from './StringFormat' type Props = { type: string @@ -12,6 +13,8 @@ type Props = { export const FormatEntityField = (props: Props) => { switch (props?.type?.toLocaleLowerCase()) { + case 'string': + return case 'boolean': return case 'date': diff --git a/templates/common/src/components/fields/util-badge/JsonFormat.tsx b/templates/common/src/components/fields/util-badge/JsonFormat.tsx new file mode 100644 index 0000000..67098cc --- /dev/null +++ b/templates/common/src/components/fields/util-badge/JsonFormat.tsx @@ -0,0 +1,12 @@ +import { Badge, Typography } from '@mui/material' +import React from 'react' + +export const JsonFormat = ({ + value, +}: { + value?: Record | any[] +}) => { + return ( + + ) +} diff --git a/templates/common/src/components/fields/util-badge/StringFormat.tsx b/templates/common/src/components/fields/util-badge/StringFormat.tsx new file mode 100644 index 0000000..71f380c --- /dev/null +++ b/templates/common/src/components/fields/util-badge/StringFormat.tsx @@ -0,0 +1,6 @@ +import { Badge } from '@mui/material' +import React from 'react' + +export const StringFormat = ({ value }: { value?: string }) => { + return +} diff --git a/templates/common/src/components/fields/util-badge/TimeFormat.tsx b/templates/common/src/components/fields/util-badge/TimeFormat.tsx index b6cbd07..fc3c46d 100644 --- a/templates/common/src/components/fields/util-badge/TimeFormat.tsx +++ b/templates/common/src/components/fields/util-badge/TimeFormat.tsx @@ -2,7 +2,7 @@ import { Badge } from '@mui/material' import React from 'react' import { useIntl } from 'react-intl' -export const TimeFormat = ({ value }) => { +export const TimeFormat = ({ value }: { value?: string | number | Date }) => { const intl = useIntl() return } diff --git a/templates/common/src/components/fields/util-badge/index.ts b/templates/common/src/components/fields/util-badge/index.ts index 8594886..2d5df7a 100644 --- a/templates/common/src/components/fields/util-badge/index.ts +++ b/templates/common/src/components/fields/util-badge/index.ts @@ -2,5 +2,7 @@ export * from './BooleanFormat' export * from './DateFormat' export * from './DateTimeFormat' export * from './DefaultFormat' +export * from './StringFormat' +export * from './JsonFormat' export * from './FormatEntityField' -export * from './TimeFormat' \ No newline at end of file +export * from './TimeFormat' diff --git a/templates/dashboard/src/templateVariables.json b/templates/dashboard/src/templateVariables.json index 1bb4b6f..dfa1bfb 100644 --- a/templates/dashboard/src/templateVariables.json +++ b/templates/dashboard/src/templateVariables.json @@ -13,9 +13,9 @@ "todo": "object rel", "fields": [ { - "id": "other", + "id": "aggregation", "name": "Min / Max / Sum / Avg.", - "validTypes": ["number", "date", "dateTime", "string", "geometry"], + "validTypes": ["number", "date", "dateTime", "string", "geometry"], "required": false } ], @@ -31,12 +31,12 @@ "fields": [ { "id": "name", - "name": "List Item Title", + "name": "Title", "validTypes": ["string", "number", "date", "dateTime"], "required": false }, { - "id": "avatar", + "id": "thumbnail", "name": "Avatar", "validTypes": ["string"], "required": false @@ -59,7 +59,7 @@ "name": "Table", "fields": [ { - "id": "columns", + "id": "other", "name": "Other", "validTypes": ["string", "number", "date", "dateTime", "geometry"], "required": false @@ -76,14 +76,14 @@ "name": "Bar Chart", "fields": [ { - "id": "bars", + "id": "x-axis", "name": "Bars", "validTypes": ["number", "string", "date", "dateTime"], "required": true, "operation": "get" }, { - "id": "y-axes", + "id": "y-axis", "name": "Series", "validTypes": ["number", "string", "date", "dateTime"], "required": true, diff --git a/templates/data-table/src/components/entities/Entity/EntityDataTableView.tsx b/templates/data-table/src/components/entities/Entity/EntityDataTableView.tsx index d413d2a..195a7b1 100644 --- a/templates/data-table/src/components/entities/Entity/EntityDataTableView.tsx +++ b/templates/data-table/src/components/entities/Entity/EntityDataTableView.tsx @@ -133,13 +133,18 @@ const EntityDataTableView: React.FC = ({ renderCell: (params: GridCellParams) => { const index = params?.api?.getRowIndex(params.row.id) return ( - +
+ +
) }, columnType: getColumnGraphQlType('FIELD'), diff --git a/templates/graphs-chartjs/src/templateVariables.json b/templates/graphs-chartjs/src/templateVariables.json index 29e8578..903c6e5 100644 --- a/templates/graphs-chartjs/src/templateVariables.json +++ b/templates/graphs-chartjs/src/templateVariables.json @@ -12,7 +12,7 @@ "name": "Graph", "fields": [ { - "id": "bars", + "id": "y-axis", "name": "Y axis", "validTypes": [ "numeric", @@ -29,7 +29,7 @@ "multipleFields": false }, { - "id": "series", + "id": "x-axis", "name": "X axis", "validTypes": [ "numeric", diff --git a/templates/list/src/components/entities/Entity/EntityListItem.tsx b/templates/list/src/components/entities/Entity/EntityListItem.tsx index 9089ede..eeba4bf 100644 --- a/templates/list/src/components/entities/Entity/EntityListItem.tsx +++ b/templates/list/src/components/entities/Entity/EntityListItem.tsx @@ -53,6 +53,8 @@ const EntityListItem: React.FC = ({ secondaryAction={ e.stopPropagation()} />} disablePadding sx={{ background: theme.palette.background.paper, borderRadius: '20px' }} + data-test-id={`list-item-${'Entity'}-${data.id}`} + data-test={`list-item-${'Entity'}`} > !relationshipName && navigate(data?.id.toString())} diff --git a/templates/list/src/templateVariables.json b/templates/list/src/templateVariables.json index 737ddbe..d3e60c1 100644 --- a/templates/list/src/templateVariables.json +++ b/templates/list/src/templateVariables.json @@ -15,7 +15,7 @@ "id": "name", "name": "Title", "validTypes": ["string", "number", "date", "dateTime"], - "required": true, + "required": false, "multipleFields": true }, { @@ -23,7 +23,7 @@ "name": "Avatar", "validTypes": ["string"], "required": false, - "multipleFields": false + "multipleFields": true }, { "id": "other", diff --git a/templates/thumbnails/package.json b/templates/thumbnails/package.json index eacd198..c3aeb9b 100644 --- a/templates/thumbnails/package.json +++ b/templates/thumbnails/package.json @@ -1,5 +1,5 @@ { - "name": "@iteria-app-mui/card-list", + "name": "@iteria-app-mui/thumbnails", "version": "0.0.0", "main": "src/main.tsx", "scripts": { diff --git a/templates/thumbnails/src/components/entities/Entity/EntityCardListItem.tsx b/templates/thumbnails/src/components/entities/Entity/EntityCardListItem.tsx index cb8376c..419f3fd 100644 --- a/templates/thumbnails/src/components/entities/Entity/EntityCardListItem.tsx +++ b/templates/thumbnails/src/components/entities/Entity/EntityCardListItem.tsx @@ -12,7 +12,7 @@ import { FormatEntityField } from '@iteria-app-mui/common/src/components/fields/ import { EntityFragment } from '../../../generated/graphql' import MoreVertIcon from '@mui/icons-material/MoreVert' import { getCardTitle, getImagePath } from '@iteria-app/component-templates' -import { useFormikContext } from "formik" +import { useFormikContext } from 'formik' export interface IPropsEntityCardItem { data: EntityFragment @@ -32,7 +32,11 @@ const EntityCardListItem: React.FC = ({ const columns = [ = ({ cursor: 'pointer', }} onClick={() => !relationshipName && navigate(data?.id.toString())} + data-test-id={`card-list-item-${'Entity'}-${data.id}`} + data-test={`card-list-item-${'Entity'}`} > = ({ sx={{ minWidth: '200px' }} /> - {Object.values(columns).filter((v) => data?.[v?.key?.toString().split('.')?.pop()] !== primary)} + {Object.values(columns).filter( + (v) => data?.[v?.key?.toString().split('.')?.pop()] !== primary + )} diff --git a/templates/thumbnails/src/templateVariables.json b/templates/thumbnails/src/templateVariables.json index 4853d96..c65e67f 100644 --- a/templates/thumbnails/src/templateVariables.json +++ b/templates/thumbnails/src/templateVariables.json @@ -23,7 +23,7 @@ "name": "Thumbnail", "validTypes": ["string"], "required": false, - "multipleFields": false + "multipleFields": true }, { "id": "other", diff --git a/vite.config.ts b/vite.config.ts index 5cc1f52..e951a86 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -36,7 +36,7 @@ export default ({ command, mode }) => { graphQLEndpoint: true, floatingButton: true, }, - version: "1.7.2", + version: "1.8.0", whitelistedEnvs: ['VITE_HASURA_GRAPHQL_ENDPOINT', 'VITE_HASURA_GRAPHQL_SECRET', 'VITE_BRANCH', 'VITE_REPOSITORY_URL', 'VITE_SITE_ID', 'VITE_NETLIFY'] }), ],