schema {
query: query_root
mutation: mutation_root
subscription: subscription_root
}
"""whether this query should be cached (Hasura Cloud only)"""
directive @cached(
"""measured in seconds"""
ttl: Int! = 60
"""refresh the cache entry"""
refresh: Boolean! = false
) on QUERY
"""
Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'.
"""
input Boolean_comparison_exp {
_eq: Boolean
_gt: Boolean
_gte: Boolean
_in: [Boolean!]
_is_null: Boolean
_lt: Boolean
_lte: Boolean
_neq: Boolean
_nin: [Boolean!]
}
"""
Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.
"""
input Int_comparison_exp {
_eq: Int
_gt: Int
_gte: Int
_in: [Int!]
_is_null: Boolean
_lt: Int
_lte: Int
_neq: Int
_nin: [Int!]
}
"""
Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.
"""
input String_comparison_exp {
_eq: String
_gt: String
_gte: String
"""does the column match the given case-insensitive pattern"""
_ilike: String
_in: [String!]
"""
does the column match the given POSIX regular expression, case insensitive
"""
_iregex: String
_is_null: Boolean
"""does the column match the given pattern"""
_like: String
_lt: String
_lte: String
_neq: String
"""does the column NOT match the given case-insensitive pattern"""
_nilike: String
_nin: [String!]
"""
does the column NOT match the given POSIX regular expression, case insensitive
"""
_niregex: String
"""does the column NOT match the given pattern"""
_nlike: String
"""
does the column NOT match the given POSIX regular expression, case sensitive
"""
_nregex: String
"""does the column NOT match the given SQL regular expression"""
_nsimilar: String
"""
does the column match the given POSIX regular expression, case sensitive
"""
_regex: String
"""does the column match the given SQL regular expression"""
_similar: String
}
"""
Oauth requests, inserted before redirecting to the provider's site. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authProviderRequests {
id: uuid!
options(
"""JSON select path"""
path: String
): jsonb
}
"""
aggregated selection of "auth.provider_requests"
"""
type authProviderRequests_aggregate {
aggregate: authProviderRequests_aggregate_fields
nodes: [authProviderRequests!]!
}
"""
aggregate fields of "auth.provider_requests"
"""
type authProviderRequests_aggregate_fields {
count(columns: [authProviderRequests_select_column!], distinct: Boolean): Int!
max: authProviderRequests_max_fields
min: authProviderRequests_min_fields
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input authProviderRequests_append_input {
options: jsonb
}
"""
Boolean expression to filter rows from the table "auth.provider_requests". All fields are combined with a logical 'AND'.
"""
input authProviderRequests_bool_exp {
_and: [authProviderRequests_bool_exp!]
_not: authProviderRequests_bool_exp
_or: [authProviderRequests_bool_exp!]
id: uuid_comparison_exp
options: jsonb_comparison_exp
}
"""
unique or primary key constraints on table "auth.provider_requests"
"""
enum authProviderRequests_constraint {
"""
unique or primary key constraint on columns "id"
"""
provider_requests_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input authProviderRequests_delete_at_path_input {
options: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input authProviderRequests_delete_elem_input {
options: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input authProviderRequests_delete_key_input {
options: String
}
"""
input type for inserting data into table "auth.provider_requests"
"""
input authProviderRequests_insert_input {
id: uuid
options: jsonb
}
"""aggregate max on columns"""
type authProviderRequests_max_fields {
id: uuid
}
"""aggregate min on columns"""
type authProviderRequests_min_fields {
id: uuid
}
"""
response of any mutation on the table "auth.provider_requests"
"""
type authProviderRequests_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authProviderRequests!]!
}
"""
on_conflict condition type for table "auth.provider_requests"
"""
input authProviderRequests_on_conflict {
constraint: authProviderRequests_constraint!
update_columns: [authProviderRequests_update_column!]! = []
where: authProviderRequests_bool_exp
}
"""Ordering options when selecting data from "auth.provider_requests"."""
input authProviderRequests_order_by {
id: order_by
options: order_by
}
"""primary key columns input for table: auth.provider_requests"""
input authProviderRequests_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input authProviderRequests_prepend_input {
options: jsonb
}
"""
select columns of table "auth.provider_requests"
"""
enum authProviderRequests_select_column {
"""column name"""
id
"""column name"""
options
}
"""
input type for updating data in table "auth.provider_requests"
"""
input authProviderRequests_set_input {
id: uuid
options: jsonb
}
"""
Streaming cursor of the table "authProviderRequests"
"""
input authProviderRequests_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authProviderRequests_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authProviderRequests_stream_cursor_value_input {
id: uuid
options: jsonb
}
"""
update columns of table "auth.provider_requests"
"""
enum authProviderRequests_update_column {
"""column name"""
id
"""column name"""
options
}
input authProviderRequests_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: authProviderRequests_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: authProviderRequests_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: authProviderRequests_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: authProviderRequests_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: authProviderRequests_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: authProviderRequests_set_input
"""filter the rows which have to be updated"""
where: authProviderRequests_bool_exp!
}
"""
List of available Oauth providers. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authProviders {
id: String!
"""An array relationship"""
userProviders(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): [authUserProviders!]!
"""An aggregate relationship"""
userProviders_aggregate(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): authUserProviders_aggregate!
}
"""
aggregated selection of "auth.providers"
"""
type authProviders_aggregate {
aggregate: authProviders_aggregate_fields
nodes: [authProviders!]!
}
"""
aggregate fields of "auth.providers"
"""
type authProviders_aggregate_fields {
count(columns: [authProviders_select_column!], distinct: Boolean): Int!
max: authProviders_max_fields
min: authProviders_min_fields
}
"""
Boolean expression to filter rows from the table "auth.providers". All fields are combined with a logical 'AND'.
"""
input authProviders_bool_exp {
_and: [authProviders_bool_exp!]
_not: authProviders_bool_exp
_or: [authProviders_bool_exp!]
id: String_comparison_exp
userProviders: authUserProviders_bool_exp
userProviders_aggregate: authUserProviders_aggregate_bool_exp
}
"""
unique or primary key constraints on table "auth.providers"
"""
enum authProviders_constraint {
"""
unique or primary key constraint on columns "id"
"""
providers_pkey
}
"""
input type for inserting data into table "auth.providers"
"""
input authProviders_insert_input {
id: String
userProviders: authUserProviders_arr_rel_insert_input
}
"""aggregate max on columns"""
type authProviders_max_fields {
id: String
}
"""aggregate min on columns"""
type authProviders_min_fields {
id: String
}
"""
response of any mutation on the table "auth.providers"
"""
type authProviders_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authProviders!]!
}
"""
input type for inserting object relation for remote table "auth.providers"
"""
input authProviders_obj_rel_insert_input {
data: authProviders_insert_input!
"""upsert condition"""
on_conflict: authProviders_on_conflict
}
"""
on_conflict condition type for table "auth.providers"
"""
input authProviders_on_conflict {
constraint: authProviders_constraint!
update_columns: [authProviders_update_column!]! = []
where: authProviders_bool_exp
}
"""Ordering options when selecting data from "auth.providers"."""
input authProviders_order_by {
id: order_by
userProviders_aggregate: authUserProviders_aggregate_order_by
}
"""primary key columns input for table: auth.providers"""
input authProviders_pk_columns_input {
id: String!
}
"""
select columns of table "auth.providers"
"""
enum authProviders_select_column {
"""column name"""
id
}
"""
input type for updating data in table "auth.providers"
"""
input authProviders_set_input {
id: String
}
"""
Streaming cursor of the table "authProviders"
"""
input authProviders_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authProviders_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authProviders_stream_cursor_value_input {
id: String
}
"""
update columns of table "auth.providers"
"""
enum authProviders_update_column {
"""column name"""
id
}
input authProviders_updates {
"""sets the columns of the filtered rows to the given values"""
_set: authProviders_set_input
"""filter the rows which have to be updated"""
where: authProviders_bool_exp!
}
"""
columns and relationships of "auth.refresh_token_types"
"""
type authRefreshTokenTypes {
comment: String
"""An array relationship"""
refreshTokens(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): [authRefreshTokens!]!
"""An aggregate relationship"""
refreshTokens_aggregate(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): authRefreshTokens_aggregate!
value: String!
}
"""
aggregated selection of "auth.refresh_token_types"
"""
type authRefreshTokenTypes_aggregate {
aggregate: authRefreshTokenTypes_aggregate_fields
nodes: [authRefreshTokenTypes!]!
}
"""
aggregate fields of "auth.refresh_token_types"
"""
type authRefreshTokenTypes_aggregate_fields {
count(columns: [authRefreshTokenTypes_select_column!], distinct: Boolean): Int!
max: authRefreshTokenTypes_max_fields
min: authRefreshTokenTypes_min_fields
}
"""
Boolean expression to filter rows from the table "auth.refresh_token_types". All fields are combined with a logical 'AND'.
"""
input authRefreshTokenTypes_bool_exp {
_and: [authRefreshTokenTypes_bool_exp!]
_not: authRefreshTokenTypes_bool_exp
_or: [authRefreshTokenTypes_bool_exp!]
comment: String_comparison_exp
refreshTokens: authRefreshTokens_bool_exp
refreshTokens_aggregate: authRefreshTokens_aggregate_bool_exp
value: String_comparison_exp
}
"""
unique or primary key constraints on table "auth.refresh_token_types"
"""
enum authRefreshTokenTypes_constraint {
"""
unique or primary key constraint on columns "value"
"""
refresh_token_types_pkey
}
enum authRefreshTokenTypes_enum {
"""Personal access token"""
pat
"""Regular refresh token"""
regular
}
"""
Boolean expression to compare columns of type "authRefreshTokenTypes_enum". All fields are combined with logical 'AND'.
"""
input authRefreshTokenTypes_enum_comparison_exp {
_eq: authRefreshTokenTypes_enum
_in: [authRefreshTokenTypes_enum!]
_is_null: Boolean
_neq: authRefreshTokenTypes_enum
_nin: [authRefreshTokenTypes_enum!]
}
"""
input type for inserting data into table "auth.refresh_token_types"
"""
input authRefreshTokenTypes_insert_input {
comment: String
refreshTokens: authRefreshTokens_arr_rel_insert_input
value: String
}
"""aggregate max on columns"""
type authRefreshTokenTypes_max_fields {
comment: String
value: String
}
"""aggregate min on columns"""
type authRefreshTokenTypes_min_fields {
comment: String
value: String
}
"""
response of any mutation on the table "auth.refresh_token_types"
"""
type authRefreshTokenTypes_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authRefreshTokenTypes!]!
}
"""
input type for inserting object relation for remote table "auth.refresh_token_types"
"""
input authRefreshTokenTypes_obj_rel_insert_input {
data: authRefreshTokenTypes_insert_input!
"""upsert condition"""
on_conflict: authRefreshTokenTypes_on_conflict
}
"""
on_conflict condition type for table "auth.refresh_token_types"
"""
input authRefreshTokenTypes_on_conflict {
constraint: authRefreshTokenTypes_constraint!
update_columns: [authRefreshTokenTypes_update_column!]! = []
where: authRefreshTokenTypes_bool_exp
}
"""Ordering options when selecting data from "auth.refresh_token_types"."""
input authRefreshTokenTypes_order_by {
comment: order_by
refreshTokens_aggregate: authRefreshTokens_aggregate_order_by
value: order_by
}
"""primary key columns input for table: auth.refresh_token_types"""
input authRefreshTokenTypes_pk_columns_input {
value: String!
}
"""
select columns of table "auth.refresh_token_types"
"""
enum authRefreshTokenTypes_select_column {
"""column name"""
comment
"""column name"""
value
}
"""
input type for updating data in table "auth.refresh_token_types"
"""
input authRefreshTokenTypes_set_input {
comment: String
value: String
}
"""
Streaming cursor of the table "authRefreshTokenTypes"
"""
input authRefreshTokenTypes_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authRefreshTokenTypes_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authRefreshTokenTypes_stream_cursor_value_input {
comment: String
value: String
}
"""
update columns of table "auth.refresh_token_types"
"""
enum authRefreshTokenTypes_update_column {
"""column name"""
comment
"""column name"""
value
}
input authRefreshTokenTypes_updates {
"""sets the columns of the filtered rows to the given values"""
_set: authRefreshTokenTypes_set_input
"""filter the rows which have to be updated"""
where: authRefreshTokenTypes_bool_exp!
}
"""
User refresh tokens. Hasura auth uses them to rotate new access tokens as long as the refresh token is not expired. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authRefreshTokens {
createdAt: timestamptz!
expiresAt: timestamptz!
id: uuid!
metadata(
"""JSON select path"""
path: String
): jsonb
refreshTokenHash: String
"""An object relationship"""
refresh_token_type: authRefreshTokenTypes!
type: authRefreshTokenTypes_enum!
"""An object relationship"""
user: users!
userId: uuid!
}
"""
aggregated selection of "auth.refresh_tokens"
"""
type authRefreshTokens_aggregate {
aggregate: authRefreshTokens_aggregate_fields
nodes: [authRefreshTokens!]!
}
input authRefreshTokens_aggregate_bool_exp {
count: authRefreshTokens_aggregate_bool_exp_count
}
input authRefreshTokens_aggregate_bool_exp_count {
arguments: [authRefreshTokens_select_column!]
distinct: Boolean
filter: authRefreshTokens_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "auth.refresh_tokens"
"""
type authRefreshTokens_aggregate_fields {
count(columns: [authRefreshTokens_select_column!], distinct: Boolean): Int!
max: authRefreshTokens_max_fields
min: authRefreshTokens_min_fields
}
"""
order by aggregate values of table "auth.refresh_tokens"
"""
input authRefreshTokens_aggregate_order_by {
count: order_by
max: authRefreshTokens_max_order_by
min: authRefreshTokens_min_order_by
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input authRefreshTokens_append_input {
metadata: jsonb
}
"""
input type for inserting array relation for remote table "auth.refresh_tokens"
"""
input authRefreshTokens_arr_rel_insert_input {
data: [authRefreshTokens_insert_input!]!
"""upsert condition"""
on_conflict: authRefreshTokens_on_conflict
}
"""
Boolean expression to filter rows from the table "auth.refresh_tokens". All fields are combined with a logical 'AND'.
"""
input authRefreshTokens_bool_exp {
_and: [authRefreshTokens_bool_exp!]
_not: authRefreshTokens_bool_exp
_or: [authRefreshTokens_bool_exp!]
createdAt: timestamptz_comparison_exp
expiresAt: timestamptz_comparison_exp
id: uuid_comparison_exp
metadata: jsonb_comparison_exp
refreshTokenHash: String_comparison_exp
refresh_token_type: authRefreshTokenTypes_bool_exp
type: authRefreshTokenTypes_enum_comparison_exp
user: users_bool_exp
userId: uuid_comparison_exp
}
"""
unique or primary key constraints on table "auth.refresh_tokens"
"""
enum authRefreshTokens_constraint {
"""
unique or primary key constraint on columns "id"
"""
refresh_tokens_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input authRefreshTokens_delete_at_path_input {
metadata: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input authRefreshTokens_delete_elem_input {
metadata: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input authRefreshTokens_delete_key_input {
metadata: String
}
"""
input type for inserting data into table "auth.refresh_tokens"
"""
input authRefreshTokens_insert_input {
createdAt: timestamptz
expiresAt: timestamptz
id: uuid
metadata: jsonb
refreshTokenHash: String
refresh_token_type: authRefreshTokenTypes_obj_rel_insert_input
type: authRefreshTokenTypes_enum
user: users_obj_rel_insert_input
userId: uuid
}
"""aggregate max on columns"""
type authRefreshTokens_max_fields {
createdAt: timestamptz
expiresAt: timestamptz
id: uuid
refreshTokenHash: String
userId: uuid
}
"""
order by max() on columns of table "auth.refresh_tokens"
"""
input authRefreshTokens_max_order_by {
createdAt: order_by
expiresAt: order_by
id: order_by
refreshTokenHash: order_by
userId: order_by
}
"""aggregate min on columns"""
type authRefreshTokens_min_fields {
createdAt: timestamptz
expiresAt: timestamptz
id: uuid
refreshTokenHash: String
userId: uuid
}
"""
order by min() on columns of table "auth.refresh_tokens"
"""
input authRefreshTokens_min_order_by {
createdAt: order_by
expiresAt: order_by
id: order_by
refreshTokenHash: order_by
userId: order_by
}
"""
response of any mutation on the table "auth.refresh_tokens"
"""
type authRefreshTokens_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authRefreshTokens!]!
}
"""
on_conflict condition type for table "auth.refresh_tokens"
"""
input authRefreshTokens_on_conflict {
constraint: authRefreshTokens_constraint!
update_columns: [authRefreshTokens_update_column!]! = []
where: authRefreshTokens_bool_exp
}
"""Ordering options when selecting data from "auth.refresh_tokens"."""
input authRefreshTokens_order_by {
createdAt: order_by
expiresAt: order_by
id: order_by
metadata: order_by
refreshTokenHash: order_by
refresh_token_type: authRefreshTokenTypes_order_by
type: order_by
user: users_order_by
userId: order_by
}
"""primary key columns input for table: auth.refresh_tokens"""
input authRefreshTokens_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input authRefreshTokens_prepend_input {
metadata: jsonb
}
"""
select columns of table "auth.refresh_tokens"
"""
enum authRefreshTokens_select_column {
"""column name"""
createdAt
"""column name"""
expiresAt
"""column name"""
id
"""column name"""
metadata
"""column name"""
refreshTokenHash
"""column name"""
type
"""column name"""
userId
}
"""
input type for updating data in table "auth.refresh_tokens"
"""
input authRefreshTokens_set_input {
createdAt: timestamptz
expiresAt: timestamptz
id: uuid
metadata: jsonb
refreshTokenHash: String
type: authRefreshTokenTypes_enum
userId: uuid
}
"""
Streaming cursor of the table "authRefreshTokens"
"""
input authRefreshTokens_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authRefreshTokens_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authRefreshTokens_stream_cursor_value_input {
createdAt: timestamptz
expiresAt: timestamptz
id: uuid
metadata: jsonb
refreshTokenHash: String
type: authRefreshTokenTypes_enum
userId: uuid
}
"""
update columns of table "auth.refresh_tokens"
"""
enum authRefreshTokens_update_column {
"""column name"""
createdAt
"""column name"""
expiresAt
"""column name"""
id
"""column name"""
metadata
"""column name"""
refreshTokenHash
"""column name"""
type
"""column name"""
userId
}
input authRefreshTokens_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: authRefreshTokens_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: authRefreshTokens_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: authRefreshTokens_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: authRefreshTokens_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: authRefreshTokens_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: authRefreshTokens_set_input
"""filter the rows which have to be updated"""
where: authRefreshTokens_bool_exp!
}
"""
Persistent Hasura roles for users. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authRoles {
role: String!
"""An array relationship"""
userRoles(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): [authUserRoles!]!
"""An aggregate relationship"""
userRoles_aggregate(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): authUserRoles_aggregate!
"""An array relationship"""
usersByDefaultRole(
"""distinct select on columns"""
distinct_on: [users_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [users_order_by!]
"""filter the rows returned"""
where: users_bool_exp
): [users!]!
"""An aggregate relationship"""
usersByDefaultRole_aggregate(
"""distinct select on columns"""
distinct_on: [users_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [users_order_by!]
"""filter the rows returned"""
where: users_bool_exp
): users_aggregate!
}
"""
aggregated selection of "auth.roles"
"""
type authRoles_aggregate {
aggregate: authRoles_aggregate_fields
nodes: [authRoles!]!
}
"""
aggregate fields of "auth.roles"
"""
type authRoles_aggregate_fields {
count(columns: [authRoles_select_column!], distinct: Boolean): Int!
max: authRoles_max_fields
min: authRoles_min_fields
}
"""
Boolean expression to filter rows from the table "auth.roles". All fields are combined with a logical 'AND'.
"""
input authRoles_bool_exp {
_and: [authRoles_bool_exp!]
_not: authRoles_bool_exp
_or: [authRoles_bool_exp!]
role: String_comparison_exp
userRoles: authUserRoles_bool_exp
userRoles_aggregate: authUserRoles_aggregate_bool_exp
usersByDefaultRole: users_bool_exp
usersByDefaultRole_aggregate: users_aggregate_bool_exp
}
"""
unique or primary key constraints on table "auth.roles"
"""
enum authRoles_constraint {
"""
unique or primary key constraint on columns "role"
"""
roles_pkey
}
"""
input type for inserting data into table "auth.roles"
"""
input authRoles_insert_input {
role: String
userRoles: authUserRoles_arr_rel_insert_input
usersByDefaultRole: users_arr_rel_insert_input
}
"""aggregate max on columns"""
type authRoles_max_fields {
role: String
}
"""aggregate min on columns"""
type authRoles_min_fields {
role: String
}
"""
response of any mutation on the table "auth.roles"
"""
type authRoles_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authRoles!]!
}
"""
input type for inserting object relation for remote table "auth.roles"
"""
input authRoles_obj_rel_insert_input {
data: authRoles_insert_input!
"""upsert condition"""
on_conflict: authRoles_on_conflict
}
"""
on_conflict condition type for table "auth.roles"
"""
input authRoles_on_conflict {
constraint: authRoles_constraint!
update_columns: [authRoles_update_column!]! = []
where: authRoles_bool_exp
}
"""Ordering options when selecting data from "auth.roles"."""
input authRoles_order_by {
role: order_by
userRoles_aggregate: authUserRoles_aggregate_order_by
usersByDefaultRole_aggregate: users_aggregate_order_by
}
"""primary key columns input for table: auth.roles"""
input authRoles_pk_columns_input {
role: String!
}
"""
select columns of table "auth.roles"
"""
enum authRoles_select_column {
"""column name"""
role
}
"""
input type for updating data in table "auth.roles"
"""
input authRoles_set_input {
role: String
}
"""
Streaming cursor of the table "authRoles"
"""
input authRoles_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authRoles_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authRoles_stream_cursor_value_input {
role: String
}
"""
update columns of table "auth.roles"
"""
enum authRoles_update_column {
"""column name"""
role
}
input authRoles_updates {
"""sets the columns of the filtered rows to the given values"""
_set: authRoles_set_input
"""filter the rows which have to be updated"""
where: authRoles_bool_exp!
}
"""
Active providers for a given user. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authUserProviders {
accessToken: String!
createdAt: timestamptz!
id: uuid!
"""An object relationship"""
provider: authProviders!
providerId: String!
providerUserId: String!
refreshToken: String
updatedAt: timestamptz!
"""An object relationship"""
user: users!
userId: uuid!
}
"""
aggregated selection of "auth.user_providers"
"""
type authUserProviders_aggregate {
aggregate: authUserProviders_aggregate_fields
nodes: [authUserProviders!]!
}
input authUserProviders_aggregate_bool_exp {
count: authUserProviders_aggregate_bool_exp_count
}
input authUserProviders_aggregate_bool_exp_count {
arguments: [authUserProviders_select_column!]
distinct: Boolean
filter: authUserProviders_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "auth.user_providers"
"""
type authUserProviders_aggregate_fields {
count(columns: [authUserProviders_select_column!], distinct: Boolean): Int!
max: authUserProviders_max_fields
min: authUserProviders_min_fields
}
"""
order by aggregate values of table "auth.user_providers"
"""
input authUserProviders_aggregate_order_by {
count: order_by
max: authUserProviders_max_order_by
min: authUserProviders_min_order_by
}
"""
input type for inserting array relation for remote table "auth.user_providers"
"""
input authUserProviders_arr_rel_insert_input {
data: [authUserProviders_insert_input!]!
"""upsert condition"""
on_conflict: authUserProviders_on_conflict
}
"""
Boolean expression to filter rows from the table "auth.user_providers". All fields are combined with a logical 'AND'.
"""
input authUserProviders_bool_exp {
_and: [authUserProviders_bool_exp!]
_not: authUserProviders_bool_exp
_or: [authUserProviders_bool_exp!]
accessToken: String_comparison_exp
createdAt: timestamptz_comparison_exp
id: uuid_comparison_exp
provider: authProviders_bool_exp
providerId: String_comparison_exp
providerUserId: String_comparison_exp
refreshToken: String_comparison_exp
updatedAt: timestamptz_comparison_exp
user: users_bool_exp
userId: uuid_comparison_exp
}
"""
unique or primary key constraints on table "auth.user_providers"
"""
enum authUserProviders_constraint {
"""
unique or primary key constraint on columns "id"
"""
user_providers_pkey
"""
unique or primary key constraint on columns "provider_user_id", "provider_id"
"""
user_providers_provider_id_provider_user_id_key
"""
unique or primary key constraint on columns "user_id", "provider_id"
"""
user_providers_user_id_provider_id_key
}
"""
input type for inserting data into table "auth.user_providers"
"""
input authUserProviders_insert_input {
accessToken: String
createdAt: timestamptz
id: uuid
provider: authProviders_obj_rel_insert_input
providerId: String
providerUserId: String
refreshToken: String
updatedAt: timestamptz
user: users_obj_rel_insert_input
userId: uuid
}
"""aggregate max on columns"""
type authUserProviders_max_fields {
accessToken: String
createdAt: timestamptz
id: uuid
providerId: String
providerUserId: String
refreshToken: String
updatedAt: timestamptz
userId: uuid
}
"""
order by max() on columns of table "auth.user_providers"
"""
input authUserProviders_max_order_by {
accessToken: order_by
createdAt: order_by
id: order_by
providerId: order_by
providerUserId: order_by
refreshToken: order_by
updatedAt: order_by
userId: order_by
}
"""aggregate min on columns"""
type authUserProviders_min_fields {
accessToken: String
createdAt: timestamptz
id: uuid
providerId: String
providerUserId: String
refreshToken: String
updatedAt: timestamptz
userId: uuid
}
"""
order by min() on columns of table "auth.user_providers"
"""
input authUserProviders_min_order_by {
accessToken: order_by
createdAt: order_by
id: order_by
providerId: order_by
providerUserId: order_by
refreshToken: order_by
updatedAt: order_by
userId: order_by
}
"""
response of any mutation on the table "auth.user_providers"
"""
type authUserProviders_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authUserProviders!]!
}
"""
on_conflict condition type for table "auth.user_providers"
"""
input authUserProviders_on_conflict {
constraint: authUserProviders_constraint!
update_columns: [authUserProviders_update_column!]! = []
where: authUserProviders_bool_exp
}
"""Ordering options when selecting data from "auth.user_providers"."""
input authUserProviders_order_by {
accessToken: order_by
createdAt: order_by
id: order_by
provider: authProviders_order_by
providerId: order_by
providerUserId: order_by
refreshToken: order_by
updatedAt: order_by
user: users_order_by
userId: order_by
}
"""primary key columns input for table: auth.user_providers"""
input authUserProviders_pk_columns_input {
id: uuid!
}
"""
select columns of table "auth.user_providers"
"""
enum authUserProviders_select_column {
"""column name"""
accessToken
"""column name"""
createdAt
"""column name"""
id
"""column name"""
providerId
"""column name"""
providerUserId
"""column name"""
refreshToken
"""column name"""
updatedAt
"""column name"""
userId
}
"""
input type for updating data in table "auth.user_providers"
"""
input authUserProviders_set_input {
accessToken: String
createdAt: timestamptz
id: uuid
providerId: String
providerUserId: String
refreshToken: String
updatedAt: timestamptz
userId: uuid
}
"""
Streaming cursor of the table "authUserProviders"
"""
input authUserProviders_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authUserProviders_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authUserProviders_stream_cursor_value_input {
accessToken: String
createdAt: timestamptz
id: uuid
providerId: String
providerUserId: String
refreshToken: String
updatedAt: timestamptz
userId: uuid
}
"""
update columns of table "auth.user_providers"
"""
enum authUserProviders_update_column {
"""column name"""
accessToken
"""column name"""
createdAt
"""column name"""
id
"""column name"""
providerId
"""column name"""
providerUserId
"""column name"""
refreshToken
"""column name"""
updatedAt
"""column name"""
userId
}
input authUserProviders_updates {
"""sets the columns of the filtered rows to the given values"""
_set: authUserProviders_set_input
"""filter the rows which have to be updated"""
where: authUserProviders_bool_exp!
}
"""
Roles of users. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authUserRoles {
createdAt: timestamptz!
id: uuid!
role: String!
"""An object relationship"""
roleByRole: authRoles!
"""An object relationship"""
user: users!
userId: uuid!
}
"""
aggregated selection of "auth.user_roles"
"""
type authUserRoles_aggregate {
aggregate: authUserRoles_aggregate_fields
nodes: [authUserRoles!]!
}
input authUserRoles_aggregate_bool_exp {
count: authUserRoles_aggregate_bool_exp_count
}
input authUserRoles_aggregate_bool_exp_count {
arguments: [authUserRoles_select_column!]
distinct: Boolean
filter: authUserRoles_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "auth.user_roles"
"""
type authUserRoles_aggregate_fields {
count(columns: [authUserRoles_select_column!], distinct: Boolean): Int!
max: authUserRoles_max_fields
min: authUserRoles_min_fields
}
"""
order by aggregate values of table "auth.user_roles"
"""
input authUserRoles_aggregate_order_by {
count: order_by
max: authUserRoles_max_order_by
min: authUserRoles_min_order_by
}
"""
input type for inserting array relation for remote table "auth.user_roles"
"""
input authUserRoles_arr_rel_insert_input {
data: [authUserRoles_insert_input!]!
"""upsert condition"""
on_conflict: authUserRoles_on_conflict
}
"""
Boolean expression to filter rows from the table "auth.user_roles". All fields are combined with a logical 'AND'.
"""
input authUserRoles_bool_exp {
_and: [authUserRoles_bool_exp!]
_not: authUserRoles_bool_exp
_or: [authUserRoles_bool_exp!]
createdAt: timestamptz_comparison_exp
id: uuid_comparison_exp
role: String_comparison_exp
roleByRole: authRoles_bool_exp
user: users_bool_exp
userId: uuid_comparison_exp
}
"""
unique or primary key constraints on table "auth.user_roles"
"""
enum authUserRoles_constraint {
"""
unique or primary key constraint on columns "id"
"""
user_roles_pkey
"""
unique or primary key constraint on columns "user_id", "role"
"""
user_roles_user_id_role_key
}
"""
input type for inserting data into table "auth.user_roles"
"""
input authUserRoles_insert_input {
createdAt: timestamptz
id: uuid
role: String
roleByRole: authRoles_obj_rel_insert_input
user: users_obj_rel_insert_input
userId: uuid
}
"""aggregate max on columns"""
type authUserRoles_max_fields {
createdAt: timestamptz
id: uuid
role: String
userId: uuid
}
"""
order by max() on columns of table "auth.user_roles"
"""
input authUserRoles_max_order_by {
createdAt: order_by
id: order_by
role: order_by
userId: order_by
}
"""aggregate min on columns"""
type authUserRoles_min_fields {
createdAt: timestamptz
id: uuid
role: String
userId: uuid
}
"""
order by min() on columns of table "auth.user_roles"
"""
input authUserRoles_min_order_by {
createdAt: order_by
id: order_by
role: order_by
userId: order_by
}
"""
response of any mutation on the table "auth.user_roles"
"""
type authUserRoles_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authUserRoles!]!
}
"""
on_conflict condition type for table "auth.user_roles"
"""
input authUserRoles_on_conflict {
constraint: authUserRoles_constraint!
update_columns: [authUserRoles_update_column!]! = []
where: authUserRoles_bool_exp
}
"""Ordering options when selecting data from "auth.user_roles"."""
input authUserRoles_order_by {
createdAt: order_by
id: order_by
role: order_by
roleByRole: authRoles_order_by
user: users_order_by
userId: order_by
}
"""primary key columns input for table: auth.user_roles"""
input authUserRoles_pk_columns_input {
id: uuid!
}
"""
select columns of table "auth.user_roles"
"""
enum authUserRoles_select_column {
"""column name"""
createdAt
"""column name"""
id
"""column name"""
role
"""column name"""
userId
}
"""
input type for updating data in table "auth.user_roles"
"""
input authUserRoles_set_input {
createdAt: timestamptz
id: uuid
role: String
userId: uuid
}
"""
Streaming cursor of the table "authUserRoles"
"""
input authUserRoles_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authUserRoles_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authUserRoles_stream_cursor_value_input {
createdAt: timestamptz
id: uuid
role: String
userId: uuid
}
"""
update columns of table "auth.user_roles"
"""
enum authUserRoles_update_column {
"""column name"""
createdAt
"""column name"""
id
"""column name"""
role
"""column name"""
userId
}
input authUserRoles_updates {
"""sets the columns of the filtered rows to the given values"""
_set: authUserRoles_set_input
"""filter the rows which have to be updated"""
where: authUserRoles_bool_exp!
}
"""
User webauthn security keys. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type authUserSecurityKeys {
counter: bigint!
credentialId: String!
credentialPublicKey: bytea
id: uuid!
nickname: String
transports: String!
"""An object relationship"""
user: users!
userId: uuid!
}
"""
aggregated selection of "auth.user_security_keys"
"""
type authUserSecurityKeys_aggregate {
aggregate: authUserSecurityKeys_aggregate_fields
nodes: [authUserSecurityKeys!]!
}
input authUserSecurityKeys_aggregate_bool_exp {
count: authUserSecurityKeys_aggregate_bool_exp_count
}
input authUserSecurityKeys_aggregate_bool_exp_count {
arguments: [authUserSecurityKeys_select_column!]
distinct: Boolean
filter: authUserSecurityKeys_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "auth.user_security_keys"
"""
type authUserSecurityKeys_aggregate_fields {
avg: authUserSecurityKeys_avg_fields
count(columns: [authUserSecurityKeys_select_column!], distinct: Boolean): Int!
max: authUserSecurityKeys_max_fields
min: authUserSecurityKeys_min_fields
stddev: authUserSecurityKeys_stddev_fields
stddev_pop: authUserSecurityKeys_stddev_pop_fields
stddev_samp: authUserSecurityKeys_stddev_samp_fields
sum: authUserSecurityKeys_sum_fields
var_pop: authUserSecurityKeys_var_pop_fields
var_samp: authUserSecurityKeys_var_samp_fields
variance: authUserSecurityKeys_variance_fields
}
"""
order by aggregate values of table "auth.user_security_keys"
"""
input authUserSecurityKeys_aggregate_order_by {
avg: authUserSecurityKeys_avg_order_by
count: order_by
max: authUserSecurityKeys_max_order_by
min: authUserSecurityKeys_min_order_by
stddev: authUserSecurityKeys_stddev_order_by
stddev_pop: authUserSecurityKeys_stddev_pop_order_by
stddev_samp: authUserSecurityKeys_stddev_samp_order_by
sum: authUserSecurityKeys_sum_order_by
var_pop: authUserSecurityKeys_var_pop_order_by
var_samp: authUserSecurityKeys_var_samp_order_by
variance: authUserSecurityKeys_variance_order_by
}
"""
input type for inserting array relation for remote table "auth.user_security_keys"
"""
input authUserSecurityKeys_arr_rel_insert_input {
data: [authUserSecurityKeys_insert_input!]!
"""upsert condition"""
on_conflict: authUserSecurityKeys_on_conflict
}
"""aggregate avg on columns"""
type authUserSecurityKeys_avg_fields {
counter: Float
}
"""
order by avg() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_avg_order_by {
counter: order_by
}
"""
Boolean expression to filter rows from the table "auth.user_security_keys". All fields are combined with a logical 'AND'.
"""
input authUserSecurityKeys_bool_exp {
_and: [authUserSecurityKeys_bool_exp!]
_not: authUserSecurityKeys_bool_exp
_or: [authUserSecurityKeys_bool_exp!]
counter: bigint_comparison_exp
credentialId: String_comparison_exp
credentialPublicKey: bytea_comparison_exp
id: uuid_comparison_exp
nickname: String_comparison_exp
transports: String_comparison_exp
user: users_bool_exp
userId: uuid_comparison_exp
}
"""
unique or primary key constraints on table "auth.user_security_keys"
"""
enum authUserSecurityKeys_constraint {
"""
unique or primary key constraint on columns "credential_id"
"""
user_security_key_credential_id_key
"""
unique or primary key constraint on columns "id"
"""
user_security_keys_pkey
}
"""
input type for incrementing numeric columns in table "auth.user_security_keys"
"""
input authUserSecurityKeys_inc_input {
counter: bigint
}
"""
input type for inserting data into table "auth.user_security_keys"
"""
input authUserSecurityKeys_insert_input {
counter: bigint
credentialId: String
credentialPublicKey: bytea
id: uuid
nickname: String
transports: String
user: users_obj_rel_insert_input
userId: uuid
}
"""aggregate max on columns"""
type authUserSecurityKeys_max_fields {
counter: bigint
credentialId: String
id: uuid
nickname: String
transports: String
userId: uuid
}
"""
order by max() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_max_order_by {
counter: order_by
credentialId: order_by
id: order_by
nickname: order_by
transports: order_by
userId: order_by
}
"""aggregate min on columns"""
type authUserSecurityKeys_min_fields {
counter: bigint
credentialId: String
id: uuid
nickname: String
transports: String
userId: uuid
}
"""
order by min() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_min_order_by {
counter: order_by
credentialId: order_by
id: order_by
nickname: order_by
transports: order_by
userId: order_by
}
"""
response of any mutation on the table "auth.user_security_keys"
"""
type authUserSecurityKeys_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [authUserSecurityKeys!]!
}
"""
on_conflict condition type for table "auth.user_security_keys"
"""
input authUserSecurityKeys_on_conflict {
constraint: authUserSecurityKeys_constraint!
update_columns: [authUserSecurityKeys_update_column!]! = []
where: authUserSecurityKeys_bool_exp
}
"""Ordering options when selecting data from "auth.user_security_keys"."""
input authUserSecurityKeys_order_by {
counter: order_by
credentialId: order_by
credentialPublicKey: order_by
id: order_by
nickname: order_by
transports: order_by
user: users_order_by
userId: order_by
}
"""primary key columns input for table: auth.user_security_keys"""
input authUserSecurityKeys_pk_columns_input {
id: uuid!
}
"""
select columns of table "auth.user_security_keys"
"""
enum authUserSecurityKeys_select_column {
"""column name"""
counter
"""column name"""
credentialId
"""column name"""
credentialPublicKey
"""column name"""
id
"""column name"""
nickname
"""column name"""
transports
"""column name"""
userId
}
"""
input type for updating data in table "auth.user_security_keys"
"""
input authUserSecurityKeys_set_input {
counter: bigint
credentialId: String
credentialPublicKey: bytea
id: uuid
nickname: String
transports: String
userId: uuid
}
"""aggregate stddev on columns"""
type authUserSecurityKeys_stddev_fields {
counter: Float
}
"""
order by stddev() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_stddev_order_by {
counter: order_by
}
"""aggregate stddev_pop on columns"""
type authUserSecurityKeys_stddev_pop_fields {
counter: Float
}
"""
order by stddev_pop() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_stddev_pop_order_by {
counter: order_by
}
"""aggregate stddev_samp on columns"""
type authUserSecurityKeys_stddev_samp_fields {
counter: Float
}
"""
order by stddev_samp() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_stddev_samp_order_by {
counter: order_by
}
"""
Streaming cursor of the table "authUserSecurityKeys"
"""
input authUserSecurityKeys_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: authUserSecurityKeys_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input authUserSecurityKeys_stream_cursor_value_input {
counter: bigint
credentialId: String
credentialPublicKey: bytea
id: uuid
nickname: String
transports: String
userId: uuid
}
"""aggregate sum on columns"""
type authUserSecurityKeys_sum_fields {
counter: bigint
}
"""
order by sum() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_sum_order_by {
counter: order_by
}
"""
update columns of table "auth.user_security_keys"
"""
enum authUserSecurityKeys_update_column {
"""column name"""
counter
"""column name"""
credentialId
"""column name"""
credentialPublicKey
"""column name"""
id
"""column name"""
nickname
"""column name"""
transports
"""column name"""
userId
}
input authUserSecurityKeys_updates {
"""increments the numeric columns with given value of the filtered values"""
_inc: authUserSecurityKeys_inc_input
"""sets the columns of the filtered rows to the given values"""
_set: authUserSecurityKeys_set_input
"""filter the rows which have to be updated"""
where: authUserSecurityKeys_bool_exp!
}
"""aggregate var_pop on columns"""
type authUserSecurityKeys_var_pop_fields {
counter: Float
}
"""
order by var_pop() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_var_pop_order_by {
counter: order_by
}
"""aggregate var_samp on columns"""
type authUserSecurityKeys_var_samp_fields {
counter: Float
}
"""
order by var_samp() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_var_samp_order_by {
counter: order_by
}
"""aggregate variance on columns"""
type authUserSecurityKeys_variance_fields {
counter: Float
}
"""
order by variance() on columns of table "auth.user_security_keys"
"""
input authUserSecurityKeys_variance_order_by {
counter: order_by
}
scalar bigint
"""
Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.
"""
input bigint_comparison_exp {
_eq: bigint
_gt: bigint
_gte: bigint
_in: [bigint!]
_is_null: Boolean
_lt: bigint
_lte: bigint
_neq: bigint
_nin: [bigint!]
}
"""
columns and relationships of "storage.buckets"
"""
type buckets {
cacheControl: String
createdAt: timestamptz!
downloadExpiration: Int!
"""An array relationship"""
files(
"""distinct select on columns"""
distinct_on: [files_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [files_order_by!]
"""filter the rows returned"""
where: files_bool_exp
): [files!]!
"""An aggregate relationship"""
files_aggregate(
"""distinct select on columns"""
distinct_on: [files_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [files_order_by!]
"""filter the rows returned"""
where: files_bool_exp
): files_aggregate!
id: String!
maxUploadFileSize: Int!
minUploadFileSize: Int!
presignedUrlsEnabled: Boolean!
updatedAt: timestamptz!
}
"""
aggregated selection of "storage.buckets"
"""
type buckets_aggregate {
aggregate: buckets_aggregate_fields
nodes: [buckets!]!
}
"""
aggregate fields of "storage.buckets"
"""
type buckets_aggregate_fields {
avg: buckets_avg_fields
count(columns: [buckets_select_column!], distinct: Boolean): Int!
max: buckets_max_fields
min: buckets_min_fields
stddev: buckets_stddev_fields
stddev_pop: buckets_stddev_pop_fields
stddev_samp: buckets_stddev_samp_fields
sum: buckets_sum_fields
var_pop: buckets_var_pop_fields
var_samp: buckets_var_samp_fields
variance: buckets_variance_fields
}
"""aggregate avg on columns"""
type buckets_avg_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
"""
Boolean expression to filter rows from the table "storage.buckets". All fields are combined with a logical 'AND'.
"""
input buckets_bool_exp {
_and: [buckets_bool_exp!]
_not: buckets_bool_exp
_or: [buckets_bool_exp!]
cacheControl: String_comparison_exp
createdAt: timestamptz_comparison_exp
downloadExpiration: Int_comparison_exp
files: files_bool_exp
files_aggregate: files_aggregate_bool_exp
id: String_comparison_exp
maxUploadFileSize: Int_comparison_exp
minUploadFileSize: Int_comparison_exp
presignedUrlsEnabled: Boolean_comparison_exp
updatedAt: timestamptz_comparison_exp
}
"""
unique or primary key constraints on table "storage.buckets"
"""
enum buckets_constraint {
"""
unique or primary key constraint on columns "id"
"""
buckets_pkey
}
"""
input type for incrementing numeric columns in table "storage.buckets"
"""
input buckets_inc_input {
downloadExpiration: Int
maxUploadFileSize: Int
minUploadFileSize: Int
}
"""
input type for inserting data into table "storage.buckets"
"""
input buckets_insert_input {
cacheControl: String
createdAt: timestamptz
downloadExpiration: Int
files: files_arr_rel_insert_input
id: String
maxUploadFileSize: Int
minUploadFileSize: Int
presignedUrlsEnabled: Boolean
updatedAt: timestamptz
}
"""aggregate max on columns"""
type buckets_max_fields {
cacheControl: String
createdAt: timestamptz
downloadExpiration: Int
id: String
maxUploadFileSize: Int
minUploadFileSize: Int
updatedAt: timestamptz
}
"""aggregate min on columns"""
type buckets_min_fields {
cacheControl: String
createdAt: timestamptz
downloadExpiration: Int
id: String
maxUploadFileSize: Int
minUploadFileSize: Int
updatedAt: timestamptz
}
"""
response of any mutation on the table "storage.buckets"
"""
type buckets_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [buckets!]!
}
"""
input type for inserting object relation for remote table "storage.buckets"
"""
input buckets_obj_rel_insert_input {
data: buckets_insert_input!
"""upsert condition"""
on_conflict: buckets_on_conflict
}
"""
on_conflict condition type for table "storage.buckets"
"""
input buckets_on_conflict {
constraint: buckets_constraint!
update_columns: [buckets_update_column!]! = []
where: buckets_bool_exp
}
"""Ordering options when selecting data from "storage.buckets"."""
input buckets_order_by {
cacheControl: order_by
createdAt: order_by
downloadExpiration: order_by
files_aggregate: files_aggregate_order_by
id: order_by
maxUploadFileSize: order_by
minUploadFileSize: order_by
presignedUrlsEnabled: order_by
updatedAt: order_by
}
"""primary key columns input for table: storage.buckets"""
input buckets_pk_columns_input {
id: String!
}
"""
select columns of table "storage.buckets"
"""
enum buckets_select_column {
"""column name"""
cacheControl
"""column name"""
createdAt
"""column name"""
downloadExpiration
"""column name"""
id
"""column name"""
maxUploadFileSize
"""column name"""
minUploadFileSize
"""column name"""
presignedUrlsEnabled
"""column name"""
updatedAt
}
"""
input type for updating data in table "storage.buckets"
"""
input buckets_set_input {
cacheControl: String
createdAt: timestamptz
downloadExpiration: Int
id: String
maxUploadFileSize: Int
minUploadFileSize: Int
presignedUrlsEnabled: Boolean
updatedAt: timestamptz
}
"""aggregate stddev on columns"""
type buckets_stddev_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
"""aggregate stddev_pop on columns"""
type buckets_stddev_pop_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
"""aggregate stddev_samp on columns"""
type buckets_stddev_samp_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
"""
Streaming cursor of the table "buckets"
"""
input buckets_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: buckets_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input buckets_stream_cursor_value_input {
cacheControl: String
createdAt: timestamptz
downloadExpiration: Int
id: String
maxUploadFileSize: Int
minUploadFileSize: Int
presignedUrlsEnabled: Boolean
updatedAt: timestamptz
}
"""aggregate sum on columns"""
type buckets_sum_fields {
downloadExpiration: Int
maxUploadFileSize: Int
minUploadFileSize: Int
}
"""
update columns of table "storage.buckets"
"""
enum buckets_update_column {
"""column name"""
cacheControl
"""column name"""
createdAt
"""column name"""
downloadExpiration
"""column name"""
id
"""column name"""
maxUploadFileSize
"""column name"""
minUploadFileSize
"""column name"""
presignedUrlsEnabled
"""column name"""
updatedAt
}
input buckets_updates {
"""increments the numeric columns with given value of the filtered values"""
_inc: buckets_inc_input
"""sets the columns of the filtered rows to the given values"""
_set: buckets_set_input
"""filter the rows which have to be updated"""
where: buckets_bool_exp!
}
"""aggregate var_pop on columns"""
type buckets_var_pop_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
"""aggregate var_samp on columns"""
type buckets_var_samp_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
"""aggregate variance on columns"""
type buckets_variance_fields {
downloadExpiration: Float
maxUploadFileSize: Float
minUploadFileSize: Float
}
scalar bytea
"""
Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'.
"""
input bytea_comparison_exp {
_eq: bytea
_gt: bytea
_gte: bytea
_in: [bytea!]
_is_null: Boolean
_lt: bytea
_lte: bytea
_neq: bytea
_nin: [bytea!]
}
scalar citext
"""
Boolean expression to compare columns of type "citext". All fields are combined with logical 'AND'.
"""
input citext_comparison_exp {
_eq: citext
_gt: citext
_gte: citext
"""does the column match the given case-insensitive pattern"""
_ilike: citext
_in: [citext!]
"""
does the column match the given POSIX regular expression, case insensitive
"""
_iregex: citext
_is_null: Boolean
"""does the column match the given pattern"""
_like: citext
_lt: citext
_lte: citext
_neq: citext
"""does the column NOT match the given case-insensitive pattern"""
_nilike: citext
_nin: [citext!]
"""
does the column NOT match the given POSIX regular expression, case insensitive
"""
_niregex: citext
"""does the column NOT match the given pattern"""
_nlike: citext
"""
does the column NOT match the given POSIX regular expression, case sensitive
"""
_nregex: citext
"""does the column NOT match the given SQL regular expression"""
_nsimilar: citext
"""
does the column match the given POSIX regular expression, case sensitive
"""
_regex: citext
"""does the column match the given SQL regular expression"""
_similar: citext
}
"""ordering argument of a cursor"""
enum cursor_ordering {
"""ascending ordering of the cursor"""
ASC
"""descending ordering of the cursor"""
DESC
}
"""
columns and relationships of "execution_results"
"""
type execution_results {
created_at: timestamptz!
executed_at: timestamptz!
execution_trace(
"""JSON select path"""
path: String
): jsonb
id: uuid!
outputs(
"""JSON select path"""
path: String
): jsonb!
"""An object relationship"""
runbook: runbooks!
runbook_id: uuid!
updated_at: timestamptz!
}
"""
aggregated selection of "execution_results"
"""
type execution_results_aggregate {
aggregate: execution_results_aggregate_fields
nodes: [execution_results!]!
}
input execution_results_aggregate_bool_exp {
count: execution_results_aggregate_bool_exp_count
}
input execution_results_aggregate_bool_exp_count {
arguments: [execution_results_select_column!]
distinct: Boolean
filter: execution_results_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "execution_results"
"""
type execution_results_aggregate_fields {
count(columns: [execution_results_select_column!], distinct: Boolean): Int!
max: execution_results_max_fields
min: execution_results_min_fields
}
"""
order by aggregate values of table "execution_results"
"""
input execution_results_aggregate_order_by {
count: order_by
max: execution_results_max_order_by
min: execution_results_min_order_by
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input execution_results_append_input {
execution_trace: jsonb
outputs: jsonb
}
"""
input type for inserting array relation for remote table "execution_results"
"""
input execution_results_arr_rel_insert_input {
data: [execution_results_insert_input!]!
"""upsert condition"""
on_conflict: execution_results_on_conflict
}
"""
Boolean expression to filter rows from the table "execution_results". All fields are combined with a logical 'AND'.
"""
input execution_results_bool_exp {
_and: [execution_results_bool_exp!]
_not: execution_results_bool_exp
_or: [execution_results_bool_exp!]
created_at: timestamptz_comparison_exp
executed_at: timestamptz_comparison_exp
execution_trace: jsonb_comparison_exp
id: uuid_comparison_exp
outputs: jsonb_comparison_exp
runbook: runbooks_bool_exp
runbook_id: uuid_comparison_exp
updated_at: timestamptz_comparison_exp
}
"""
unique or primary key constraints on table "execution_results"
"""
enum execution_results_constraint {
"""
unique or primary key constraint on columns "id"
"""
runbook_executions_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input execution_results_delete_at_path_input {
execution_trace: [String!]
outputs: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input execution_results_delete_elem_input {
execution_trace: Int
outputs: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input execution_results_delete_key_input {
execution_trace: String
outputs: String
}
"""
input type for inserting data into table "execution_results"
"""
input execution_results_insert_input {
created_at: timestamptz
executed_at: timestamptz
execution_trace: jsonb
id: uuid
outputs: jsonb
runbook: runbooks_obj_rel_insert_input
runbook_id: uuid
updated_at: timestamptz
}
"""aggregate max on columns"""
type execution_results_max_fields {
created_at: timestamptz
executed_at: timestamptz
id: uuid
runbook_id: uuid
updated_at: timestamptz
}
"""
order by max() on columns of table "execution_results"
"""
input execution_results_max_order_by {
created_at: order_by
executed_at: order_by
id: order_by
runbook_id: order_by
updated_at: order_by
}
"""aggregate min on columns"""
type execution_results_min_fields {
created_at: timestamptz
executed_at: timestamptz
id: uuid
runbook_id: uuid
updated_at: timestamptz
}
"""
order by min() on columns of table "execution_results"
"""
input execution_results_min_order_by {
created_at: order_by
executed_at: order_by
id: order_by
runbook_id: order_by
updated_at: order_by
}
"""
response of any mutation on the table "execution_results"
"""
type execution_results_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [execution_results!]!
}
"""
on_conflict condition type for table "execution_results"
"""
input execution_results_on_conflict {
constraint: execution_results_constraint!
update_columns: [execution_results_update_column!]! = []
where: execution_results_bool_exp
}
"""Ordering options when selecting data from "execution_results"."""
input execution_results_order_by {
created_at: order_by
executed_at: order_by
execution_trace: order_by
id: order_by
outputs: order_by
runbook: runbooks_order_by
runbook_id: order_by
updated_at: order_by
}
"""primary key columns input for table: execution_results"""
input execution_results_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input execution_results_prepend_input {
execution_trace: jsonb
outputs: jsonb
}
"""
select columns of table "execution_results"
"""
enum execution_results_select_column {
"""column name"""
created_at
"""column name"""
executed_at
"""column name"""
execution_trace
"""column name"""
id
"""column name"""
outputs
"""column name"""
runbook_id
"""column name"""
updated_at
}
"""
input type for updating data in table "execution_results"
"""
input execution_results_set_input {
created_at: timestamptz
executed_at: timestamptz
execution_trace: jsonb
id: uuid
outputs: jsonb
runbook_id: uuid
updated_at: timestamptz
}
"""
Streaming cursor of the table "execution_results"
"""
input execution_results_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: execution_results_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input execution_results_stream_cursor_value_input {
created_at: timestamptz
executed_at: timestamptz
execution_trace: jsonb
id: uuid
outputs: jsonb
runbook_id: uuid
updated_at: timestamptz
}
"""
update columns of table "execution_results"
"""
enum execution_results_update_column {
"""column name"""
created_at
"""column name"""
executed_at
"""column name"""
execution_trace
"""column name"""
id
"""column name"""
outputs
"""column name"""
runbook_id
"""column name"""
updated_at
}
input execution_results_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: execution_results_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: execution_results_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: execution_results_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: execution_results_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: execution_results_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: execution_results_set_input
"""filter the rows which have to be updated"""
where: execution_results_bool_exp!
}
"""
columns and relationships of "storage.files"
"""
type files {
"""An object relationship"""
bucket: buckets!
bucketId: String!
createdAt: timestamptz!
etag: String
id: uuid!
isUploaded: Boolean
metadata(
"""JSON select path"""
path: String
): jsonb
mimeType: String
name: String
size: Int
updatedAt: timestamptz!
uploadedByUserId: uuid
}
"""
aggregated selection of "storage.files"
"""
type files_aggregate {
aggregate: files_aggregate_fields
nodes: [files!]!
}
input files_aggregate_bool_exp {
bool_and: files_aggregate_bool_exp_bool_and
bool_or: files_aggregate_bool_exp_bool_or
count: files_aggregate_bool_exp_count
}
input files_aggregate_bool_exp_bool_and {
arguments: files_select_column_files_aggregate_bool_exp_bool_and_arguments_columns!
distinct: Boolean
filter: files_bool_exp
predicate: Boolean_comparison_exp!
}
input files_aggregate_bool_exp_bool_or {
arguments: files_select_column_files_aggregate_bool_exp_bool_or_arguments_columns!
distinct: Boolean
filter: files_bool_exp
predicate: Boolean_comparison_exp!
}
input files_aggregate_bool_exp_count {
arguments: [files_select_column!]
distinct: Boolean
filter: files_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "storage.files"
"""
type files_aggregate_fields {
avg: files_avg_fields
count(columns: [files_select_column!], distinct: Boolean): Int!
max: files_max_fields
min: files_min_fields
stddev: files_stddev_fields
stddev_pop: files_stddev_pop_fields
stddev_samp: files_stddev_samp_fields
sum: files_sum_fields
var_pop: files_var_pop_fields
var_samp: files_var_samp_fields
variance: files_variance_fields
}
"""
order by aggregate values of table "storage.files"
"""
input files_aggregate_order_by {
avg: files_avg_order_by
count: order_by
max: files_max_order_by
min: files_min_order_by
stddev: files_stddev_order_by
stddev_pop: files_stddev_pop_order_by
stddev_samp: files_stddev_samp_order_by
sum: files_sum_order_by
var_pop: files_var_pop_order_by
var_samp: files_var_samp_order_by
variance: files_variance_order_by
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input files_append_input {
metadata: jsonb
}
"""
input type for inserting array relation for remote table "storage.files"
"""
input files_arr_rel_insert_input {
data: [files_insert_input!]!
"""upsert condition"""
on_conflict: files_on_conflict
}
"""aggregate avg on columns"""
type files_avg_fields {
size: Float
}
"""
order by avg() on columns of table "storage.files"
"""
input files_avg_order_by {
size: order_by
}
"""
Boolean expression to filter rows from the table "storage.files". All fields are combined with a logical 'AND'.
"""
input files_bool_exp {
_and: [files_bool_exp!]
_not: files_bool_exp
_or: [files_bool_exp!]
bucket: buckets_bool_exp
bucketId: String_comparison_exp
createdAt: timestamptz_comparison_exp
etag: String_comparison_exp
id: uuid_comparison_exp
isUploaded: Boolean_comparison_exp
metadata: jsonb_comparison_exp
mimeType: String_comparison_exp
name: String_comparison_exp
size: Int_comparison_exp
updatedAt: timestamptz_comparison_exp
uploadedByUserId: uuid_comparison_exp
}
"""
unique or primary key constraints on table "storage.files"
"""
enum files_constraint {
"""
unique or primary key constraint on columns "id"
"""
files_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input files_delete_at_path_input {
metadata: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input files_delete_elem_input {
metadata: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input files_delete_key_input {
metadata: String
}
"""
input type for incrementing numeric columns in table "storage.files"
"""
input files_inc_input {
size: Int
}
"""
input type for inserting data into table "storage.files"
"""
input files_insert_input {
bucket: buckets_obj_rel_insert_input
bucketId: String
createdAt: timestamptz
etag: String
id: uuid
isUploaded: Boolean
metadata: jsonb
mimeType: String
name: String
size: Int
updatedAt: timestamptz
uploadedByUserId: uuid
}
"""aggregate max on columns"""
type files_max_fields {
bucketId: String
createdAt: timestamptz
etag: String
id: uuid
mimeType: String
name: String
size: Int
updatedAt: timestamptz
uploadedByUserId: uuid
}
"""
order by max() on columns of table "storage.files"
"""
input files_max_order_by {
bucketId: order_by
createdAt: order_by
etag: order_by
id: order_by
mimeType: order_by
name: order_by
size: order_by
updatedAt: order_by
uploadedByUserId: order_by
}
"""aggregate min on columns"""
type files_min_fields {
bucketId: String
createdAt: timestamptz
etag: String
id: uuid
mimeType: String
name: String
size: Int
updatedAt: timestamptz
uploadedByUserId: uuid
}
"""
order by min() on columns of table "storage.files"
"""
input files_min_order_by {
bucketId: order_by
createdAt: order_by
etag: order_by
id: order_by
mimeType: order_by
name: order_by
size: order_by
updatedAt: order_by
uploadedByUserId: order_by
}
"""
response of any mutation on the table "storage.files"
"""
type files_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [files!]!
}
"""
input type for inserting object relation for remote table "storage.files"
"""
input files_obj_rel_insert_input {
data: files_insert_input!
"""upsert condition"""
on_conflict: files_on_conflict
}
"""
on_conflict condition type for table "storage.files"
"""
input files_on_conflict {
constraint: files_constraint!
update_columns: [files_update_column!]! = []
where: files_bool_exp
}
"""Ordering options when selecting data from "storage.files"."""
input files_order_by {
bucket: buckets_order_by
bucketId: order_by
createdAt: order_by
etag: order_by
id: order_by
isUploaded: order_by
metadata: order_by
mimeType: order_by
name: order_by
size: order_by
updatedAt: order_by
uploadedByUserId: order_by
}
"""primary key columns input for table: storage.files"""
input files_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input files_prepend_input {
metadata: jsonb
}
"""
select columns of table "storage.files"
"""
enum files_select_column {
"""column name"""
bucketId
"""column name"""
createdAt
"""column name"""
etag
"""column name"""
id
"""column name"""
isUploaded
"""column name"""
metadata
"""column name"""
mimeType
"""column name"""
name
"""column name"""
size
"""column name"""
updatedAt
"""column name"""
uploadedByUserId
}
"""
select "files_aggregate_bool_exp_bool_and_arguments_columns" columns of table "storage.files"
"""
enum files_select_column_files_aggregate_bool_exp_bool_and_arguments_columns {
"""column name"""
isUploaded
}
"""
select "files_aggregate_bool_exp_bool_or_arguments_columns" columns of table "storage.files"
"""
enum files_select_column_files_aggregate_bool_exp_bool_or_arguments_columns {
"""column name"""
isUploaded
}
"""
input type for updating data in table "storage.files"
"""
input files_set_input {
bucketId: String
createdAt: timestamptz
etag: String
id: uuid
isUploaded: Boolean
metadata: jsonb
mimeType: String
name: String
size: Int
updatedAt: timestamptz
uploadedByUserId: uuid
}
"""aggregate stddev on columns"""
type files_stddev_fields {
size: Float
}
"""
order by stddev() on columns of table "storage.files"
"""
input files_stddev_order_by {
size: order_by
}
"""aggregate stddev_pop on columns"""
type files_stddev_pop_fields {
size: Float
}
"""
order by stddev_pop() on columns of table "storage.files"
"""
input files_stddev_pop_order_by {
size: order_by
}
"""aggregate stddev_samp on columns"""
type files_stddev_samp_fields {
size: Float
}
"""
order by stddev_samp() on columns of table "storage.files"
"""
input files_stddev_samp_order_by {
size: order_by
}
"""
Streaming cursor of the table "files"
"""
input files_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: files_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input files_stream_cursor_value_input {
bucketId: String
createdAt: timestamptz
etag: String
id: uuid
isUploaded: Boolean
metadata: jsonb
mimeType: String
name: String
size: Int
updatedAt: timestamptz
uploadedByUserId: uuid
}
"""aggregate sum on columns"""
type files_sum_fields {
size: Int
}
"""
order by sum() on columns of table "storage.files"
"""
input files_sum_order_by {
size: order_by
}
"""
update columns of table "storage.files"
"""
enum files_update_column {
"""column name"""
bucketId
"""column name"""
createdAt
"""column name"""
etag
"""column name"""
id
"""column name"""
isUploaded
"""column name"""
metadata
"""column name"""
mimeType
"""column name"""
name
"""column name"""
size
"""column name"""
updatedAt
"""column name"""
uploadedByUserId
}
input files_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: files_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: files_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: files_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: files_delete_key_input
"""increments the numeric columns with given value of the filtered values"""
_inc: files_inc_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: files_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: files_set_input
"""filter the rows which have to be updated"""
where: files_bool_exp!
}
"""aggregate var_pop on columns"""
type files_var_pop_fields {
size: Float
}
"""
order by var_pop() on columns of table "storage.files"
"""
input files_var_pop_order_by {
size: order_by
}
"""aggregate var_samp on columns"""
type files_var_samp_fields {
size: Float
}
"""
order by var_samp() on columns of table "storage.files"
"""
input files_var_samp_order_by {
size: order_by
}
"""aggregate variance on columns"""
type files_variance_fields {
size: Float
}
"""
order by variance() on columns of table "storage.files"
"""
input files_variance_order_by {
size: order_by
}
scalar jsonb
input jsonb_cast_exp {
String: String_comparison_exp
}
"""
Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.
"""
input jsonb_comparison_exp {
_cast: jsonb_cast_exp
"""is the column contained in the given json value"""
_contained_in: jsonb
"""does the column contain the given json value at the top level"""
_contains: jsonb
_eq: jsonb
_gt: jsonb
_gte: jsonb
"""does the string exist as a top-level key in the column"""
_has_key: String
"""do all of these strings exist as top-level keys in the column"""
_has_keys_all: [String!]
"""do any of these strings exist as top-level keys in the column"""
_has_keys_any: [String!]
_in: [jsonb!]
_is_null: Boolean
_lt: jsonb
_lte: jsonb
_neq: jsonb
_nin: [jsonb!]
}
"""mutation root"""
type mutation_root {
"""
delete single row from the table: "auth.providers"
"""
deleteAuthProvider(id: String!): authProviders
"""
delete single row from the table: "auth.provider_requests"
"""
deleteAuthProviderRequest(id: uuid!): authProviderRequests
"""
delete data from the table: "auth.provider_requests"
"""
deleteAuthProviderRequests(
"""filter the rows which have to be deleted"""
where: authProviderRequests_bool_exp!
): authProviderRequests_mutation_response
"""
delete data from the table: "auth.providers"
"""
deleteAuthProviders(
"""filter the rows which have to be deleted"""
where: authProviders_bool_exp!
): authProviders_mutation_response
"""
delete single row from the table: "auth.refresh_tokens"
"""
deleteAuthRefreshToken(id: uuid!): authRefreshTokens
"""
delete single row from the table: "auth.refresh_token_types"
"""
deleteAuthRefreshTokenType(value: String!): authRefreshTokenTypes
"""
delete data from the table: "auth.refresh_token_types"
"""
deleteAuthRefreshTokenTypes(
"""filter the rows which have to be deleted"""
where: authRefreshTokenTypes_bool_exp!
): authRefreshTokenTypes_mutation_response
"""
delete data from the table: "auth.refresh_tokens"
"""
deleteAuthRefreshTokens(
"""filter the rows which have to be deleted"""
where: authRefreshTokens_bool_exp!
): authRefreshTokens_mutation_response
"""
delete single row from the table: "auth.roles"
"""
deleteAuthRole(role: String!): authRoles
"""
delete data from the table: "auth.roles"
"""
deleteAuthRoles(
"""filter the rows which have to be deleted"""
where: authRoles_bool_exp!
): authRoles_mutation_response
"""
delete single row from the table: "auth.user_providers"
"""
deleteAuthUserProvider(id: uuid!): authUserProviders
"""
delete data from the table: "auth.user_providers"
"""
deleteAuthUserProviders(
"""filter the rows which have to be deleted"""
where: authUserProviders_bool_exp!
): authUserProviders_mutation_response
"""
delete single row from the table: "auth.user_roles"
"""
deleteAuthUserRole(id: uuid!): authUserRoles
"""
delete data from the table: "auth.user_roles"
"""
deleteAuthUserRoles(
"""filter the rows which have to be deleted"""
where: authUserRoles_bool_exp!
): authUserRoles_mutation_response
"""
delete single row from the table: "auth.user_security_keys"
"""
deleteAuthUserSecurityKey(id: uuid!): authUserSecurityKeys
"""
delete data from the table: "auth.user_security_keys"
"""
deleteAuthUserSecurityKeys(
"""filter the rows which have to be deleted"""
where: authUserSecurityKeys_bool_exp!
): authUserSecurityKeys_mutation_response
"""
delete single row from the table: "storage.buckets"
"""
deleteBucket(id: String!): buckets
"""
delete data from the table: "storage.buckets"
"""
deleteBuckets(
"""filter the rows which have to be deleted"""
where: buckets_bool_exp!
): buckets_mutation_response
"""
delete single row from the table: "storage.files"
"""
deleteFile(id: uuid!): files
"""
delete data from the table: "storage.files"
"""
deleteFiles(
"""filter the rows which have to be deleted"""
where: files_bool_exp!
): files_mutation_response
"""
delete single row from the table: "auth.users"
"""
deleteUser(id: uuid!): users
"""
delete data from the table: "auth.users"
"""
deleteUsers(
"""filter the rows which have to be deleted"""
where: users_bool_exp!
): users_mutation_response
"""
delete single row from the table: "storage.virus"
"""
deleteVirus(id: uuid!): virus
"""
delete data from the table: "storage.virus"
"""
deleteViruses(
"""filter the rows which have to be deleted"""
where: virus_bool_exp!
): virus_mutation_response
"""
delete data from the table: "execution_results"
"""
delete_execution_results(
"""filter the rows which have to be deleted"""
where: execution_results_bool_exp!
): execution_results_mutation_response
"""
delete single row from the table: "execution_results"
"""
delete_execution_results_by_pk(id: uuid!): execution_results
"""
delete data from the table: "organization_user"
"""
delete_organization_user(
"""filter the rows which have to be deleted"""
where: organization_user_bool_exp!
): organization_user_mutation_response
"""
delete single row from the table: "organization_user"
"""
delete_organization_user_by_pk(id: uuid!): organization_user
"""
delete data from the table: "organizations"
"""
delete_organizations(
"""filter the rows which have to be deleted"""
where: organizations_bool_exp!
): organizations_mutation_response
"""
delete single row from the table: "organizations"
"""
delete_organizations_by_pk(id: uuid!): organizations
"""
delete data from the table: "permission_organization"
"""
delete_permission_organization(
"""filter the rows which have to be deleted"""
where: permission_organization_bool_exp!
): permission_organization_mutation_response
"""
delete single row from the table: "permission_organization"
"""
delete_permission_organization_by_pk(id: uuid!): permission_organization
"""
delete data from the table: "permission_user"
"""
delete_permission_user(
"""filter the rows which have to be deleted"""
where: permission_user_bool_exp!
): permission_user_mutation_response
"""
delete single row from the table: "permission_user"
"""
delete_permission_user_by_pk(id: uuid!): permission_user
"""
delete data from the table: "permissions"
"""
delete_permissions(
"""filter the rows which have to be deleted"""
where: permissions_bool_exp!
): permissions_mutation_response
"""
delete single row from the table: "permissions"
"""
delete_permissions_by_pk(id: uuid!): permissions
"""
delete data from the table: "runbooks"
"""
delete_runbooks(
"""filter the rows which have to be deleted"""
where: runbooks_bool_exp!
): runbooks_mutation_response
"""
delete single row from the table: "runbooks"
"""
delete_runbooks_by_pk(id: uuid!): runbooks
"""
insert a single row into the table: "auth.providers"
"""
insertAuthProvider(
"""the row to be inserted"""
object: authProviders_insert_input!
"""upsert condition"""
on_conflict: authProviders_on_conflict
): authProviders
"""
insert a single row into the table: "auth.provider_requests"
"""
insertAuthProviderRequest(
"""the row to be inserted"""
object: authProviderRequests_insert_input!
"""upsert condition"""
on_conflict: authProviderRequests_on_conflict
): authProviderRequests
"""
insert data into the table: "auth.provider_requests"
"""
insertAuthProviderRequests(
"""the rows to be inserted"""
objects: [authProviderRequests_insert_input!]!
"""upsert condition"""
on_conflict: authProviderRequests_on_conflict
): authProviderRequests_mutation_response
"""
insert data into the table: "auth.providers"
"""
insertAuthProviders(
"""the rows to be inserted"""
objects: [authProviders_insert_input!]!
"""upsert condition"""
on_conflict: authProviders_on_conflict
): authProviders_mutation_response
"""
insert a single row into the table: "auth.refresh_tokens"
"""
insertAuthRefreshToken(
"""the row to be inserted"""
object: authRefreshTokens_insert_input!
"""upsert condition"""
on_conflict: authRefreshTokens_on_conflict
): authRefreshTokens
"""
insert a single row into the table: "auth.refresh_token_types"
"""
insertAuthRefreshTokenType(
"""the row to be inserted"""
object: authRefreshTokenTypes_insert_input!
"""upsert condition"""
on_conflict: authRefreshTokenTypes_on_conflict
): authRefreshTokenTypes
"""
insert data into the table: "auth.refresh_token_types"
"""
insertAuthRefreshTokenTypes(
"""the rows to be inserted"""
objects: [authRefreshTokenTypes_insert_input!]!
"""upsert condition"""
on_conflict: authRefreshTokenTypes_on_conflict
): authRefreshTokenTypes_mutation_response
"""
insert data into the table: "auth.refresh_tokens"
"""
insertAuthRefreshTokens(
"""the rows to be inserted"""
objects: [authRefreshTokens_insert_input!]!
"""upsert condition"""
on_conflict: authRefreshTokens_on_conflict
): authRefreshTokens_mutation_response
"""
insert a single row into the table: "auth.roles"
"""
insertAuthRole(
"""the row to be inserted"""
object: authRoles_insert_input!
"""upsert condition"""
on_conflict: authRoles_on_conflict
): authRoles
"""
insert data into the table: "auth.roles"
"""
insertAuthRoles(
"""the rows to be inserted"""
objects: [authRoles_insert_input!]!
"""upsert condition"""
on_conflict: authRoles_on_conflict
): authRoles_mutation_response
"""
insert a single row into the table: "auth.user_providers"
"""
insertAuthUserProvider(
"""the row to be inserted"""
object: authUserProviders_insert_input!
"""upsert condition"""
on_conflict: authUserProviders_on_conflict
): authUserProviders
"""
insert data into the table: "auth.user_providers"
"""
insertAuthUserProviders(
"""the rows to be inserted"""
objects: [authUserProviders_insert_input!]!
"""upsert condition"""
on_conflict: authUserProviders_on_conflict
): authUserProviders_mutation_response
"""
insert a single row into the table: "auth.user_roles"
"""
insertAuthUserRole(
"""the row to be inserted"""
object: authUserRoles_insert_input!
"""upsert condition"""
on_conflict: authUserRoles_on_conflict
): authUserRoles
"""
insert data into the table: "auth.user_roles"
"""
insertAuthUserRoles(
"""the rows to be inserted"""
objects: [authUserRoles_insert_input!]!
"""upsert condition"""
on_conflict: authUserRoles_on_conflict
): authUserRoles_mutation_response
"""
insert a single row into the table: "auth.user_security_keys"
"""
insertAuthUserSecurityKey(
"""the row to be inserted"""
object: authUserSecurityKeys_insert_input!
"""upsert condition"""
on_conflict: authUserSecurityKeys_on_conflict
): authUserSecurityKeys
"""
insert data into the table: "auth.user_security_keys"
"""
insertAuthUserSecurityKeys(
"""the rows to be inserted"""
objects: [authUserSecurityKeys_insert_input!]!
"""upsert condition"""
on_conflict: authUserSecurityKeys_on_conflict
): authUserSecurityKeys_mutation_response
"""
insert a single row into the table: "storage.buckets"
"""
insertBucket(
"""the row to be inserted"""
object: buckets_insert_input!
"""upsert condition"""
on_conflict: buckets_on_conflict
): buckets
"""
insert data into the table: "storage.buckets"
"""
insertBuckets(
"""the rows to be inserted"""
objects: [buckets_insert_input!]!
"""upsert condition"""
on_conflict: buckets_on_conflict
): buckets_mutation_response
"""
insert a single row into the table: "storage.files"
"""
insertFile(
"""the row to be inserted"""
object: files_insert_input!
"""upsert condition"""
on_conflict: files_on_conflict
): files
"""
insert data into the table: "storage.files"
"""
insertFiles(
"""the rows to be inserted"""
objects: [files_insert_input!]!
"""upsert condition"""
on_conflict: files_on_conflict
): files_mutation_response
"""
insert a single row into the table: "auth.users"
"""
insertUser(
"""the row to be inserted"""
object: users_insert_input!
"""upsert condition"""
on_conflict: users_on_conflict
): users
"""
insert data into the table: "auth.users"
"""
insertUsers(
"""the rows to be inserted"""
objects: [users_insert_input!]!
"""upsert condition"""
on_conflict: users_on_conflict
): users_mutation_response
"""
insert a single row into the table: "storage.virus"
"""
insertVirus(
"""the row to be inserted"""
object: virus_insert_input!
"""upsert condition"""
on_conflict: virus_on_conflict
): virus
"""
insert data into the table: "storage.virus"
"""
insertViruses(
"""the rows to be inserted"""
objects: [virus_insert_input!]!
"""upsert condition"""
on_conflict: virus_on_conflict
): virus_mutation_response
"""
insert data into the table: "execution_results"
"""
insert_execution_results(
"""the rows to be inserted"""
objects: [execution_results_insert_input!]!
"""upsert condition"""
on_conflict: execution_results_on_conflict
): execution_results_mutation_response
"""
insert a single row into the table: "execution_results"
"""
insert_execution_results_one(
"""the row to be inserted"""
object: execution_results_insert_input!
"""upsert condition"""
on_conflict: execution_results_on_conflict
): execution_results
"""
insert data into the table: "organization_user"
"""
insert_organization_user(
"""the rows to be inserted"""
objects: [organization_user_insert_input!]!
"""upsert condition"""
on_conflict: organization_user_on_conflict
): organization_user_mutation_response
"""
insert a single row into the table: "organization_user"
"""
insert_organization_user_one(
"""the row to be inserted"""
object: organization_user_insert_input!
"""upsert condition"""
on_conflict: organization_user_on_conflict
): organization_user
"""
insert data into the table: "organizations"
"""
insert_organizations(
"""the rows to be inserted"""
objects: [organizations_insert_input!]!
"""upsert condition"""
on_conflict: organizations_on_conflict
): organizations_mutation_response
"""
insert a single row into the table: "organizations"
"""
insert_organizations_one(
"""the row to be inserted"""
object: organizations_insert_input!
"""upsert condition"""
on_conflict: organizations_on_conflict
): organizations
"""
insert data into the table: "permission_organization"
"""
insert_permission_organization(
"""the rows to be inserted"""
objects: [permission_organization_insert_input!]!
"""upsert condition"""
on_conflict: permission_organization_on_conflict
): permission_organization_mutation_response
"""
insert a single row into the table: "permission_organization"
"""
insert_permission_organization_one(
"""the row to be inserted"""
object: permission_organization_insert_input!
"""upsert condition"""
on_conflict: permission_organization_on_conflict
): permission_organization
"""
insert data into the table: "permission_user"
"""
insert_permission_user(
"""the rows to be inserted"""
objects: [permission_user_insert_input!]!
"""upsert condition"""
on_conflict: permission_user_on_conflict
): permission_user_mutation_response
"""
insert a single row into the table: "permission_user"
"""
insert_permission_user_one(
"""the row to be inserted"""
object: permission_user_insert_input!
"""upsert condition"""
on_conflict: permission_user_on_conflict
): permission_user
"""
insert data into the table: "permissions"
"""
insert_permissions(
"""the rows to be inserted"""
objects: [permissions_insert_input!]!
"""upsert condition"""
on_conflict: permissions_on_conflict
): permissions_mutation_response
"""
insert a single row into the table: "permissions"
"""
insert_permissions_one(
"""the row to be inserted"""
object: permissions_insert_input!
"""upsert condition"""
on_conflict: permissions_on_conflict
): permissions
"""
insert data into the table: "runbooks"
"""
insert_runbooks(
"""the rows to be inserted"""
objects: [runbooks_insert_input!]!
"""upsert condition"""
on_conflict: runbooks_on_conflict
): runbooks_mutation_response
"""
insert a single row into the table: "runbooks"
"""
insert_runbooks_one(
"""the row to be inserted"""
object: runbooks_insert_input!
"""upsert condition"""
on_conflict: runbooks_on_conflict
): runbooks
"""
update single row of the table: "auth.providers"
"""
updateAuthProvider(
"""sets the columns of the filtered rows to the given values"""
_set: authProviders_set_input
pk_columns: authProviders_pk_columns_input!
): authProviders
"""
update single row of the table: "auth.provider_requests"
"""
updateAuthProviderRequest(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: authProviderRequests_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: authProviderRequests_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: authProviderRequests_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: authProviderRequests_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: authProviderRequests_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: authProviderRequests_set_input
pk_columns: authProviderRequests_pk_columns_input!
): authProviderRequests
"""
update data of the table: "auth.provider_requests"
"""
updateAuthProviderRequests(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: authProviderRequests_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: authProviderRequests_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: authProviderRequests_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: authProviderRequests_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: authProviderRequests_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: authProviderRequests_set_input
"""filter the rows which have to be updated"""
where: authProviderRequests_bool_exp!
): authProviderRequests_mutation_response
"""
update data of the table: "auth.providers"
"""
updateAuthProviders(
"""sets the columns of the filtered rows to the given values"""
_set: authProviders_set_input
"""filter the rows which have to be updated"""
where: authProviders_bool_exp!
): authProviders_mutation_response
"""
update single row of the table: "auth.refresh_tokens"
"""
updateAuthRefreshToken(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: authRefreshTokens_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: authRefreshTokens_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: authRefreshTokens_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: authRefreshTokens_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: authRefreshTokens_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: authRefreshTokens_set_input
pk_columns: authRefreshTokens_pk_columns_input!
): authRefreshTokens
"""
update single row of the table: "auth.refresh_token_types"
"""
updateAuthRefreshTokenType(
"""sets the columns of the filtered rows to the given values"""
_set: authRefreshTokenTypes_set_input
pk_columns: authRefreshTokenTypes_pk_columns_input!
): authRefreshTokenTypes
"""
update data of the table: "auth.refresh_token_types"
"""
updateAuthRefreshTokenTypes(
"""sets the columns of the filtered rows to the given values"""
_set: authRefreshTokenTypes_set_input
"""filter the rows which have to be updated"""
where: authRefreshTokenTypes_bool_exp!
): authRefreshTokenTypes_mutation_response
"""
update data of the table: "auth.refresh_tokens"
"""
updateAuthRefreshTokens(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: authRefreshTokens_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: authRefreshTokens_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: authRefreshTokens_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: authRefreshTokens_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: authRefreshTokens_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: authRefreshTokens_set_input
"""filter the rows which have to be updated"""
where: authRefreshTokens_bool_exp!
): authRefreshTokens_mutation_response
"""
update single row of the table: "auth.roles"
"""
updateAuthRole(
"""sets the columns of the filtered rows to the given values"""
_set: authRoles_set_input
pk_columns: authRoles_pk_columns_input!
): authRoles
"""
update data of the table: "auth.roles"
"""
updateAuthRoles(
"""sets the columns of the filtered rows to the given values"""
_set: authRoles_set_input
"""filter the rows which have to be updated"""
where: authRoles_bool_exp!
): authRoles_mutation_response
"""
update single row of the table: "auth.user_providers"
"""
updateAuthUserProvider(
"""sets the columns of the filtered rows to the given values"""
_set: authUserProviders_set_input
pk_columns: authUserProviders_pk_columns_input!
): authUserProviders
"""
update data of the table: "auth.user_providers"
"""
updateAuthUserProviders(
"""sets the columns of the filtered rows to the given values"""
_set: authUserProviders_set_input
"""filter the rows which have to be updated"""
where: authUserProviders_bool_exp!
): authUserProviders_mutation_response
"""
update single row of the table: "auth.user_roles"
"""
updateAuthUserRole(
"""sets the columns of the filtered rows to the given values"""
_set: authUserRoles_set_input
pk_columns: authUserRoles_pk_columns_input!
): authUserRoles
"""
update data of the table: "auth.user_roles"
"""
updateAuthUserRoles(
"""sets the columns of the filtered rows to the given values"""
_set: authUserRoles_set_input
"""filter the rows which have to be updated"""
where: authUserRoles_bool_exp!
): authUserRoles_mutation_response
"""
update single row of the table: "auth.user_security_keys"
"""
updateAuthUserSecurityKey(
"""increments the numeric columns with given value of the filtered values"""
_inc: authUserSecurityKeys_inc_input
"""sets the columns of the filtered rows to the given values"""
_set: authUserSecurityKeys_set_input
pk_columns: authUserSecurityKeys_pk_columns_input!
): authUserSecurityKeys
"""
update data of the table: "auth.user_security_keys"
"""
updateAuthUserSecurityKeys(
"""increments the numeric columns with given value of the filtered values"""
_inc: authUserSecurityKeys_inc_input
"""sets the columns of the filtered rows to the given values"""
_set: authUserSecurityKeys_set_input
"""filter the rows which have to be updated"""
where: authUserSecurityKeys_bool_exp!
): authUserSecurityKeys_mutation_response
"""
update single row of the table: "storage.buckets"
"""
updateBucket(
"""increments the numeric columns with given value of the filtered values"""
_inc: buckets_inc_input
"""sets the columns of the filtered rows to the given values"""
_set: buckets_set_input
pk_columns: buckets_pk_columns_input!
): buckets
"""
update data of the table: "storage.buckets"
"""
updateBuckets(
"""increments the numeric columns with given value of the filtered values"""
_inc: buckets_inc_input
"""sets the columns of the filtered rows to the given values"""
_set: buckets_set_input
"""filter the rows which have to be updated"""
where: buckets_bool_exp!
): buckets_mutation_response
"""
update single row of the table: "storage.files"
"""
updateFile(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: files_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: files_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: files_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: files_delete_key_input
"""increments the numeric columns with given value of the filtered values"""
_inc: files_inc_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: files_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: files_set_input
pk_columns: files_pk_columns_input!
): files
"""
update data of the table: "storage.files"
"""
updateFiles(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: files_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: files_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: files_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: files_delete_key_input
"""increments the numeric columns with given value of the filtered values"""
_inc: files_inc_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: files_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: files_set_input
"""filter the rows which have to be updated"""
where: files_bool_exp!
): files_mutation_response
"""
update single row of the table: "auth.users"
"""
updateUser(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: users_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: users_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: users_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: users_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: users_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: users_set_input
pk_columns: users_pk_columns_input!
): users
"""
update data of the table: "auth.users"
"""
updateUsers(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: users_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: users_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: users_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: users_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: users_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: users_set_input
"""filter the rows which have to be updated"""
where: users_bool_exp!
): users_mutation_response
"""
update single row of the table: "storage.virus"
"""
updateVirus(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: virus_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: virus_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: virus_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: virus_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: virus_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: virus_set_input
pk_columns: virus_pk_columns_input!
): virus
"""
update data of the table: "storage.virus"
"""
updateViruses(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: virus_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: virus_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: virus_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: virus_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: virus_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: virus_set_input
"""filter the rows which have to be updated"""
where: virus_bool_exp!
): virus_mutation_response
"""
update multiples rows of table: "auth.provider_requests"
"""
update_authProviderRequests_many(
"""updates to execute, in order"""
updates: [authProviderRequests_updates!]!
): [authProviderRequests_mutation_response]
"""
update multiples rows of table: "auth.providers"
"""
update_authProviders_many(
"""updates to execute, in order"""
updates: [authProviders_updates!]!
): [authProviders_mutation_response]
"""
update multiples rows of table: "auth.refresh_token_types"
"""
update_authRefreshTokenTypes_many(
"""updates to execute, in order"""
updates: [authRefreshTokenTypes_updates!]!
): [authRefreshTokenTypes_mutation_response]
"""
update multiples rows of table: "auth.refresh_tokens"
"""
update_authRefreshTokens_many(
"""updates to execute, in order"""
updates: [authRefreshTokens_updates!]!
): [authRefreshTokens_mutation_response]
"""
update multiples rows of table: "auth.roles"
"""
update_authRoles_many(
"""updates to execute, in order"""
updates: [authRoles_updates!]!
): [authRoles_mutation_response]
"""
update multiples rows of table: "auth.user_providers"
"""
update_authUserProviders_many(
"""updates to execute, in order"""
updates: [authUserProviders_updates!]!
): [authUserProviders_mutation_response]
"""
update multiples rows of table: "auth.user_roles"
"""
update_authUserRoles_many(
"""updates to execute, in order"""
updates: [authUserRoles_updates!]!
): [authUserRoles_mutation_response]
"""
update multiples rows of table: "auth.user_security_keys"
"""
update_authUserSecurityKeys_many(
"""updates to execute, in order"""
updates: [authUserSecurityKeys_updates!]!
): [authUserSecurityKeys_mutation_response]
"""
update multiples rows of table: "storage.buckets"
"""
update_buckets_many(
"""updates to execute, in order"""
updates: [buckets_updates!]!
): [buckets_mutation_response]
"""
update data of the table: "execution_results"
"""
update_execution_results(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: execution_results_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: execution_results_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: execution_results_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: execution_results_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: execution_results_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: execution_results_set_input
"""filter the rows which have to be updated"""
where: execution_results_bool_exp!
): execution_results_mutation_response
"""
update single row of the table: "execution_results"
"""
update_execution_results_by_pk(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: execution_results_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: execution_results_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: execution_results_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: execution_results_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: execution_results_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: execution_results_set_input
pk_columns: execution_results_pk_columns_input!
): execution_results
"""
update multiples rows of table: "execution_results"
"""
update_execution_results_many(
"""updates to execute, in order"""
updates: [execution_results_updates!]!
): [execution_results_mutation_response]
"""
update multiples rows of table: "storage.files"
"""
update_files_many(
"""updates to execute, in order"""
updates: [files_updates!]!
): [files_mutation_response]
"""
update data of the table: "organization_user"
"""
update_organization_user(
"""sets the columns of the filtered rows to the given values"""
_set: organization_user_set_input
"""filter the rows which have to be updated"""
where: organization_user_bool_exp!
): organization_user_mutation_response
"""
update single row of the table: "organization_user"
"""
update_organization_user_by_pk(
"""sets the columns of the filtered rows to the given values"""
_set: organization_user_set_input
pk_columns: organization_user_pk_columns_input!
): organization_user
"""
update multiples rows of table: "organization_user"
"""
update_organization_user_many(
"""updates to execute, in order"""
updates: [organization_user_updates!]!
): [organization_user_mutation_response]
"""
update data of the table: "organizations"
"""
update_organizations(
"""sets the columns of the filtered rows to the given values"""
_set: organizations_set_input
"""filter the rows which have to be updated"""
where: organizations_bool_exp!
): organizations_mutation_response
"""
update single row of the table: "organizations"
"""
update_organizations_by_pk(
"""sets the columns of the filtered rows to the given values"""
_set: organizations_set_input
pk_columns: organizations_pk_columns_input!
): organizations
"""
update multiples rows of table: "organizations"
"""
update_organizations_many(
"""updates to execute, in order"""
updates: [organizations_updates!]!
): [organizations_mutation_response]
"""
update data of the table: "permission_organization"
"""
update_permission_organization(
"""sets the columns of the filtered rows to the given values"""
_set: permission_organization_set_input
"""filter the rows which have to be updated"""
where: permission_organization_bool_exp!
): permission_organization_mutation_response
"""
update single row of the table: "permission_organization"
"""
update_permission_organization_by_pk(
"""sets the columns of the filtered rows to the given values"""
_set: permission_organization_set_input
pk_columns: permission_organization_pk_columns_input!
): permission_organization
"""
update multiples rows of table: "permission_organization"
"""
update_permission_organization_many(
"""updates to execute, in order"""
updates: [permission_organization_updates!]!
): [permission_organization_mutation_response]
"""
update data of the table: "permission_user"
"""
update_permission_user(
"""sets the columns of the filtered rows to the given values"""
_set: permission_user_set_input
"""filter the rows which have to be updated"""
where: permission_user_bool_exp!
): permission_user_mutation_response
"""
update single row of the table: "permission_user"
"""
update_permission_user_by_pk(
"""sets the columns of the filtered rows to the given values"""
_set: permission_user_set_input
pk_columns: permission_user_pk_columns_input!
): permission_user
"""
update multiples rows of table: "permission_user"
"""
update_permission_user_many(
"""updates to execute, in order"""
updates: [permission_user_updates!]!
): [permission_user_mutation_response]
"""
update data of the table: "permissions"
"""
update_permissions(
"""sets the columns of the filtered rows to the given values"""
_set: permissions_set_input
"""filter the rows which have to be updated"""
where: permissions_bool_exp!
): permissions_mutation_response
"""
update single row of the table: "permissions"
"""
update_permissions_by_pk(
"""sets the columns of the filtered rows to the given values"""
_set: permissions_set_input
pk_columns: permissions_pk_columns_input!
): permissions
"""
update multiples rows of table: "permissions"
"""
update_permissions_many(
"""updates to execute, in order"""
updates: [permissions_updates!]!
): [permissions_mutation_response]
"""
update data of the table: "runbooks"
"""
update_runbooks(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: runbooks_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: runbooks_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: runbooks_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: runbooks_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: runbooks_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: runbooks_set_input
"""filter the rows which have to be updated"""
where: runbooks_bool_exp!
): runbooks_mutation_response
"""
update single row of the table: "runbooks"
"""
update_runbooks_by_pk(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: runbooks_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: runbooks_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: runbooks_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: runbooks_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: runbooks_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: runbooks_set_input
pk_columns: runbooks_pk_columns_input!
): runbooks
"""
update multiples rows of table: "runbooks"
"""
update_runbooks_many(
"""updates to execute, in order"""
updates: [runbooks_updates!]!
): [runbooks_mutation_response]
"""
update multiples rows of table: "auth.users"
"""
update_users_many(
"""updates to execute, in order"""
updates: [users_updates!]!
): [users_mutation_response]
"""
update multiples rows of table: "storage.virus"
"""
update_virus_many(
"""updates to execute, in order"""
updates: [virus_updates!]!
): [virus_mutation_response]
}
"""column ordering options"""
enum order_by {
"""in ascending order, nulls last"""
asc
"""in ascending order, nulls first"""
asc_nulls_first
"""in ascending order, nulls last"""
asc_nulls_last
"""in descending order, nulls first"""
desc
"""in descending order, nulls first"""
desc_nulls_first
"""in descending order, nulls last"""
desc_nulls_last
}
"""
columns and relationships of "organization_user"
"""
type organization_user {
id: uuid!
"""An object relationship"""
organization: organizations
organization_id: uuid
"""An object relationship"""
user: users
user_id: uuid
}
"""
aggregated selection of "organization_user"
"""
type organization_user_aggregate {
aggregate: organization_user_aggregate_fields
nodes: [organization_user!]!
}
input organization_user_aggregate_bool_exp {
count: organization_user_aggregate_bool_exp_count
}
input organization_user_aggregate_bool_exp_count {
arguments: [organization_user_select_column!]
distinct: Boolean
filter: organization_user_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "organization_user"
"""
type organization_user_aggregate_fields {
count(columns: [organization_user_select_column!], distinct: Boolean): Int!
max: organization_user_max_fields
min: organization_user_min_fields
}
"""
order by aggregate values of table "organization_user"
"""
input organization_user_aggregate_order_by {
count: order_by
max: organization_user_max_order_by
min: organization_user_min_order_by
}
"""
input type for inserting array relation for remote table "organization_user"
"""
input organization_user_arr_rel_insert_input {
data: [organization_user_insert_input!]!
"""upsert condition"""
on_conflict: organization_user_on_conflict
}
"""
Boolean expression to filter rows from the table "organization_user". All fields are combined with a logical 'AND'.
"""
input organization_user_bool_exp {
_and: [organization_user_bool_exp!]
_not: organization_user_bool_exp
_or: [organization_user_bool_exp!]
id: uuid_comparison_exp
organization: organizations_bool_exp
organization_id: uuid_comparison_exp
user: users_bool_exp
user_id: uuid_comparison_exp
}
"""
unique or primary key constraints on table "organization_user"
"""
enum organization_user_constraint {
"""
unique or primary key constraint on columns "id"
"""
organization_user_pkey
}
"""
input type for inserting data into table "organization_user"
"""
input organization_user_insert_input {
id: uuid
organization: organizations_obj_rel_insert_input
organization_id: uuid
user: users_obj_rel_insert_input
user_id: uuid
}
"""aggregate max on columns"""
type organization_user_max_fields {
id: uuid
organization_id: uuid
user_id: uuid
}
"""
order by max() on columns of table "organization_user"
"""
input organization_user_max_order_by {
id: order_by
organization_id: order_by
user_id: order_by
}
"""aggregate min on columns"""
type organization_user_min_fields {
id: uuid
organization_id: uuid
user_id: uuid
}
"""
order by min() on columns of table "organization_user"
"""
input organization_user_min_order_by {
id: order_by
organization_id: order_by
user_id: order_by
}
"""
response of any mutation on the table "organization_user"
"""
type organization_user_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [organization_user!]!
}
"""
on_conflict condition type for table "organization_user"
"""
input organization_user_on_conflict {
constraint: organization_user_constraint!
update_columns: [organization_user_update_column!]! = []
where: organization_user_bool_exp
}
"""Ordering options when selecting data from "organization_user"."""
input organization_user_order_by {
id: order_by
organization: organizations_order_by
organization_id: order_by
user: users_order_by
user_id: order_by
}
"""primary key columns input for table: organization_user"""
input organization_user_pk_columns_input {
id: uuid!
}
"""
select columns of table "organization_user"
"""
enum organization_user_select_column {
"""column name"""
id
"""column name"""
organization_id
"""column name"""
user_id
}
"""
input type for updating data in table "organization_user"
"""
input organization_user_set_input {
id: uuid
organization_id: uuid
user_id: uuid
}
"""
Streaming cursor of the table "organization_user"
"""
input organization_user_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: organization_user_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input organization_user_stream_cursor_value_input {
id: uuid
organization_id: uuid
user_id: uuid
}
"""
update columns of table "organization_user"
"""
enum organization_user_update_column {
"""column name"""
id
"""column name"""
organization_id
"""column name"""
user_id
}
input organization_user_updates {
"""sets the columns of the filtered rows to the given values"""
_set: organization_user_set_input
"""filter the rows which have to be updated"""
where: organization_user_bool_exp!
}
"""
columns and relationships of "organizations"
"""
type organizations {
created_at: timestamptz
id: uuid!
name: String
"""An array relationship"""
organization_users(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): [organization_user!]!
"""An aggregate relationship"""
organization_users_aggregate(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): organization_user_aggregate!
"""An array relationship"""
permission_organizations(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): [permission_organization!]!
"""An aggregate relationship"""
permission_organizations_aggregate(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): permission_organization_aggregate!
updated_at: timestamptz
}
"""
aggregated selection of "organizations"
"""
type organizations_aggregate {
aggregate: organizations_aggregate_fields
nodes: [organizations!]!
}
"""
aggregate fields of "organizations"
"""
type organizations_aggregate_fields {
count(columns: [organizations_select_column!], distinct: Boolean): Int!
max: organizations_max_fields
min: organizations_min_fields
}
"""
Boolean expression to filter rows from the table "organizations". All fields are combined with a logical 'AND'.
"""
input organizations_bool_exp {
_and: [organizations_bool_exp!]
_not: organizations_bool_exp
_or: [organizations_bool_exp!]
created_at: timestamptz_comparison_exp
id: uuid_comparison_exp
name: String_comparison_exp
organization_users: organization_user_bool_exp
organization_users_aggregate: organization_user_aggregate_bool_exp
permission_organizations: permission_organization_bool_exp
permission_organizations_aggregate: permission_organization_aggregate_bool_exp
updated_at: timestamptz_comparison_exp
}
"""
unique or primary key constraints on table "organizations"
"""
enum organizations_constraint {
"""
unique or primary key constraint on columns "id"
"""
organizations_pkey
}
"""
input type for inserting data into table "organizations"
"""
input organizations_insert_input {
created_at: timestamptz
id: uuid
name: String
organization_users: organization_user_arr_rel_insert_input
permission_organizations: permission_organization_arr_rel_insert_input
updated_at: timestamptz
}
"""aggregate max on columns"""
type organizations_max_fields {
created_at: timestamptz
id: uuid
name: String
updated_at: timestamptz
}
"""aggregate min on columns"""
type organizations_min_fields {
created_at: timestamptz
id: uuid
name: String
updated_at: timestamptz
}
"""
response of any mutation on the table "organizations"
"""
type organizations_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [organizations!]!
}
"""
input type for inserting object relation for remote table "organizations"
"""
input organizations_obj_rel_insert_input {
data: organizations_insert_input!
"""upsert condition"""
on_conflict: organizations_on_conflict
}
"""
on_conflict condition type for table "organizations"
"""
input organizations_on_conflict {
constraint: organizations_constraint!
update_columns: [organizations_update_column!]! = []
where: organizations_bool_exp
}
"""Ordering options when selecting data from "organizations"."""
input organizations_order_by {
created_at: order_by
id: order_by
name: order_by
organization_users_aggregate: organization_user_aggregate_order_by
permission_organizations_aggregate: permission_organization_aggregate_order_by
updated_at: order_by
}
"""primary key columns input for table: organizations"""
input organizations_pk_columns_input {
id: uuid!
}
"""
select columns of table "organizations"
"""
enum organizations_select_column {
"""column name"""
created_at
"""column name"""
id
"""column name"""
name
"""column name"""
updated_at
}
"""
input type for updating data in table "organizations"
"""
input organizations_set_input {
created_at: timestamptz
id: uuid
name: String
updated_at: timestamptz
}
"""
Streaming cursor of the table "organizations"
"""
input organizations_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: organizations_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input organizations_stream_cursor_value_input {
created_at: timestamptz
id: uuid
name: String
updated_at: timestamptz
}
"""
update columns of table "organizations"
"""
enum organizations_update_column {
"""column name"""
created_at
"""column name"""
id
"""column name"""
name
"""column name"""
updated_at
}
input organizations_updates {
"""sets the columns of the filtered rows to the given values"""
_set: organizations_set_input
"""filter the rows which have to be updated"""
where: organizations_bool_exp!
}
"""
columns and relationships of "permission_organization"
"""
type permission_organization {
id: uuid!
"""An object relationship"""
organization: organizations
organization_id: uuid
"""An object relationship"""
permission: permissions
permission_id: uuid
}
"""
aggregated selection of "permission_organization"
"""
type permission_organization_aggregate {
aggregate: permission_organization_aggregate_fields
nodes: [permission_organization!]!
}
input permission_organization_aggregate_bool_exp {
count: permission_organization_aggregate_bool_exp_count
}
input permission_organization_aggregate_bool_exp_count {
arguments: [permission_organization_select_column!]
distinct: Boolean
filter: permission_organization_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "permission_organization"
"""
type permission_organization_aggregate_fields {
count(columns: [permission_organization_select_column!], distinct: Boolean): Int!
max: permission_organization_max_fields
min: permission_organization_min_fields
}
"""
order by aggregate values of table "permission_organization"
"""
input permission_organization_aggregate_order_by {
count: order_by
max: permission_organization_max_order_by
min: permission_organization_min_order_by
}
"""
input type for inserting array relation for remote table "permission_organization"
"""
input permission_organization_arr_rel_insert_input {
data: [permission_organization_insert_input!]!
"""upsert condition"""
on_conflict: permission_organization_on_conflict
}
"""
Boolean expression to filter rows from the table "permission_organization". All fields are combined with a logical 'AND'.
"""
input permission_organization_bool_exp {
_and: [permission_organization_bool_exp!]
_not: permission_organization_bool_exp
_or: [permission_organization_bool_exp!]
id: uuid_comparison_exp
organization: organizations_bool_exp
organization_id: uuid_comparison_exp
permission: permissions_bool_exp
permission_id: uuid_comparison_exp
}
"""
unique or primary key constraints on table "permission_organization"
"""
enum permission_organization_constraint {
"""
unique or primary key constraint on columns "id"
"""
permission_organization_pkey
}
"""
input type for inserting data into table "permission_organization"
"""
input permission_organization_insert_input {
id: uuid
organization: organizations_obj_rel_insert_input
organization_id: uuid
permission: permissions_obj_rel_insert_input
permission_id: uuid
}
"""aggregate max on columns"""
type permission_organization_max_fields {
id: uuid
organization_id: uuid
permission_id: uuid
}
"""
order by max() on columns of table "permission_organization"
"""
input permission_organization_max_order_by {
id: order_by
organization_id: order_by
permission_id: order_by
}
"""aggregate min on columns"""
type permission_organization_min_fields {
id: uuid
organization_id: uuid
permission_id: uuid
}
"""
order by min() on columns of table "permission_organization"
"""
input permission_organization_min_order_by {
id: order_by
organization_id: order_by
permission_id: order_by
}
"""
response of any mutation on the table "permission_organization"
"""
type permission_organization_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [permission_organization!]!
}
"""
on_conflict condition type for table "permission_organization"
"""
input permission_organization_on_conflict {
constraint: permission_organization_constraint!
update_columns: [permission_organization_update_column!]! = []
where: permission_organization_bool_exp
}
"""Ordering options when selecting data from "permission_organization"."""
input permission_organization_order_by {
id: order_by
organization: organizations_order_by
organization_id: order_by
permission: permissions_order_by
permission_id: order_by
}
"""primary key columns input for table: permission_organization"""
input permission_organization_pk_columns_input {
id: uuid!
}
"""
select columns of table "permission_organization"
"""
enum permission_organization_select_column {
"""column name"""
id
"""column name"""
organization_id
"""column name"""
permission_id
}
"""
input type for updating data in table "permission_organization"
"""
input permission_organization_set_input {
id: uuid
organization_id: uuid
permission_id: uuid
}
"""
Streaming cursor of the table "permission_organization"
"""
input permission_organization_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: permission_organization_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input permission_organization_stream_cursor_value_input {
id: uuid
organization_id: uuid
permission_id: uuid
}
"""
update columns of table "permission_organization"
"""
enum permission_organization_update_column {
"""column name"""
id
"""column name"""
organization_id
"""column name"""
permission_id
}
input permission_organization_updates {
"""sets the columns of the filtered rows to the given values"""
_set: permission_organization_set_input
"""filter the rows which have to be updated"""
where: permission_organization_bool_exp!
}
"""
columns and relationships of "permission_user"
"""
type permission_user {
id: uuid!
"""An object relationship"""
permission: permissions
permission_id: uuid
"""An object relationship"""
user: users
user_id: uuid
}
"""
aggregated selection of "permission_user"
"""
type permission_user_aggregate {
aggregate: permission_user_aggregate_fields
nodes: [permission_user!]!
}
input permission_user_aggregate_bool_exp {
count: permission_user_aggregate_bool_exp_count
}
input permission_user_aggregate_bool_exp_count {
arguments: [permission_user_select_column!]
distinct: Boolean
filter: permission_user_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "permission_user"
"""
type permission_user_aggregate_fields {
count(columns: [permission_user_select_column!], distinct: Boolean): Int!
max: permission_user_max_fields
min: permission_user_min_fields
}
"""
order by aggregate values of table "permission_user"
"""
input permission_user_aggregate_order_by {
count: order_by
max: permission_user_max_order_by
min: permission_user_min_order_by
}
"""
input type for inserting array relation for remote table "permission_user"
"""
input permission_user_arr_rel_insert_input {
data: [permission_user_insert_input!]!
"""upsert condition"""
on_conflict: permission_user_on_conflict
}
"""
Boolean expression to filter rows from the table "permission_user". All fields are combined with a logical 'AND'.
"""
input permission_user_bool_exp {
_and: [permission_user_bool_exp!]
_not: permission_user_bool_exp
_or: [permission_user_bool_exp!]
id: uuid_comparison_exp
permission: permissions_bool_exp
permission_id: uuid_comparison_exp
user: users_bool_exp
user_id: uuid_comparison_exp
}
"""
unique or primary key constraints on table "permission_user"
"""
enum permission_user_constraint {
"""
unique or primary key constraint on columns "id"
"""
permission_user_pkey
}
"""
input type for inserting data into table "permission_user"
"""
input permission_user_insert_input {
id: uuid
permission: permissions_obj_rel_insert_input
permission_id: uuid
user: users_obj_rel_insert_input
user_id: uuid
}
"""aggregate max on columns"""
type permission_user_max_fields {
id: uuid
permission_id: uuid
user_id: uuid
}
"""
order by max() on columns of table "permission_user"
"""
input permission_user_max_order_by {
id: order_by
permission_id: order_by
user_id: order_by
}
"""aggregate min on columns"""
type permission_user_min_fields {
id: uuid
permission_id: uuid
user_id: uuid
}
"""
order by min() on columns of table "permission_user"
"""
input permission_user_min_order_by {
id: order_by
permission_id: order_by
user_id: order_by
}
"""
response of any mutation on the table "permission_user"
"""
type permission_user_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [permission_user!]!
}
"""
on_conflict condition type for table "permission_user"
"""
input permission_user_on_conflict {
constraint: permission_user_constraint!
update_columns: [permission_user_update_column!]! = []
where: permission_user_bool_exp
}
"""Ordering options when selecting data from "permission_user"."""
input permission_user_order_by {
id: order_by
permission: permissions_order_by
permission_id: order_by
user: users_order_by
user_id: order_by
}
"""primary key columns input for table: permission_user"""
input permission_user_pk_columns_input {
id: uuid!
}
"""
select columns of table "permission_user"
"""
enum permission_user_select_column {
"""column name"""
id
"""column name"""
permission_id
"""column name"""
user_id
}
"""
input type for updating data in table "permission_user"
"""
input permission_user_set_input {
id: uuid
permission_id: uuid
user_id: uuid
}
"""
Streaming cursor of the table "permission_user"
"""
input permission_user_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: permission_user_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input permission_user_stream_cursor_value_input {
id: uuid
permission_id: uuid
user_id: uuid
}
"""
update columns of table "permission_user"
"""
enum permission_user_update_column {
"""column name"""
id
"""column name"""
permission_id
"""column name"""
user_id
}
input permission_user_updates {
"""sets the columns of the filtered rows to the given values"""
_set: permission_user_set_input
"""filter the rows which have to be updated"""
where: permission_user_bool_exp!
}
"""
columns and relationships of "permissions"
"""
type permissions {
id: uuid!
"""An array relationship"""
permission_organizations(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): [permission_organization!]!
"""An aggregate relationship"""
permission_organizations_aggregate(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): permission_organization_aggregate!
"""An array relationship"""
permission_users(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): [permission_user!]!
"""An aggregate relationship"""
permission_users_aggregate(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): permission_user_aggregate!
"""An object relationship"""
runbook: runbooks
"""An object relationship"""
runbookById: runbooks
"""An object relationship"""
runbookById1: runbooks
"""An array relationship"""
runbooks(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): [runbooks!]!
"""An array relationship"""
runbooksByReadPermissionsId(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): [runbooks!]!
"""An aggregate relationship"""
runbooksByReadPermissionsId_aggregate(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): runbooks_aggregate!
"""An array relationship"""
runbooksByUpdatePermissionsId(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): [runbooks!]!
"""An aggregate relationship"""
runbooksByUpdatePermissionsId_aggregate(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): runbooks_aggregate!
"""An aggregate relationship"""
runbooks_aggregate(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): runbooks_aggregate!
type: String!
}
"""
aggregated selection of "permissions"
"""
type permissions_aggregate {
aggregate: permissions_aggregate_fields
nodes: [permissions!]!
}
"""
aggregate fields of "permissions"
"""
type permissions_aggregate_fields {
count(columns: [permissions_select_column!], distinct: Boolean): Int!
max: permissions_max_fields
min: permissions_min_fields
}
"""
Boolean expression to filter rows from the table "permissions". All fields are combined with a logical 'AND'.
"""
input permissions_bool_exp {
_and: [permissions_bool_exp!]
_not: permissions_bool_exp
_or: [permissions_bool_exp!]
id: uuid_comparison_exp
permission_organizations: permission_organization_bool_exp
permission_organizations_aggregate: permission_organization_aggregate_bool_exp
permission_users: permission_user_bool_exp
permission_users_aggregate: permission_user_aggregate_bool_exp
runbook: runbooks_bool_exp
runbookById: runbooks_bool_exp
runbookById1: runbooks_bool_exp
runbooks: runbooks_bool_exp
runbooksByReadPermissionsId: runbooks_bool_exp
runbooksByReadPermissionsId_aggregate: runbooks_aggregate_bool_exp
runbooksByUpdatePermissionsId: runbooks_bool_exp
runbooksByUpdatePermissionsId_aggregate: runbooks_aggregate_bool_exp
runbooks_aggregate: runbooks_aggregate_bool_exp
type: String_comparison_exp
}
"""
unique or primary key constraints on table "permissions"
"""
enum permissions_constraint {
"""
unique or primary key constraint on columns "id"
"""
permissions_pkey
}
"""
input type for inserting data into table "permissions"
"""
input permissions_insert_input {
id: uuid
permission_organizations: permission_organization_arr_rel_insert_input
permission_users: permission_user_arr_rel_insert_input
runbook: runbooks_obj_rel_insert_input
runbookById: runbooks_obj_rel_insert_input
runbookById1: runbooks_obj_rel_insert_input
runbooks: runbooks_arr_rel_insert_input
runbooksByReadPermissionsId: runbooks_arr_rel_insert_input
runbooksByUpdatePermissionsId: runbooks_arr_rel_insert_input
type: String
}
"""aggregate max on columns"""
type permissions_max_fields {
id: uuid
type: String
}
"""aggregate min on columns"""
type permissions_min_fields {
id: uuid
type: String
}
"""
response of any mutation on the table "permissions"
"""
type permissions_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [permissions!]!
}
"""
input type for inserting object relation for remote table "permissions"
"""
input permissions_obj_rel_insert_input {
data: permissions_insert_input!
"""upsert condition"""
on_conflict: permissions_on_conflict
}
"""
on_conflict condition type for table "permissions"
"""
input permissions_on_conflict {
constraint: permissions_constraint!
update_columns: [permissions_update_column!]! = []
where: permissions_bool_exp
}
"""Ordering options when selecting data from "permissions"."""
input permissions_order_by {
id: order_by
permission_organizations_aggregate: permission_organization_aggregate_order_by
permission_users_aggregate: permission_user_aggregate_order_by
runbook: runbooks_order_by
runbookById: runbooks_order_by
runbookById1: runbooks_order_by
runbooksByReadPermissionsId_aggregate: runbooks_aggregate_order_by
runbooksByUpdatePermissionsId_aggregate: runbooks_aggregate_order_by
runbooks_aggregate: runbooks_aggregate_order_by
type: order_by
}
"""primary key columns input for table: permissions"""
input permissions_pk_columns_input {
id: uuid!
}
"""
select columns of table "permissions"
"""
enum permissions_select_column {
"""column name"""
id
"""column name"""
type
}
"""
input type for updating data in table "permissions"
"""
input permissions_set_input {
id: uuid
type: String
}
"""
Streaming cursor of the table "permissions"
"""
input permissions_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: permissions_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input permissions_stream_cursor_value_input {
id: uuid
type: String
}
"""
update columns of table "permissions"
"""
enum permissions_update_column {
"""column name"""
id
"""column name"""
type
}
input permissions_updates {
"""sets the columns of the filtered rows to the given values"""
_set: permissions_set_input
"""filter the rows which have to be updated"""
where: permissions_bool_exp!
}
type query_root {
"""fetch data from the table: "auth.providers" using primary key columns"""
authProvider(id: String!): authProviders
"""
fetch data from the table: "auth.provider_requests" using primary key columns
"""
authProviderRequest(id: uuid!): authProviderRequests
"""
fetch data from the table: "auth.provider_requests"
"""
authProviderRequests(
"""distinct select on columns"""
distinct_on: [authProviderRequests_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviderRequests_order_by!]
"""filter the rows returned"""
where: authProviderRequests_bool_exp
): [authProviderRequests!]!
"""
fetch aggregated fields from the table: "auth.provider_requests"
"""
authProviderRequestsAggregate(
"""distinct select on columns"""
distinct_on: [authProviderRequests_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviderRequests_order_by!]
"""filter the rows returned"""
where: authProviderRequests_bool_exp
): authProviderRequests_aggregate!
"""
fetch data from the table: "auth.providers"
"""
authProviders(
"""distinct select on columns"""
distinct_on: [authProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviders_order_by!]
"""filter the rows returned"""
where: authProviders_bool_exp
): [authProviders!]!
"""
fetch aggregated fields from the table: "auth.providers"
"""
authProvidersAggregate(
"""distinct select on columns"""
distinct_on: [authProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviders_order_by!]
"""filter the rows returned"""
where: authProviders_bool_exp
): authProviders_aggregate!
"""
fetch data from the table: "auth.refresh_tokens" using primary key columns
"""
authRefreshToken(id: uuid!): authRefreshTokens
"""
fetch data from the table: "auth.refresh_token_types" using primary key columns
"""
authRefreshTokenType(value: String!): authRefreshTokenTypes
"""
fetch data from the table: "auth.refresh_token_types"
"""
authRefreshTokenTypes(
"""distinct select on columns"""
distinct_on: [authRefreshTokenTypes_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokenTypes_order_by!]
"""filter the rows returned"""
where: authRefreshTokenTypes_bool_exp
): [authRefreshTokenTypes!]!
"""
fetch aggregated fields from the table: "auth.refresh_token_types"
"""
authRefreshTokenTypesAggregate(
"""distinct select on columns"""
distinct_on: [authRefreshTokenTypes_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokenTypes_order_by!]
"""filter the rows returned"""
where: authRefreshTokenTypes_bool_exp
): authRefreshTokenTypes_aggregate!
"""
fetch data from the table: "auth.refresh_tokens"
"""
authRefreshTokens(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): [authRefreshTokens!]!
"""
fetch aggregated fields from the table: "auth.refresh_tokens"
"""
authRefreshTokensAggregate(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): authRefreshTokens_aggregate!
"""fetch data from the table: "auth.roles" using primary key columns"""
authRole(role: String!): authRoles
"""
fetch data from the table: "auth.roles"
"""
authRoles(
"""distinct select on columns"""
distinct_on: [authRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRoles_order_by!]
"""filter the rows returned"""
where: authRoles_bool_exp
): [authRoles!]!
"""
fetch aggregated fields from the table: "auth.roles"
"""
authRolesAggregate(
"""distinct select on columns"""
distinct_on: [authRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRoles_order_by!]
"""filter the rows returned"""
where: authRoles_bool_exp
): authRoles_aggregate!
"""
fetch data from the table: "auth.user_providers" using primary key columns
"""
authUserProvider(id: uuid!): authUserProviders
"""
fetch data from the table: "auth.user_providers"
"""
authUserProviders(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): [authUserProviders!]!
"""
fetch aggregated fields from the table: "auth.user_providers"
"""
authUserProvidersAggregate(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): authUserProviders_aggregate!
"""fetch data from the table: "auth.user_roles" using primary key columns"""
authUserRole(id: uuid!): authUserRoles
"""
fetch data from the table: "auth.user_roles"
"""
authUserRoles(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): [authUserRoles!]!
"""
fetch aggregated fields from the table: "auth.user_roles"
"""
authUserRolesAggregate(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): authUserRoles_aggregate!
"""
fetch data from the table: "auth.user_security_keys" using primary key columns
"""
authUserSecurityKey(id: uuid!): authUserSecurityKeys
"""
fetch data from the table: "auth.user_security_keys"
"""
authUserSecurityKeys(
"""distinct select on columns"""
distinct_on: [authUserSecurityKeys_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserSecurityKeys_order_by!]
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): [authUserSecurityKeys!]!
"""
fetch aggregated fields from the table: "auth.user_security_keys"
"""
authUserSecurityKeysAggregate(
"""distinct select on columns"""
distinct_on: [authUserSecurityKeys_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserSecurityKeys_order_by!]
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): authUserSecurityKeys_aggregate!
"""fetch data from the table: "storage.buckets" using primary key columns"""
bucket(id: String!): buckets
"""
fetch data from the table: "storage.buckets"
"""
buckets(
"""distinct select on columns"""
distinct_on: [buckets_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [buckets_order_by!]
"""filter the rows returned"""
where: buckets_bool_exp
): [buckets!]!
"""
fetch aggregated fields from the table: "storage.buckets"
"""
bucketsAggregate(
"""distinct select on columns"""
distinct_on: [buckets_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [buckets_order_by!]
"""filter the rows returned"""
where: buckets_bool_exp
): buckets_aggregate!
"""An array relationship"""
execution_results(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): [execution_results!]!
"""An aggregate relationship"""
execution_results_aggregate(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): execution_results_aggregate!
"""
fetch data from the table: "execution_results" using primary key columns
"""
execution_results_by_pk(id: uuid!): execution_results
"""fetch data from the table: "storage.files" using primary key columns"""
file(id: uuid!): files
"""An array relationship"""
files(
"""distinct select on columns"""
distinct_on: [files_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [files_order_by!]
"""filter the rows returned"""
where: files_bool_exp
): [files!]!
"""
fetch aggregated fields from the table: "storage.files"
"""
filesAggregate(
"""distinct select on columns"""
distinct_on: [files_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [files_order_by!]
"""filter the rows returned"""
where: files_bool_exp
): files_aggregate!
"""
fetch data from the table: "organization_user"
"""
organization_user(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): [organization_user!]!
"""
fetch aggregated fields from the table: "organization_user"
"""
organization_user_aggregate(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): organization_user_aggregate!
"""
fetch data from the table: "organization_user" using primary key columns
"""
organization_user_by_pk(id: uuid!): organization_user
"""
fetch data from the table: "organizations"
"""
organizations(
"""distinct select on columns"""
distinct_on: [organizations_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organizations_order_by!]
"""filter the rows returned"""
where: organizations_bool_exp
): [organizations!]!
"""
fetch aggregated fields from the table: "organizations"
"""
organizations_aggregate(
"""distinct select on columns"""
distinct_on: [organizations_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organizations_order_by!]
"""filter the rows returned"""
where: organizations_bool_exp
): organizations_aggregate!
"""fetch data from the table: "organizations" using primary key columns"""
organizations_by_pk(id: uuid!): organizations
"""
fetch data from the table: "permission_organization"
"""
permission_organization(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): [permission_organization!]!
"""
fetch aggregated fields from the table: "permission_organization"
"""
permission_organization_aggregate(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): permission_organization_aggregate!
"""
fetch data from the table: "permission_organization" using primary key columns
"""
permission_organization_by_pk(id: uuid!): permission_organization
"""
fetch data from the table: "permission_user"
"""
permission_user(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): [permission_user!]!
"""
fetch aggregated fields from the table: "permission_user"
"""
permission_user_aggregate(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): permission_user_aggregate!
"""fetch data from the table: "permission_user" using primary key columns"""
permission_user_by_pk(id: uuid!): permission_user
"""
fetch data from the table: "permissions"
"""
permissions(
"""distinct select on columns"""
distinct_on: [permissions_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permissions_order_by!]
"""filter the rows returned"""
where: permissions_bool_exp
): [permissions!]!
"""
fetch aggregated fields from the table: "permissions"
"""
permissions_aggregate(
"""distinct select on columns"""
distinct_on: [permissions_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permissions_order_by!]
"""filter the rows returned"""
where: permissions_bool_exp
): permissions_aggregate!
"""fetch data from the table: "permissions" using primary key columns"""
permissions_by_pk(id: uuid!): permissions
"""An array relationship"""
runbooks(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): [runbooks!]!
"""An aggregate relationship"""
runbooks_aggregate(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): runbooks_aggregate!
"""fetch data from the table: "runbooks" using primary key columns"""
runbooks_by_pk(id: uuid!): runbooks
"""fetch data from the table: "auth.users" using primary key columns"""
user(id: uuid!): users
"""
fetch data from the table: "auth.users"
"""
users(
"""distinct select on columns"""
distinct_on: [users_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [users_order_by!]
"""filter the rows returned"""
where: users_bool_exp
): [users!]!
"""
fetch aggregated fields from the table: "auth.users"
"""
usersAggregate(
"""distinct select on columns"""
distinct_on: [users_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [users_order_by!]
"""filter the rows returned"""
where: users_bool_exp
): users_aggregate!
"""fetch data from the table: "storage.virus" using primary key columns"""
virus(id: uuid!): virus
"""
fetch data from the table: "storage.virus"
"""
viruses(
"""distinct select on columns"""
distinct_on: [virus_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [virus_order_by!]
"""filter the rows returned"""
where: virus_bool_exp
): [virus!]!
"""
fetch aggregated fields from the table: "storage.virus"
"""
virusesAggregate(
"""distinct select on columns"""
distinct_on: [virus_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [virus_order_by!]
"""filter the rows returned"""
where: virus_bool_exp
): virus_aggregate!
}
"""
columns and relationships of "runbooks"
"""
type runbooks {
author_id: uuid
created_at: timestamptz!
delete_permissions_id: uuid
description: String
documentation(
"""JSON select path"""
path: String
): jsonb
"""An array relationship"""
execution_results(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): [execution_results!]!
"""An aggregate relationship"""
execution_results_aggregate(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): execution_results_aggregate!
id: uuid!
name: String
organization_id: uuid
"""An object relationship"""
permissionByDeletePermissionsId: permissions
"""An object relationship"""
permissionByReadPermissionsId: permissions!
"""An object relationship"""
permissionByUpdatePermissionsId: permissions
raw_runbook(
"""JSON select path"""
path: String
): jsonb
read_permissions_id: uuid!
"""An array relationship"""
runbook_executions(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): [execution_results!]!
"""An aggregate relationship"""
runbook_executions_aggregate(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): execution_results_aggregate!
update_permissions_id: uuid
updated_at: timestamptz!
workspace_id: String
}
"""
aggregated selection of "runbooks"
"""
type runbooks_aggregate {
aggregate: runbooks_aggregate_fields
nodes: [runbooks!]!
}
input runbooks_aggregate_bool_exp {
count: runbooks_aggregate_bool_exp_count
}
input runbooks_aggregate_bool_exp_count {
arguments: [runbooks_select_column!]
distinct: Boolean
filter: runbooks_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "runbooks"
"""
type runbooks_aggregate_fields {
count(columns: [runbooks_select_column!], distinct: Boolean): Int!
max: runbooks_max_fields
min: runbooks_min_fields
}
"""
order by aggregate values of table "runbooks"
"""
input runbooks_aggregate_order_by {
count: order_by
max: runbooks_max_order_by
min: runbooks_min_order_by
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input runbooks_append_input {
documentation: jsonb
raw_runbook: jsonb
}
"""
input type for inserting array relation for remote table "runbooks"
"""
input runbooks_arr_rel_insert_input {
data: [runbooks_insert_input!]!
"""upsert condition"""
on_conflict: runbooks_on_conflict
}
"""
Boolean expression to filter rows from the table "runbooks". All fields are combined with a logical 'AND'.
"""
input runbooks_bool_exp {
_and: [runbooks_bool_exp!]
_not: runbooks_bool_exp
_or: [runbooks_bool_exp!]
author_id: uuid_comparison_exp
created_at: timestamptz_comparison_exp
delete_permissions_id: uuid_comparison_exp
description: String_comparison_exp
documentation: jsonb_comparison_exp
execution_results: execution_results_bool_exp
execution_results_aggregate: execution_results_aggregate_bool_exp
id: uuid_comparison_exp
name: String_comparison_exp
organization_id: uuid_comparison_exp
permissionByDeletePermissionsId: permissions_bool_exp
permissionByReadPermissionsId: permissions_bool_exp
permissionByUpdatePermissionsId: permissions_bool_exp
raw_runbook: jsonb_comparison_exp
read_permissions_id: uuid_comparison_exp
runbook_executions: execution_results_bool_exp
runbook_executions_aggregate: execution_results_aggregate_bool_exp
update_permissions_id: uuid_comparison_exp
updated_at: timestamptz_comparison_exp
workspace_id: String_comparison_exp
}
"""
unique or primary key constraints on table "runbooks"
"""
enum runbooks_constraint {
"""
unique or primary key constraint on columns "delete_permissions_id"
"""
runbooks_delete_permissions_id_unique
"""
unique or primary key constraint on columns "organization_id"
"""
runbooks_organization_id_key
"""
unique or primary key constraint on columns "id"
"""
runbooks_pkey
"""
unique or primary key constraint on columns "read_permissions_id"
"""
runbooks_read_permissions_id_unique
"""
unique or primary key constraint on columns "update_permissions_id"
"""
runbooks_update_permissions_id_unique
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input runbooks_delete_at_path_input {
documentation: [String!]
raw_runbook: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input runbooks_delete_elem_input {
documentation: Int
raw_runbook: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input runbooks_delete_key_input {
documentation: String
raw_runbook: String
}
"""
input type for inserting data into table "runbooks"
"""
input runbooks_insert_input {
author_id: uuid
created_at: timestamptz
delete_permissions_id: uuid
description: String
documentation: jsonb
execution_results: execution_results_arr_rel_insert_input
id: uuid
name: String
organization_id: uuid
permissionByDeletePermissionsId: permissions_obj_rel_insert_input
permissionByReadPermissionsId: permissions_obj_rel_insert_input
permissionByUpdatePermissionsId: permissions_obj_rel_insert_input
raw_runbook: jsonb
read_permissions_id: uuid
runbook_executions: execution_results_arr_rel_insert_input
update_permissions_id: uuid
updated_at: timestamptz
workspace_id: String
}
"""aggregate max on columns"""
type runbooks_max_fields {
author_id: uuid
created_at: timestamptz
delete_permissions_id: uuid
description: String
id: uuid
name: String
organization_id: uuid
read_permissions_id: uuid
update_permissions_id: uuid
updated_at: timestamptz
workspace_id: String
}
"""
order by max() on columns of table "runbooks"
"""
input runbooks_max_order_by {
author_id: order_by
created_at: order_by
delete_permissions_id: order_by
description: order_by
id: order_by
name: order_by
organization_id: order_by
read_permissions_id: order_by
update_permissions_id: order_by
updated_at: order_by
workspace_id: order_by
}
"""aggregate min on columns"""
type runbooks_min_fields {
author_id: uuid
created_at: timestamptz
delete_permissions_id: uuid
description: String
id: uuid
name: String
organization_id: uuid
read_permissions_id: uuid
update_permissions_id: uuid
updated_at: timestamptz
workspace_id: String
}
"""
order by min() on columns of table "runbooks"
"""
input runbooks_min_order_by {
author_id: order_by
created_at: order_by
delete_permissions_id: order_by
description: order_by
id: order_by
name: order_by
organization_id: order_by
read_permissions_id: order_by
update_permissions_id: order_by
updated_at: order_by
workspace_id: order_by
}
"""
response of any mutation on the table "runbooks"
"""
type runbooks_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [runbooks!]!
}
"""
input type for inserting object relation for remote table "runbooks"
"""
input runbooks_obj_rel_insert_input {
data: runbooks_insert_input!
"""upsert condition"""
on_conflict: runbooks_on_conflict
}
"""
on_conflict condition type for table "runbooks"
"""
input runbooks_on_conflict {
constraint: runbooks_constraint!
update_columns: [runbooks_update_column!]! = []
where: runbooks_bool_exp
}
"""Ordering options when selecting data from "runbooks"."""
input runbooks_order_by {
author_id: order_by
created_at: order_by
delete_permissions_id: order_by
description: order_by
documentation: order_by
execution_results_aggregate: execution_results_aggregate_order_by
id: order_by
name: order_by
organization_id: order_by
permissionByDeletePermissionsId: permissions_order_by
permissionByReadPermissionsId: permissions_order_by
permissionByUpdatePermissionsId: permissions_order_by
raw_runbook: order_by
read_permissions_id: order_by
runbook_executions_aggregate: execution_results_aggregate_order_by
update_permissions_id: order_by
updated_at: order_by
workspace_id: order_by
}
"""primary key columns input for table: runbooks"""
input runbooks_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input runbooks_prepend_input {
documentation: jsonb
raw_runbook: jsonb
}
"""
select columns of table "runbooks"
"""
enum runbooks_select_column {
"""column name"""
author_id
"""column name"""
created_at
"""column name"""
delete_permissions_id
"""column name"""
description
"""column name"""
documentation
"""column name"""
id
"""column name"""
name
"""column name"""
organization_id
"""column name"""
raw_runbook
"""column name"""
read_permissions_id
"""column name"""
update_permissions_id
"""column name"""
updated_at
"""column name"""
workspace_id
}
"""
input type for updating data in table "runbooks"
"""
input runbooks_set_input {
author_id: uuid
created_at: timestamptz
delete_permissions_id: uuid
description: String
documentation: jsonb
id: uuid
name: String
organization_id: uuid
raw_runbook: jsonb
read_permissions_id: uuid
update_permissions_id: uuid
updated_at: timestamptz
workspace_id: String
}
"""
Streaming cursor of the table "runbooks"
"""
input runbooks_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: runbooks_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input runbooks_stream_cursor_value_input {
author_id: uuid
created_at: timestamptz
delete_permissions_id: uuid
description: String
documentation: jsonb
id: uuid
name: String
organization_id: uuid
raw_runbook: jsonb
read_permissions_id: uuid
update_permissions_id: uuid
updated_at: timestamptz
workspace_id: String
}
"""
update columns of table "runbooks"
"""
enum runbooks_update_column {
"""column name"""
author_id
"""column name"""
created_at
"""column name"""
delete_permissions_id
"""column name"""
description
"""column name"""
documentation
"""column name"""
id
"""column name"""
name
"""column name"""
organization_id
"""column name"""
raw_runbook
"""column name"""
read_permissions_id
"""column name"""
update_permissions_id
"""column name"""
updated_at
"""column name"""
workspace_id
}
input runbooks_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: runbooks_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: runbooks_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: runbooks_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: runbooks_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: runbooks_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: runbooks_set_input
"""filter the rows which have to be updated"""
where: runbooks_bool_exp!
}
type subscription_root {
"""fetch data from the table: "auth.providers" using primary key columns"""
authProvider(id: String!): authProviders
"""
fetch data from the table: "auth.provider_requests" using primary key columns
"""
authProviderRequest(id: uuid!): authProviderRequests
"""
fetch data from the table: "auth.provider_requests"
"""
authProviderRequests(
"""distinct select on columns"""
distinct_on: [authProviderRequests_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviderRequests_order_by!]
"""filter the rows returned"""
where: authProviderRequests_bool_exp
): [authProviderRequests!]!
"""
fetch aggregated fields from the table: "auth.provider_requests"
"""
authProviderRequestsAggregate(
"""distinct select on columns"""
distinct_on: [authProviderRequests_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviderRequests_order_by!]
"""filter the rows returned"""
where: authProviderRequests_bool_exp
): authProviderRequests_aggregate!
"""
fetch data from the table in a streaming manner: "auth.provider_requests"
"""
authProviderRequests_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authProviderRequests_stream_cursor_input]!
"""filter the rows returned"""
where: authProviderRequests_bool_exp
): [authProviderRequests!]!
"""
fetch data from the table: "auth.providers"
"""
authProviders(
"""distinct select on columns"""
distinct_on: [authProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviders_order_by!]
"""filter the rows returned"""
where: authProviders_bool_exp
): [authProviders!]!
"""
fetch aggregated fields from the table: "auth.providers"
"""
authProvidersAggregate(
"""distinct select on columns"""
distinct_on: [authProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authProviders_order_by!]
"""filter the rows returned"""
where: authProviders_bool_exp
): authProviders_aggregate!
"""
fetch data from the table in a streaming manner: "auth.providers"
"""
authProviders_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authProviders_stream_cursor_input]!
"""filter the rows returned"""
where: authProviders_bool_exp
): [authProviders!]!
"""
fetch data from the table: "auth.refresh_tokens" using primary key columns
"""
authRefreshToken(id: uuid!): authRefreshTokens
"""
fetch data from the table: "auth.refresh_token_types" using primary key columns
"""
authRefreshTokenType(value: String!): authRefreshTokenTypes
"""
fetch data from the table: "auth.refresh_token_types"
"""
authRefreshTokenTypes(
"""distinct select on columns"""
distinct_on: [authRefreshTokenTypes_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokenTypes_order_by!]
"""filter the rows returned"""
where: authRefreshTokenTypes_bool_exp
): [authRefreshTokenTypes!]!
"""
fetch aggregated fields from the table: "auth.refresh_token_types"
"""
authRefreshTokenTypesAggregate(
"""distinct select on columns"""
distinct_on: [authRefreshTokenTypes_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokenTypes_order_by!]
"""filter the rows returned"""
where: authRefreshTokenTypes_bool_exp
): authRefreshTokenTypes_aggregate!
"""
fetch data from the table in a streaming manner: "auth.refresh_token_types"
"""
authRefreshTokenTypes_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authRefreshTokenTypes_stream_cursor_input]!
"""filter the rows returned"""
where: authRefreshTokenTypes_bool_exp
): [authRefreshTokenTypes!]!
"""
fetch data from the table: "auth.refresh_tokens"
"""
authRefreshTokens(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): [authRefreshTokens!]!
"""
fetch aggregated fields from the table: "auth.refresh_tokens"
"""
authRefreshTokensAggregate(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): authRefreshTokens_aggregate!
"""
fetch data from the table in a streaming manner: "auth.refresh_tokens"
"""
authRefreshTokens_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authRefreshTokens_stream_cursor_input]!
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): [authRefreshTokens!]!
"""fetch data from the table: "auth.roles" using primary key columns"""
authRole(role: String!): authRoles
"""
fetch data from the table: "auth.roles"
"""
authRoles(
"""distinct select on columns"""
distinct_on: [authRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRoles_order_by!]
"""filter the rows returned"""
where: authRoles_bool_exp
): [authRoles!]!
"""
fetch aggregated fields from the table: "auth.roles"
"""
authRolesAggregate(
"""distinct select on columns"""
distinct_on: [authRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRoles_order_by!]
"""filter the rows returned"""
where: authRoles_bool_exp
): authRoles_aggregate!
"""
fetch data from the table in a streaming manner: "auth.roles"
"""
authRoles_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authRoles_stream_cursor_input]!
"""filter the rows returned"""
where: authRoles_bool_exp
): [authRoles!]!
"""
fetch data from the table: "auth.user_providers" using primary key columns
"""
authUserProvider(id: uuid!): authUserProviders
"""
fetch data from the table: "auth.user_providers"
"""
authUserProviders(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): [authUserProviders!]!
"""
fetch aggregated fields from the table: "auth.user_providers"
"""
authUserProvidersAggregate(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): authUserProviders_aggregate!
"""
fetch data from the table in a streaming manner: "auth.user_providers"
"""
authUserProviders_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authUserProviders_stream_cursor_input]!
"""filter the rows returned"""
where: authUserProviders_bool_exp
): [authUserProviders!]!
"""fetch data from the table: "auth.user_roles" using primary key columns"""
authUserRole(id: uuid!): authUserRoles
"""
fetch data from the table: "auth.user_roles"
"""
authUserRoles(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): [authUserRoles!]!
"""
fetch aggregated fields from the table: "auth.user_roles"
"""
authUserRolesAggregate(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): authUserRoles_aggregate!
"""
fetch data from the table in a streaming manner: "auth.user_roles"
"""
authUserRoles_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authUserRoles_stream_cursor_input]!
"""filter the rows returned"""
where: authUserRoles_bool_exp
): [authUserRoles!]!
"""
fetch data from the table: "auth.user_security_keys" using primary key columns
"""
authUserSecurityKey(id: uuid!): authUserSecurityKeys
"""
fetch data from the table: "auth.user_security_keys"
"""
authUserSecurityKeys(
"""distinct select on columns"""
distinct_on: [authUserSecurityKeys_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserSecurityKeys_order_by!]
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): [authUserSecurityKeys!]!
"""
fetch aggregated fields from the table: "auth.user_security_keys"
"""
authUserSecurityKeysAggregate(
"""distinct select on columns"""
distinct_on: [authUserSecurityKeys_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserSecurityKeys_order_by!]
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): authUserSecurityKeys_aggregate!
"""
fetch data from the table in a streaming manner: "auth.user_security_keys"
"""
authUserSecurityKeys_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [authUserSecurityKeys_stream_cursor_input]!
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): [authUserSecurityKeys!]!
"""fetch data from the table: "storage.buckets" using primary key columns"""
bucket(id: String!): buckets
"""
fetch data from the table: "storage.buckets"
"""
buckets(
"""distinct select on columns"""
distinct_on: [buckets_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [buckets_order_by!]
"""filter the rows returned"""
where: buckets_bool_exp
): [buckets!]!
"""
fetch aggregated fields from the table: "storage.buckets"
"""
bucketsAggregate(
"""distinct select on columns"""
distinct_on: [buckets_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [buckets_order_by!]
"""filter the rows returned"""
where: buckets_bool_exp
): buckets_aggregate!
"""
fetch data from the table in a streaming manner: "storage.buckets"
"""
buckets_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [buckets_stream_cursor_input]!
"""filter the rows returned"""
where: buckets_bool_exp
): [buckets!]!
"""An array relationship"""
execution_results(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): [execution_results!]!
"""An aggregate relationship"""
execution_results_aggregate(
"""distinct select on columns"""
distinct_on: [execution_results_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [execution_results_order_by!]
"""filter the rows returned"""
where: execution_results_bool_exp
): execution_results_aggregate!
"""
fetch data from the table: "execution_results" using primary key columns
"""
execution_results_by_pk(id: uuid!): execution_results
"""
fetch data from the table in a streaming manner: "execution_results"
"""
execution_results_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [execution_results_stream_cursor_input]!
"""filter the rows returned"""
where: execution_results_bool_exp
): [execution_results!]!
"""fetch data from the table: "storage.files" using primary key columns"""
file(id: uuid!): files
"""An array relationship"""
files(
"""distinct select on columns"""
distinct_on: [files_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [files_order_by!]
"""filter the rows returned"""
where: files_bool_exp
): [files!]!
"""
fetch aggregated fields from the table: "storage.files"
"""
filesAggregate(
"""distinct select on columns"""
distinct_on: [files_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [files_order_by!]
"""filter the rows returned"""
where: files_bool_exp
): files_aggregate!
"""
fetch data from the table in a streaming manner: "storage.files"
"""
files_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [files_stream_cursor_input]!
"""filter the rows returned"""
where: files_bool_exp
): [files!]!
"""
fetch data from the table: "organization_user"
"""
organization_user(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): [organization_user!]!
"""
fetch aggregated fields from the table: "organization_user"
"""
organization_user_aggregate(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): organization_user_aggregate!
"""
fetch data from the table: "organization_user" using primary key columns
"""
organization_user_by_pk(id: uuid!): organization_user
"""
fetch data from the table in a streaming manner: "organization_user"
"""
organization_user_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [organization_user_stream_cursor_input]!
"""filter the rows returned"""
where: organization_user_bool_exp
): [organization_user!]!
"""
fetch data from the table: "organizations"
"""
organizations(
"""distinct select on columns"""
distinct_on: [organizations_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organizations_order_by!]
"""filter the rows returned"""
where: organizations_bool_exp
): [organizations!]!
"""
fetch aggregated fields from the table: "organizations"
"""
organizations_aggregate(
"""distinct select on columns"""
distinct_on: [organizations_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organizations_order_by!]
"""filter the rows returned"""
where: organizations_bool_exp
): organizations_aggregate!
"""fetch data from the table: "organizations" using primary key columns"""
organizations_by_pk(id: uuid!): organizations
"""
fetch data from the table in a streaming manner: "organizations"
"""
organizations_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [organizations_stream_cursor_input]!
"""filter the rows returned"""
where: organizations_bool_exp
): [organizations!]!
"""
fetch data from the table: "permission_organization"
"""
permission_organization(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): [permission_organization!]!
"""
fetch aggregated fields from the table: "permission_organization"
"""
permission_organization_aggregate(
"""distinct select on columns"""
distinct_on: [permission_organization_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_organization_order_by!]
"""filter the rows returned"""
where: permission_organization_bool_exp
): permission_organization_aggregate!
"""
fetch data from the table: "permission_organization" using primary key columns
"""
permission_organization_by_pk(id: uuid!): permission_organization
"""
fetch data from the table in a streaming manner: "permission_organization"
"""
permission_organization_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [permission_organization_stream_cursor_input]!
"""filter the rows returned"""
where: permission_organization_bool_exp
): [permission_organization!]!
"""
fetch data from the table: "permission_user"
"""
permission_user(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): [permission_user!]!
"""
fetch aggregated fields from the table: "permission_user"
"""
permission_user_aggregate(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): permission_user_aggregate!
"""fetch data from the table: "permission_user" using primary key columns"""
permission_user_by_pk(id: uuid!): permission_user
"""
fetch data from the table in a streaming manner: "permission_user"
"""
permission_user_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [permission_user_stream_cursor_input]!
"""filter the rows returned"""
where: permission_user_bool_exp
): [permission_user!]!
"""
fetch data from the table: "permissions"
"""
permissions(
"""distinct select on columns"""
distinct_on: [permissions_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permissions_order_by!]
"""filter the rows returned"""
where: permissions_bool_exp
): [permissions!]!
"""
fetch aggregated fields from the table: "permissions"
"""
permissions_aggregate(
"""distinct select on columns"""
distinct_on: [permissions_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permissions_order_by!]
"""filter the rows returned"""
where: permissions_bool_exp
): permissions_aggregate!
"""fetch data from the table: "permissions" using primary key columns"""
permissions_by_pk(id: uuid!): permissions
"""
fetch data from the table in a streaming manner: "permissions"
"""
permissions_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [permissions_stream_cursor_input]!
"""filter the rows returned"""
where: permissions_bool_exp
): [permissions!]!
"""An array relationship"""
runbooks(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): [runbooks!]!
"""An aggregate relationship"""
runbooks_aggregate(
"""distinct select on columns"""
distinct_on: [runbooks_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [runbooks_order_by!]
"""filter the rows returned"""
where: runbooks_bool_exp
): runbooks_aggregate!
"""fetch data from the table: "runbooks" using primary key columns"""
runbooks_by_pk(id: uuid!): runbooks
"""
fetch data from the table in a streaming manner: "runbooks"
"""
runbooks_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [runbooks_stream_cursor_input]!
"""filter the rows returned"""
where: runbooks_bool_exp
): [runbooks!]!
"""fetch data from the table: "auth.users" using primary key columns"""
user(id: uuid!): users
"""
fetch data from the table: "auth.users"
"""
users(
"""distinct select on columns"""
distinct_on: [users_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [users_order_by!]
"""filter the rows returned"""
where: users_bool_exp
): [users!]!
"""
fetch aggregated fields from the table: "auth.users"
"""
usersAggregate(
"""distinct select on columns"""
distinct_on: [users_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [users_order_by!]
"""filter the rows returned"""
where: users_bool_exp
): users_aggregate!
"""
fetch data from the table in a streaming manner: "auth.users"
"""
users_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [users_stream_cursor_input]!
"""filter the rows returned"""
where: users_bool_exp
): [users!]!
"""fetch data from the table: "storage.virus" using primary key columns"""
virus(id: uuid!): virus
"""
fetch data from the table in a streaming manner: "storage.virus"
"""
virus_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
cursor: [virus_stream_cursor_input]!
"""filter the rows returned"""
where: virus_bool_exp
): [virus!]!
"""
fetch data from the table: "storage.virus"
"""
viruses(
"""distinct select on columns"""
distinct_on: [virus_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [virus_order_by!]
"""filter the rows returned"""
where: virus_bool_exp
): [virus!]!
"""
fetch aggregated fields from the table: "storage.virus"
"""
virusesAggregate(
"""distinct select on columns"""
distinct_on: [virus_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [virus_order_by!]
"""filter the rows returned"""
where: virus_bool_exp
): virus_aggregate!
}
scalar timestamptz
"""
Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'.
"""
input timestamptz_comparison_exp {
_eq: timestamptz
_gt: timestamptz
_gte: timestamptz
_in: [timestamptz!]
_is_null: Boolean
_lt: timestamptz
_lte: timestamptz
_neq: timestamptz
_nin: [timestamptz!]
}
"""
User account information. Don't modify its structure as Hasura Auth relies on it to function properly.
"""
type users {
activeMfaType: String
avatarUrl: String!
createdAt: timestamptz!
currentChallenge: String
defaultRole: String!
"""An object relationship"""
defaultRoleByRole: authRoles!
disabled: Boolean!
displayName: String!
email: citext
emailVerified: Boolean!
id: uuid!
isAnonymous: Boolean!
lastSeen: timestamptz
locale: String!
metadata(
"""JSON select path"""
path: String
): jsonb
newEmail: citext
"""An array relationship"""
organization_users(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): [organization_user!]!
"""An aggregate relationship"""
organization_users_aggregate(
"""distinct select on columns"""
distinct_on: [organization_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [organization_user_order_by!]
"""filter the rows returned"""
where: organization_user_bool_exp
): organization_user_aggregate!
otpHash: String
otpHashExpiresAt: timestamptz!
otpMethodLastUsed: String
passwordHash: String
"""An array relationship"""
permission_users(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): [permission_user!]!
"""An aggregate relationship"""
permission_users_aggregate(
"""distinct select on columns"""
distinct_on: [permission_user_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [permission_user_order_by!]
"""filter the rows returned"""
where: permission_user_bool_exp
): permission_user_aggregate!
phoneNumber: String
phoneNumberVerified: Boolean!
"""An array relationship"""
refreshTokens(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): [authRefreshTokens!]!
"""An aggregate relationship"""
refreshTokens_aggregate(
"""distinct select on columns"""
distinct_on: [authRefreshTokens_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authRefreshTokens_order_by!]
"""filter the rows returned"""
where: authRefreshTokens_bool_exp
): authRefreshTokens_aggregate!
"""An array relationship"""
roles(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): [authUserRoles!]!
"""An aggregate relationship"""
roles_aggregate(
"""distinct select on columns"""
distinct_on: [authUserRoles_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserRoles_order_by!]
"""filter the rows returned"""
where: authUserRoles_bool_exp
): authUserRoles_aggregate!
"""An array relationship"""
securityKeys(
"""distinct select on columns"""
distinct_on: [authUserSecurityKeys_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserSecurityKeys_order_by!]
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): [authUserSecurityKeys!]!
"""An aggregate relationship"""
securityKeys_aggregate(
"""distinct select on columns"""
distinct_on: [authUserSecurityKeys_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserSecurityKeys_order_by!]
"""filter the rows returned"""
where: authUserSecurityKeys_bool_exp
): authUserSecurityKeys_aggregate!
ticket: String
ticketExpiresAt: timestamptz!
totpSecret: String
updatedAt: timestamptz!
"""An array relationship"""
userProviders(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): [authUserProviders!]!
"""An aggregate relationship"""
userProviders_aggregate(
"""distinct select on columns"""
distinct_on: [authUserProviders_select_column!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
order_by: [authUserProviders_order_by!]
"""filter the rows returned"""
where: authUserProviders_bool_exp
): authUserProviders_aggregate!
}
"""
aggregated selection of "auth.users"
"""
type users_aggregate {
aggregate: users_aggregate_fields
nodes: [users!]!
}
input users_aggregate_bool_exp {
bool_and: users_aggregate_bool_exp_bool_and
bool_or: users_aggregate_bool_exp_bool_or
count: users_aggregate_bool_exp_count
}
input users_aggregate_bool_exp_bool_and {
arguments: users_select_column_users_aggregate_bool_exp_bool_and_arguments_columns!
distinct: Boolean
filter: users_bool_exp
predicate: Boolean_comparison_exp!
}
input users_aggregate_bool_exp_bool_or {
arguments: users_select_column_users_aggregate_bool_exp_bool_or_arguments_columns!
distinct: Boolean
filter: users_bool_exp
predicate: Boolean_comparison_exp!
}
input users_aggregate_bool_exp_count {
arguments: [users_select_column!]
distinct: Boolean
filter: users_bool_exp
predicate: Int_comparison_exp!
}
"""
aggregate fields of "auth.users"
"""
type users_aggregate_fields {
count(columns: [users_select_column!], distinct: Boolean): Int!
max: users_max_fields
min: users_min_fields
}
"""
order by aggregate values of table "auth.users"
"""
input users_aggregate_order_by {
count: order_by
max: users_max_order_by
min: users_min_order_by
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input users_append_input {
metadata: jsonb
}
"""
input type for inserting array relation for remote table "auth.users"
"""
input users_arr_rel_insert_input {
data: [users_insert_input!]!
"""upsert condition"""
on_conflict: users_on_conflict
}
"""
Boolean expression to filter rows from the table "auth.users". All fields are combined with a logical 'AND'.
"""
input users_bool_exp {
_and: [users_bool_exp!]
_not: users_bool_exp
_or: [users_bool_exp!]
activeMfaType: String_comparison_exp
avatarUrl: String_comparison_exp
createdAt: timestamptz_comparison_exp
currentChallenge: String_comparison_exp
defaultRole: String_comparison_exp
defaultRoleByRole: authRoles_bool_exp
disabled: Boolean_comparison_exp
displayName: String_comparison_exp
email: citext_comparison_exp
emailVerified: Boolean_comparison_exp
id: uuid_comparison_exp
isAnonymous: Boolean_comparison_exp
lastSeen: timestamptz_comparison_exp
locale: String_comparison_exp
metadata: jsonb_comparison_exp
newEmail: citext_comparison_exp
organization_users: organization_user_bool_exp
organization_users_aggregate: organization_user_aggregate_bool_exp
otpHash: String_comparison_exp
otpHashExpiresAt: timestamptz_comparison_exp
otpMethodLastUsed: String_comparison_exp
passwordHash: String_comparison_exp
permission_users: permission_user_bool_exp
permission_users_aggregate: permission_user_aggregate_bool_exp
phoneNumber: String_comparison_exp
phoneNumberVerified: Boolean_comparison_exp
refreshTokens: authRefreshTokens_bool_exp
refreshTokens_aggregate: authRefreshTokens_aggregate_bool_exp
roles: authUserRoles_bool_exp
roles_aggregate: authUserRoles_aggregate_bool_exp
securityKeys: authUserSecurityKeys_bool_exp
securityKeys_aggregate: authUserSecurityKeys_aggregate_bool_exp
ticket: String_comparison_exp
ticketExpiresAt: timestamptz_comparison_exp
totpSecret: String_comparison_exp
updatedAt: timestamptz_comparison_exp
userProviders: authUserProviders_bool_exp
userProviders_aggregate: authUserProviders_aggregate_bool_exp
}
"""
unique or primary key constraints on table "auth.users"
"""
enum users_constraint {
"""
unique or primary key constraint on columns "email"
"""
users_email_key
"""
unique or primary key constraint on columns "phone_number"
"""
users_phone_number_key
"""
unique or primary key constraint on columns "id"
"""
users_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input users_delete_at_path_input {
metadata: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input users_delete_elem_input {
metadata: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input users_delete_key_input {
metadata: String
}
"""
input type for inserting data into table "auth.users"
"""
input users_insert_input {
activeMfaType: String
avatarUrl: String
createdAt: timestamptz
currentChallenge: String
defaultRole: String
defaultRoleByRole: authRoles_obj_rel_insert_input
disabled: Boolean
displayName: String
email: citext
emailVerified: Boolean
id: uuid
isAnonymous: Boolean
lastSeen: timestamptz
locale: String
metadata: jsonb
newEmail: citext
organization_users: organization_user_arr_rel_insert_input
otpHash: String
otpHashExpiresAt: timestamptz
otpMethodLastUsed: String
passwordHash: String
permission_users: permission_user_arr_rel_insert_input
phoneNumber: String
phoneNumberVerified: Boolean
refreshTokens: authRefreshTokens_arr_rel_insert_input
roles: authUserRoles_arr_rel_insert_input
securityKeys: authUserSecurityKeys_arr_rel_insert_input
ticket: String
ticketExpiresAt: timestamptz
totpSecret: String
updatedAt: timestamptz
userProviders: authUserProviders_arr_rel_insert_input
}
"""aggregate max on columns"""
type users_max_fields {
activeMfaType: String
avatarUrl: String
createdAt: timestamptz
currentChallenge: String
defaultRole: String
displayName: String
email: citext
id: uuid
lastSeen: timestamptz
locale: String
newEmail: citext
otpHash: String
otpHashExpiresAt: timestamptz
otpMethodLastUsed: String
passwordHash: String
phoneNumber: String
ticket: String
ticketExpiresAt: timestamptz
totpSecret: String
updatedAt: timestamptz
}
"""
order by max() on columns of table "auth.users"
"""
input users_max_order_by {
activeMfaType: order_by
avatarUrl: order_by
createdAt: order_by
currentChallenge: order_by
defaultRole: order_by
displayName: order_by
email: order_by
id: order_by
lastSeen: order_by
locale: order_by
newEmail: order_by
otpHash: order_by
otpHashExpiresAt: order_by
otpMethodLastUsed: order_by
passwordHash: order_by
phoneNumber: order_by
ticket: order_by
ticketExpiresAt: order_by
totpSecret: order_by
updatedAt: order_by
}
"""aggregate min on columns"""
type users_min_fields {
activeMfaType: String
avatarUrl: String
createdAt: timestamptz
currentChallenge: String
defaultRole: String
displayName: String
email: citext
id: uuid
lastSeen: timestamptz
locale: String
newEmail: citext
otpHash: String
otpHashExpiresAt: timestamptz
otpMethodLastUsed: String
passwordHash: String
phoneNumber: String
ticket: String
ticketExpiresAt: timestamptz
totpSecret: String
updatedAt: timestamptz
}
"""
order by min() on columns of table "auth.users"
"""
input users_min_order_by {
activeMfaType: order_by
avatarUrl: order_by
createdAt: order_by
currentChallenge: order_by
defaultRole: order_by
displayName: order_by
email: order_by
id: order_by
lastSeen: order_by
locale: order_by
newEmail: order_by
otpHash: order_by
otpHashExpiresAt: order_by
otpMethodLastUsed: order_by
passwordHash: order_by
phoneNumber: order_by
ticket: order_by
ticketExpiresAt: order_by
totpSecret: order_by
updatedAt: order_by
}
"""
response of any mutation on the table "auth.users"
"""
type users_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [users!]!
}
"""
input type for inserting object relation for remote table "auth.users"
"""
input users_obj_rel_insert_input {
data: users_insert_input!
"""upsert condition"""
on_conflict: users_on_conflict
}
"""
on_conflict condition type for table "auth.users"
"""
input users_on_conflict {
constraint: users_constraint!
update_columns: [users_update_column!]! = []
where: users_bool_exp
}
"""Ordering options when selecting data from "auth.users"."""
input users_order_by {
activeMfaType: order_by
avatarUrl: order_by
createdAt: order_by
currentChallenge: order_by
defaultRole: order_by
defaultRoleByRole: authRoles_order_by
disabled: order_by
displayName: order_by
email: order_by
emailVerified: order_by
id: order_by
isAnonymous: order_by
lastSeen: order_by
locale: order_by
metadata: order_by
newEmail: order_by
organization_users_aggregate: organization_user_aggregate_order_by
otpHash: order_by
otpHashExpiresAt: order_by
otpMethodLastUsed: order_by
passwordHash: order_by
permission_users_aggregate: permission_user_aggregate_order_by
phoneNumber: order_by
phoneNumberVerified: order_by
refreshTokens_aggregate: authRefreshTokens_aggregate_order_by
roles_aggregate: authUserRoles_aggregate_order_by
securityKeys_aggregate: authUserSecurityKeys_aggregate_order_by
ticket: order_by
ticketExpiresAt: order_by
totpSecret: order_by
updatedAt: order_by
userProviders_aggregate: authUserProviders_aggregate_order_by
}
"""primary key columns input for table: auth.users"""
input users_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input users_prepend_input {
metadata: jsonb
}
"""
select columns of table "auth.users"
"""
enum users_select_column {
"""column name"""
activeMfaType
"""column name"""
avatarUrl
"""column name"""
createdAt
"""column name"""
currentChallenge
"""column name"""
defaultRole
"""column name"""
disabled
"""column name"""
displayName
"""column name"""
email
"""column name"""
emailVerified
"""column name"""
id
"""column name"""
isAnonymous
"""column name"""
lastSeen
"""column name"""
locale
"""column name"""
metadata
"""column name"""
newEmail
"""column name"""
otpHash
"""column name"""
otpHashExpiresAt
"""column name"""
otpMethodLastUsed
"""column name"""
passwordHash
"""column name"""
phoneNumber
"""column name"""
phoneNumberVerified
"""column name"""
ticket
"""column name"""
ticketExpiresAt
"""column name"""
totpSecret
"""column name"""
updatedAt
}
"""
select "users_aggregate_bool_exp_bool_and_arguments_columns" columns of table "auth.users"
"""
enum users_select_column_users_aggregate_bool_exp_bool_and_arguments_columns {
"""column name"""
disabled
"""column name"""
emailVerified
"""column name"""
isAnonymous
"""column name"""
phoneNumberVerified
}
"""
select "users_aggregate_bool_exp_bool_or_arguments_columns" columns of table "auth.users"
"""
enum users_select_column_users_aggregate_bool_exp_bool_or_arguments_columns {
"""column name"""
disabled
"""column name"""
emailVerified
"""column name"""
isAnonymous
"""column name"""
phoneNumberVerified
}
"""
input type for updating data in table "auth.users"
"""
input users_set_input {
activeMfaType: String
avatarUrl: String
createdAt: timestamptz
currentChallenge: String
defaultRole: String
disabled: Boolean
displayName: String
email: citext
emailVerified: Boolean
id: uuid
isAnonymous: Boolean
lastSeen: timestamptz
locale: String
metadata: jsonb
newEmail: citext
otpHash: String
otpHashExpiresAt: timestamptz
otpMethodLastUsed: String
passwordHash: String
phoneNumber: String
phoneNumberVerified: Boolean
ticket: String
ticketExpiresAt: timestamptz
totpSecret: String
updatedAt: timestamptz
}
"""
Streaming cursor of the table "users"
"""
input users_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: users_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input users_stream_cursor_value_input {
activeMfaType: String
avatarUrl: String
createdAt: timestamptz
currentChallenge: String
defaultRole: String
disabled: Boolean
displayName: String
email: citext
emailVerified: Boolean
id: uuid
isAnonymous: Boolean
lastSeen: timestamptz
locale: String
metadata: jsonb
newEmail: citext
otpHash: String
otpHashExpiresAt: timestamptz
otpMethodLastUsed: String
passwordHash: String
phoneNumber: String
phoneNumberVerified: Boolean
ticket: String
ticketExpiresAt: timestamptz
totpSecret: String
updatedAt: timestamptz
}
"""
update columns of table "auth.users"
"""
enum users_update_column {
"""column name"""
activeMfaType
"""column name"""
avatarUrl
"""column name"""
createdAt
"""column name"""
currentChallenge
"""column name"""
defaultRole
"""column name"""
disabled
"""column name"""
displayName
"""column name"""
email
"""column name"""
emailVerified
"""column name"""
id
"""column name"""
isAnonymous
"""column name"""
lastSeen
"""column name"""
locale
"""column name"""
metadata
"""column name"""
newEmail
"""column name"""
otpHash
"""column name"""
otpHashExpiresAt
"""column name"""
otpMethodLastUsed
"""column name"""
passwordHash
"""column name"""
phoneNumber
"""column name"""
phoneNumberVerified
"""column name"""
ticket
"""column name"""
ticketExpiresAt
"""column name"""
totpSecret
"""column name"""
updatedAt
}
input users_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: users_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: users_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: users_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: users_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: users_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: users_set_input
"""filter the rows which have to be updated"""
where: users_bool_exp!
}
scalar uuid
"""
Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'.
"""
input uuid_comparison_exp {
_eq: uuid
_gt: uuid
_gte: uuid
_in: [uuid!]
_is_null: Boolean
_lt: uuid
_lte: uuid
_neq: uuid
_nin: [uuid!]
}
"""
columns and relationships of "storage.virus"
"""
type virus {
createdAt: timestamptz!
"""An object relationship"""
file: files!
fileId: uuid!
filename: String!
id: uuid!
updatedAt: timestamptz!
userSession(
"""JSON select path"""
path: String
): jsonb!
virus: String!
}
"""
aggregated selection of "storage.virus"
"""
type virus_aggregate {
aggregate: virus_aggregate_fields
nodes: [virus!]!
}
"""
aggregate fields of "storage.virus"
"""
type virus_aggregate_fields {
count(columns: [virus_select_column!], distinct: Boolean): Int!
max: virus_max_fields
min: virus_min_fields
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input virus_append_input {
userSession: jsonb
}
"""
Boolean expression to filter rows from the table "storage.virus". All fields are combined with a logical 'AND'.
"""
input virus_bool_exp {
_and: [virus_bool_exp!]
_not: virus_bool_exp
_or: [virus_bool_exp!]
createdAt: timestamptz_comparison_exp
file: files_bool_exp
fileId: uuid_comparison_exp
filename: String_comparison_exp
id: uuid_comparison_exp
updatedAt: timestamptz_comparison_exp
userSession: jsonb_comparison_exp
virus: String_comparison_exp
}
"""
unique or primary key constraints on table "storage.virus"
"""
enum virus_constraint {
"""
unique or primary key constraint on columns "id"
"""
virus_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input virus_delete_at_path_input {
userSession: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input virus_delete_elem_input {
userSession: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input virus_delete_key_input {
userSession: String
}
"""
input type for inserting data into table "storage.virus"
"""
input virus_insert_input {
createdAt: timestamptz
file: files_obj_rel_insert_input
fileId: uuid
filename: String
id: uuid
updatedAt: timestamptz
userSession: jsonb
virus: String
}
"""aggregate max on columns"""
type virus_max_fields {
createdAt: timestamptz
fileId: uuid
filename: String
id: uuid
updatedAt: timestamptz
virus: String
}
"""aggregate min on columns"""
type virus_min_fields {
createdAt: timestamptz
fileId: uuid
filename: String
id: uuid
updatedAt: timestamptz
virus: String
}
"""
response of any mutation on the table "storage.virus"
"""
type virus_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
returning: [virus!]!
}
"""
on_conflict condition type for table "storage.virus"
"""
input virus_on_conflict {
constraint: virus_constraint!
update_columns: [virus_update_column!]! = []
where: virus_bool_exp
}
"""Ordering options when selecting data from "storage.virus"."""
input virus_order_by {
createdAt: order_by
file: files_order_by
fileId: order_by
filename: order_by
id: order_by
updatedAt: order_by
userSession: order_by
virus: order_by
}
"""primary key columns input for table: storage.virus"""
input virus_pk_columns_input {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input virus_prepend_input {
userSession: jsonb
}
"""
select columns of table "storage.virus"
"""
enum virus_select_column {
"""column name"""
createdAt
"""column name"""
fileId
"""column name"""
filename
"""column name"""
id
"""column name"""
updatedAt
"""column name"""
userSession
"""column name"""
virus
}
"""
input type for updating data in table "storage.virus"
"""
input virus_set_input {
createdAt: timestamptz
fileId: uuid
filename: String
id: uuid
updatedAt: timestamptz
userSession: jsonb
virus: String
}
"""
Streaming cursor of the table "virus"
"""
input virus_stream_cursor_input {
"""Stream column input with initial value"""
initial_value: virus_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
input virus_stream_cursor_value_input {
createdAt: timestamptz
fileId: uuid
filename: String
id: uuid
updatedAt: timestamptz
userSession: jsonb
virus: String
}
"""
update columns of table "storage.virus"
"""
enum virus_update_column {
"""column name"""
createdAt
"""column name"""
fileId
"""column name"""
filename
"""column name"""
id
"""column name"""
updatedAt
"""column name"""
userSession
"""column name"""
virus
}
input virus_updates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: virus_append_input
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_delete_at_path: virus_delete_at_path_input
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_delete_elem: virus_delete_elem_input
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_delete_key: virus_delete_key_input
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: virus_prepend_input
"""sets the columns of the filtered rows to the given values"""
_set: virus_set_input
"""filter the rows which have to be updated"""
where: virus_bool_exp!
}