Skip to main content

Nudgebee GraphQL API Documentation

Generated on: 2026-02-15T03:17:42.555Z

Table of Contents

Getting Started

Authentication

The Nudgebee GraphQL API supports three authentication methods:

Request a JWT token by POSTing to the token endpoint:

curl -X POST https://your-domain.com/api/auth/token \
-H "Content-Type: application/json" \
-d '{"email": "your-api-user@example.com", "secret": "your-api-secret"}'

Response:

{
"token": "eyJhbGciOiJSUzI1NiIs...",
"expiry": 3600
}

Then include the token in subsequent requests:

curl -X POST https://your-domain.com/api/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{"query": "{ cloud_accounts { id account_name cloud_provider } }"}'

Request Format

{
"query": "query MyQuery($var: Type!) { ... }",
"variables": { "var": "value" },
"operationName": "MyQuery"
}

List Cloud Accounts Example

GraphQL Query:

query CloudAccounts {
cloud_accounts(limit: 3) {
id
account_name
cloud_provider
status
}
}

Full curl example:

# Step 1: Get a token
TOKEN=$(curl -s -X POST https://your-domain.com/api/auth/token \
-H "Content-Type: application/json" \
-d '{"email": "api-user@example.com", "secret": "your-secret"}' \
| jq -r '.token')

# Step 2: Query the API
curl -X POST https://your-domain.com/api/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d '{
"query": "query CloudAccounts { cloud_accounts(limit: 3) { id account_name cloud_provider status } }"
}'

JavaScript example:

const response = await fetch('https://your-domain.com/api/graphql', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${token}`,
},
body: JSON.stringify({
query: `
query CloudAccounts {
cloud_accounts(limit: 3) {
id
account_name
cloud_provider
status
}
}
`,
}),
});

const { data } = await response.json();
console.log(data.cloud_accounts);

Common Examples

Copy-pasteable examples for the most common operations.

List Cloud Accounts

Category: Cloud Infrastructure

Retrieve all cloud accounts with their status and provider.

query ListCloudAccounts {
cloud_accounts(order_by: {account_name: asc}) {
id
account_name
cloud_provider
account_type
status
budget
created_at
}
}

Get Spend Breakdown by Account

Category: Cost Management

Aggregate spending across accounts for a date range.

query SpendByAccount($startDate: timestamp!, $endDate: timestamp!) {
cloud_accounts {
id
account_name
cloud_provider
spends_aggregate(where: {
_and: [{date: {_gte: $startDate}}, {date: {_lte: $endDate}}]
}) {
aggregate {
sum { amount }
count
}
}
}
}

Variables:

{
"startDate": "2026-01-01T00:00:00",
"endDate": "2026-01-31T23:59:59"
}

Get Recommendations by Severity

Category: Recommendations

Fetch open recommendations sorted by severity with estimated savings.

query GetRecommendations($limit: Int, $offset: Int) {
recommendation(
where: {status: {_in: ["Open", "Assigned"]}}
order_by: [{severity: asc}, {estimated_savings: desc}]
limit: $limit
offset: $offset
) {
id
recommendation
rule_name
category
severity
status
estimated_savings
cloud_resourse {
name
region
service_name
}
}
recommendation_aggregate(where: {status: {_in: ["Open", "Assigned"]}}) {
aggregate { count }
}
}

Variables:

{
"limit": 20,
"offset": 0
}

List K8s Workloads

Category: Kubernetes

Get workloads across clusters with resource usage.

query ListK8sWorkloads($accountId: uuid!, $limit: Int) {
k8s_workloads(
where: {cloud_account_id: {_eq: $accountId}}
order_by: {name: asc}
limit: $limit
) {
id
name
namespace
workload_type
replicas
status
cpu_request
cpu_limit
memory_request
memory_limit
}
}

Variables:

{
"accountId": "your-account-uuid",
"limit": 50
}

Fetch Recent Events

Category: Events & Incidents

Retrieve recent events with severity and status.

query RecentEvents($limit: Int!, $offset: Int!) {
events(
order_by: {created_at: desc}
limit: $limit
offset: $offset
) {
id
title
severity
source
status
created_at
cloud_account {
account_name
}
}
events_aggregate {
aggregate { count }
}
}

Variables:

{
"limit": 50,
"offset": 0
}

Create a Ticket

Category: Tickets

Create a new ticket linked to an integration (e.g., Jira).

mutation CreateTicket($input: TicketsInsertOneInput!) {
tickets_insert_one(object: $input) {
data {
insert_tickets_one {
id
ticket_id
url
message
}
}
}
}

Variables:

{
"input": {
"title": "High CPU usage on prod-api-server",
"description": "CPU consistently above 90% for the last 2 hours",
"severity": "High",
"integration_id": "your-integration-uuid",
"project_key": "OPS",
"source": "nudgebee",
"account_id": "your-account-uuid"
}
}

Send an AI Message

Category: AI & LLM

Send a message to the AI assistant and receive a response.

mutation AiFollowup($request: AiFollowupResponseInput!) {
ai_followup_response(request: $request) {
conversation_id
response
references
status
}
}

Variables:

{
"request": {
"message": "What are the top cost recommendations for my AWS account?",
"conversation_id": null,
"account_id": "your-account-uuid"
}
}

Query Logs

Category: Observability

Search application logs with label filters.

mutation FetchLogs($request: LogsQueryInput!) {
logs_query(request: $request) {
timestamp
severity
message
labels
}
}

Variables:

{
"request": {
"account_id": "your-account-uuid",
"query": "{namespace=\"production\"}",
"start": "2026-02-15T00:00:00Z",
"end": "2026-02-15T23:59:59Z",
"limit": 100
}
}

List Auto-Pilot Policies

Category: Automation

Retrieve automation policies with their approval status.

query ListAutoPilotPolicies($limit: Int, $offset: Int) {
auto_pilot(
order_by: {created_at: desc}
limit: $limit
offset: $offset
) {
id
name
description
status
trigger_type
created_at
auto_pilot_approval_policy {
approval_type
status
}
}
}

Variables:

{
"limit": 20,
"offset": 0
}

List Tenant Users

Category: Organization & Users

Retrieve all users in the current tenant with their roles.

query ListTenantUsers {
tenant_users {
user {
id
username
display_name
status
user_roles {
role
entity_type
entity_id
}
}
}
}

Queries

Cost Management

Track cloud spending, budgets, billing, and funding sources across accounts.

billing

fetch data from the table: "billing"

Arguments:

  • distinct_on: [billing_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [billing_order_by!] - sort the rows by one or more columns
  • where: billing_bool_exp - filter the rows returned

Returns: [billing!]!


billing_aggregate

fetch aggregated fields from the table: "billing"

Arguments:

  • distinct_on: [billing_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [billing_order_by!] - sort the rows by one or more columns
  • where: billing_bool_exp - filter the rows returned

Returns: billing_aggregate!


billing_by_pk

fetch data from the table: "billing" using primary key columns

Arguments:

  • id: uuid!

Returns: billing


billing_usage_cost

fetch data from the table: "billing_usage_cost"

Arguments:

  • distinct_on: [billing_usage_cost_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [billing_usage_cost_order_by!] - sort the rows by one or more columns
  • where: billing_usage_cost_bool_exp - filter the rows returned

Returns: [billing_usage_cost!]!


billing_usage_cost_aggregate

fetch aggregated fields from the table: "billing_usage_cost"

Arguments:

  • distinct_on: [billing_usage_cost_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [billing_usage_cost_order_by!] - sort the rows by one or more columns
  • where: billing_usage_cost_bool_exp - filter the rows returned

Returns: billing_usage_cost_aggregate!


billing_usage_cost_by_pk

fetch data from the table: "billing_usage_cost" using primary key columns

Arguments:

  • id: uuid!

Returns: billing_usage_cost


businessunit_funding

fetch data from the table: "businessunit_funding"

Arguments:

  • distinct_on: [businessunit_funding_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [businessunit_funding_order_by!] - sort the rows by one or more columns
  • where: businessunit_funding_bool_exp - filter the rows returned

Returns: [businessunit_funding!]!


businessunit_funding_aggregate

fetch aggregated fields from the table: "businessunit_funding"

Arguments:

  • distinct_on: [businessunit_funding_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [businessunit_funding_order_by!] - sort the rows by one or more columns
  • where: businessunit_funding_bool_exp - filter the rows returned

Returns: businessunit_funding_aggregate!


businessunit_funding_by_pk

fetch data from the table: "businessunit_funding" using primary key columns

Arguments:

  • id: uuid!

Returns: businessunit_funding


funding_sources

An array relationship

Arguments:

  • distinct_on: [funding_sources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [funding_sources_order_by!] - sort the rows by one or more columns
  • where: funding_sources_bool_exp - filter the rows returned

Returns: [funding_sources!]!


funding_sources_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [funding_sources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [funding_sources_order_by!] - sort the rows by one or more columns
  • where: funding_sources_bool_exp - filter the rows returned

Returns: funding_sources_aggregate!


funding_sources_by_pk

fetch data from the table: "funding_sources" using primary key columns

Arguments:

  • id: uuid!

Returns: funding_sources


spend_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: SpendGroupingsWhereRequest

Returns: SpendGroupingsResponse


spends

An array relationship

Arguments:

  • distinct_on: [spends_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [spends_order_by!] - sort the rows by one or more columns
  • where: spends_bool_exp - filter the rows returned

Returns: [spends!]!


spends_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [spends_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [spends_order_by!] - sort the rows by one or more columns
  • where: spends_bool_exp - filter the rows returned

Returns: spends_aggregate!


spends_by_pk

fetch data from the table: "spends" using primary key columns

Arguments:

  • id: uuid!

Returns: spends


spends_resource_group_type

fetch data from the table: "spends_resource_group_type"

Arguments:

  • distinct_on: [spends_resource_group_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [spends_resource_group_type_order_by!] - sort the rows by one or more columns
  • where: spends_resource_group_type_bool_exp - filter the rows returned

Returns: [spends_resource_group_type!]!


spends_resource_group_type_aggregate

fetch aggregated fields from the table: "spends_resource_group_type"

Arguments:

  • distinct_on: [spends_resource_group_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [spends_resource_group_type_order_by!] - sort the rows by one or more columns
  • where: spends_resource_group_type_bool_exp - filter the rows returned

Returns: spends_resource_group_type_aggregate!


spends_resource_group_type_by_pk

fetch data from the table: "spends_resource_group_type" using primary key columns

Arguments:

  • value: String!

Returns: spends_resource_group_type


spends_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: SpendsWhereRequest

Returns: SpendsResponse


Anomalies

Detect and manage cost and operational anomalies.

anomaly

fetch data from the table: "anomaly"

Arguments:

  • distinct_on: [anomaly_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_order_by!] - sort the rows by one or more columns
  • where: anomaly_bool_exp - filter the rows returned

Returns: [anomaly!]!


anomaly_aggregate

fetch aggregated fields from the table: "anomaly"

Arguments:

  • distinct_on: [anomaly_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_order_by!] - sort the rows by one or more columns
  • where: anomaly_bool_exp - filter the rows returned

Returns: anomaly_aggregate!


anomaly_by_pk

fetch data from the table: "anomaly" using primary key columns

Arguments:

  • id: uuid!

Returns: anomaly


anomaly_change_operator

fetch data from the table: "anomaly_change_operator"

Arguments:

  • distinct_on: [anomaly_change_operator_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_change_operator_order_by!] - sort the rows by one or more columns
  • where: anomaly_change_operator_bool_exp - filter the rows returned

Returns: [anomaly_change_operator!]!


anomaly_change_operator_aggregate

fetch aggregated fields from the table: "anomaly_change_operator"

Arguments:

  • distinct_on: [anomaly_change_operator_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_change_operator_order_by!] - sort the rows by one or more columns
  • where: anomaly_change_operator_bool_exp - filter the rows returned

Returns: anomaly_change_operator_aggregate!


anomaly_change_operator_by_pk

fetch data from the table: "anomaly_change_operator" using primary key columns

Arguments:

  • value: String!

Returns: anomaly_change_operator


anomaly_config

fetch data from the table: "anomaly_config"

Arguments:

  • distinct_on: [anomaly_config_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_config_order_by!] - sort the rows by one or more columns
  • where: anomaly_config_bool_exp - filter the rows returned

Returns: [anomaly_config!]!


anomaly_config_aggregate

fetch aggregated fields from the table: "anomaly_config"

Arguments:

  • distinct_on: [anomaly_config_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_config_order_by!] - sort the rows by one or more columns
  • where: anomaly_config_bool_exp - filter the rows returned

Returns: anomaly_config_aggregate!


anomaly_config_by_pk

fetch data from the table: "anomaly_config" using primary key columns

Arguments:

  • id: uuid!

Returns: anomaly_config


anomaly_config_type

fetch data from the table: "anomaly_config_type"

Arguments:

  • distinct_on: [anomaly_config_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_config_type_order_by!] - sort the rows by one or more columns
  • where: anomaly_config_type_bool_exp - filter the rows returned

Returns: [anomaly_config_type!]!


anomaly_config_type_aggregate

fetch aggregated fields from the table: "anomaly_config_type"

Arguments:

  • distinct_on: [anomaly_config_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_config_type_order_by!] - sort the rows by one or more columns
  • where: anomaly_config_type_bool_exp - filter the rows returned

Returns: anomaly_config_type_aggregate!


anomaly_config_type_by_pk

fetch data from the table: "anomaly_config_type" using primary key columns

Arguments:

  • value: String!

Returns: anomaly_config_type


anomaly_grouping_v2

Arguments:

  • where: ListAnomalyWhereRequest

Returns: AnomalyGroupingsResponse


anomaly_type

fetch data from the table: "anomaly_type"

Arguments:

  • distinct_on: [anomaly_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_type_order_by!] - sort the rows by one or more columns
  • where: anomaly_type_bool_exp - filter the rows returned

Returns: [anomaly_type!]!


anomaly_type_aggregate

fetch aggregated fields from the table: "anomaly_type"

Arguments:

  • distinct_on: [anomaly_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [anomaly_type_order_by!] - sort the rows by one or more columns
  • where: anomaly_type_bool_exp - filter the rows returned

Returns: anomaly_type_aggregate!


anomaly_type_by_pk

fetch data from the table: "anomaly_type" using primary key columns

Arguments:

  • value: String!

Returns: anomaly_type


anomaly_v2

List Anomaly from anomaly table

Arguments:

  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: ListAnomalyWhereRequest

Returns: ListAnomalyResponse


anomaly_v3

Arguments:

  • limit: Int
  • offset: Int
  • where: ListAnomalyV3WhereRequest

Returns: ListAnomalyV3Response


Events & Incidents

Event ingestion, alerting rules, triage, severity classification, and incident insights.

event_bulk_operations

fetch data from the table: "event_bulk_operations"

Arguments:

  • distinct_on: [event_bulk_operations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_bulk_operations_order_by!] - sort the rows by one or more columns
  • where: event_bulk_operations_bool_exp - filter the rows returned

Returns: [event_bulk_operations!]!


event_bulk_operations_aggregate

fetch aggregated fields from the table: "event_bulk_operations"

Arguments:

  • distinct_on: [event_bulk_operations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_bulk_operations_order_by!] - sort the rows by one or more columns
  • where: event_bulk_operations_bool_exp - filter the rows returned

Returns: event_bulk_operations_aggregate!


event_bulk_operations_by_pk

fetch data from the table: "event_bulk_operations" using primary key columns

Arguments:

  • id: uuid!

Returns: event_bulk_operations


event_classification

fetch data from the table: "event_classification"

Arguments:

  • distinct_on: [event_classification_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_classification_order_by!] - sort the rows by one or more columns
  • where: event_classification_bool_exp - filter the rows returned

Returns: [event_classification!]!


event_classification_aggregate

fetch aggregated fields from the table: "event_classification"

Arguments:

  • distinct_on: [event_classification_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_classification_order_by!] - sort the rows by one or more columns
  • where: event_classification_bool_exp - filter the rows returned

Returns: event_classification_aggregate!


event_classification_by_pk

fetch data from the table: "event_classification" using primary key columns

Arguments:

  • id: uuid!

Returns: event_classification


event_correlations

fetch data from the table: "event_correlations"

Arguments:

  • distinct_on: [event_correlations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_correlations_order_by!] - sort the rows by one or more columns
  • where: event_correlations_bool_exp - filter the rows returned

Returns: [event_correlations!]!


event_correlations_aggregate

fetch aggregated fields from the table: "event_correlations"

Arguments:

  • distinct_on: [event_correlations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_correlations_order_by!] - sort the rows by one or more columns
  • where: event_correlations_bool_exp - filter the rows returned

Returns: event_correlations_aggregate!


event_correlations_by_pk

fetch data from the table: "event_correlations" using primary key columns

Arguments:

  • id: uuid!

Returns: event_correlations


event_duplicates

fetch data from the table: "event_duplicates"

Arguments:

  • distinct_on: [event_duplicates_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_duplicates_order_by!] - sort the rows by one or more columns
  • where: event_duplicates_bool_exp - filter the rows returned

Returns: [event_duplicates!]!


event_duplicates_aggregate

fetch aggregated fields from the table: "event_duplicates"

Arguments:

  • distinct_on: [event_duplicates_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_duplicates_order_by!] - sort the rows by one or more columns
  • where: event_duplicates_bool_exp - filter the rows returned

Returns: event_duplicates_aggregate!


event_duplicates_by_pk

fetch data from the table: "event_duplicates" using primary key columns

Arguments:

  • id: uuid!

Returns: event_duplicates


event_get_filter_values

Get available filter values for events (namespace, workload, source, etc.)

Arguments:

  • request: EventFilterValuesRequest!

Returns: EventFilterValuesResponse


event_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: EventGroupingsWhereRequest

Returns: EventGroupingsResponse


event_history

fetch data from the table: "event_history"

Arguments:

  • distinct_on: [event_history_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_history_order_by!] - sort the rows by one or more columns
  • where: event_history_bool_exp - filter the rows returned

Returns: [event_history!]!


event_history_aggregate

fetch aggregated fields from the table: "event_history"

Arguments:

  • distinct_on: [event_history_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_history_order_by!] - sort the rows by one or more columns
  • where: event_history_bool_exp - filter the rows returned

Returns: event_history_aggregate!


event_history_by_pk

fetch data from the table: "event_history" using primary key columns

Arguments:

  • id: uuid!

Returns: event_history


event_incoming_webhooks

fetch data from the table: "event_incoming_webhooks"

Arguments:

  • distinct_on: [event_incoming_webhooks_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_incoming_webhooks_order_by!] - sort the rows by one or more columns
  • where: event_incoming_webhooks_bool_exp - filter the rows returned

Returns: [event_incoming_webhooks!]!


event_incoming_webhooks_aggregate

fetch aggregated fields from the table: "event_incoming_webhooks"

Arguments:

  • distinct_on: [event_incoming_webhooks_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_incoming_webhooks_order_by!] - sort the rows by one or more columns
  • where: event_incoming_webhooks_bool_exp - filter the rows returned

Returns: event_incoming_webhooks_aggregate!


event_incoming_webhooks_by_pk

fetch data from the table: "event_incoming_webhooks" using primary key columns

Arguments:

  • id: uuid!

Returns: event_incoming_webhooks


event_log_analysis

fetch data from the table: "event_log_analysis"

Arguments:

  • distinct_on: [event_log_analysis_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_log_analysis_order_by!] - sort the rows by one or more columns
  • where: event_log_analysis_bool_exp - filter the rows returned

Returns: [event_log_analysis!]!


event_log_analysis_aggregate

fetch aggregated fields from the table: "event_log_analysis"

Arguments:

  • distinct_on: [event_log_analysis_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_log_analysis_order_by!] - sort the rows by one or more columns
  • where: event_log_analysis_bool_exp - filter the rows returned

Returns: event_log_analysis_aggregate!


event_log_analysis_by_pk

fetch data from the table: "event_log_analysis" using primary key columns

Arguments:

  • id: uuid!

Returns: event_log_analysis


event_log_analysis_status

fetch data from the table: "event_log_analysis_status"

Arguments:

  • distinct_on: [event_log_analysis_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_log_analysis_status_order_by!] - sort the rows by one or more columns
  • where: event_log_analysis_status_bool_exp - filter the rows returned

Returns: [event_log_analysis_status!]!


event_log_analysis_status_aggregate

fetch aggregated fields from the table: "event_log_analysis_status"

Arguments:

  • distinct_on: [event_log_analysis_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_log_analysis_status_order_by!] - sort the rows by one or more columns
  • where: event_log_analysis_status_bool_exp - filter the rows returned

Returns: event_log_analysis_status_aggregate!


event_log_analysis_status_by_pk

fetch data from the table: "event_log_analysis_status" using primary key columns

Arguments:

  • value: String!

Returns: event_log_analysis_status


event_resolution

fetch data from the table: "event_resolution"

Arguments:

  • distinct_on: [event_resolution_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_resolution_order_by!] - sort the rows by one or more columns
  • where: event_resolution_bool_exp - filter the rows returned

Returns: [event_resolution!]!


event_resolution_aggregate

fetch aggregated fields from the table: "event_resolution"

Arguments:

  • distinct_on: [event_resolution_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_resolution_order_by!] - sort the rows by one or more columns
  • where: event_resolution_bool_exp - filter the rows returned

Returns: event_resolution_aggregate!


event_resolution_by_pk

fetch data from the table: "event_resolution" using primary key columns

Arguments:

  • id: uuid!

Returns: event_resolution


event_rule_severity

fetch data from the table: "event_rule_severity"

Arguments:

  • distinct_on: [event_rule_severity_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_rule_severity_order_by!] - sort the rows by one or more columns
  • where: event_rule_severity_bool_exp - filter the rows returned

Returns: [event_rule_severity!]!


event_rule_severity_aggregate

fetch aggregated fields from the table: "event_rule_severity"

Arguments:

  • distinct_on: [event_rule_severity_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_rule_severity_order_by!] - sort the rows by one or more columns
  • where: event_rule_severity_bool_exp - filter the rows returned

Returns: event_rule_severity_aggregate!


event_rule_severity_by_pk

fetch data from the table: "event_rule_severity" using primary key columns

Arguments:

  • value: String!

Returns: event_rule_severity


event_rule_source

fetch data from the table: "event_rule_source"

Arguments:

  • distinct_on: [event_rule_source_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_rule_source_order_by!] - sort the rows by one or more columns
  • where: event_rule_source_bool_exp - filter the rows returned

Returns: [event_rule_source!]!


event_rule_source_aggregate

fetch aggregated fields from the table: "event_rule_source"

Arguments:

  • distinct_on: [event_rule_source_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_rule_source_order_by!] - sort the rows by one or more columns
  • where: event_rule_source_bool_exp - filter the rows returned

Returns: event_rule_source_aggregate!


event_rule_source_by_pk

fetch data from the table: "event_rule_source" using primary key columns

Arguments:

  • value: String!

Returns: event_rule_source


event_rules

fetch data from the table: "event_rules"

Arguments:

  • distinct_on: [event_rules_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_rules_order_by!] - sort the rows by one or more columns
  • where: event_rules_bool_exp - filter the rows returned

Returns: [event_rules!]!


event_rules_aggregate

fetch aggregated fields from the table: "event_rules"

Arguments:

  • distinct_on: [event_rules_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_rules_order_by!] - sort the rows by one or more columns
  • where: event_rules_bool_exp - filter the rows returned

Returns: event_rules_aggregate!


event_rules_by_pk

fetch data from the table: "event_rules" using primary key columns

Arguments:

  • id: uuid!

Returns: event_rules


event_severity

fetch data from the table: "event_severity"

Arguments:

  • distinct_on: [event_severity_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_severity_order_by!] - sort the rows by one or more columns
  • where: event_severity_bool_exp - filter the rows returned

Returns: [event_severity!]!


event_severity_aggregate

fetch aggregated fields from the table: "event_severity"

Arguments:

  • distinct_on: [event_severity_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_severity_order_by!] - sort the rows by one or more columns
  • where: event_severity_bool_exp - filter the rows returned

Returns: event_severity_aggregate!


event_severity_by_pk

fetch data from the table: "event_severity" using primary key columns

Arguments:

  • value: String!

Returns: event_severity


event_source

fetch data from the table: "event_source"

Arguments:

  • distinct_on: [event_source_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_source_order_by!] - sort the rows by one or more columns
  • where: event_source_bool_exp - filter the rows returned

Returns: [event_source!]!


event_source_aggregate

fetch aggregated fields from the table: "event_source"

Arguments:

  • distinct_on: [event_source_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_source_order_by!] - sort the rows by one or more columns
  • where: event_source_bool_exp - filter the rows returned

Returns: event_source_aggregate!


event_source_by_pk

fetch data from the table: "event_source" using primary key columns

Arguments:

  • value: String!

Returns: event_source


event_status

fetch data from the table: "event_status"

Arguments:

  • distinct_on: [event_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_status_order_by!] - sort the rows by one or more columns
  • where: event_status_bool_exp - filter the rows returned

Returns: [event_status!]!


event_status_aggregate

fetch aggregated fields from the table: "event_status"

Arguments:

  • distinct_on: [event_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_status_order_by!] - sort the rows by one or more columns
  • where: event_status_bool_exp - filter the rows returned

Returns: event_status_aggregate!


event_status_by_pk

fetch data from the table: "event_status" using primary key columns

Arguments:

  • value: String!

Returns: event_status


event_triage_rules

fetch data from the table: "event_triage_rules"

Arguments:

  • distinct_on: [event_triage_rules_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_triage_rules_order_by!] - sort the rows by one or more columns
  • where: event_triage_rules_bool_exp - filter the rows returned

Returns: [event_triage_rules!]!


event_triage_rules_aggregate

fetch aggregated fields from the table: "event_triage_rules"

Arguments:

  • distinct_on: [event_triage_rules_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [event_triage_rules_order_by!] - sort the rows by one or more columns
  • where: event_triage_rules_bool_exp - filter the rows returned

Returns: event_triage_rules_aggregate!


event_triage_rules_by_pk

fetch data from the table: "event_triage_rules" using primary key columns

Arguments:

  • id: uuid!

Returns: event_triage_rules


events

An array relationship

Arguments:

  • distinct_on: [events_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [events_order_by!] - sort the rows by one or more columns
  • where: events_bool_exp - filter the rows returned

Returns: [events!]!


events_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [events_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [events_order_by!] - sort the rows by one or more columns
  • where: events_bool_exp - filter the rows returned

Returns: events_aggregate!


events_by_pk

fetch data from the table: "events" using primary key columns

Arguments:

  • id: uuid!

Returns: events


events_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: EventsWhereRequest

Returns: EventsResponse


insight

fetch data from the table: "insight"

Arguments:

  • distinct_on: [insight_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [insight_order_by!] - sort the rows by one or more columns
  • where: insight_bool_exp - filter the rows returned

Returns: [insight!]!


insight_aggregate

fetch aggregated fields from the table: "insight"

Arguments:

  • distinct_on: [insight_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [insight_order_by!] - sort the rows by one or more columns
  • where: insight_bool_exp - filter the rows returned

Returns: insight_aggregate!


insight_by_pk

fetch data from the table: "insight" using primary key columns

Arguments:

  • id: uuid!

Returns: insight


insight_severity

fetch data from the table: "insight_severity"

Arguments:

  • distinct_on: [insight_severity_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [insight_severity_order_by!] - sort the rows by one or more columns
  • where: insight_severity_bool_exp - filter the rows returned

Returns: [insight_severity!]!


insight_severity_aggregate

fetch aggregated fields from the table: "insight_severity"

Arguments:

  • distinct_on: [insight_severity_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [insight_severity_order_by!] - sort the rows by one or more columns
  • where: insight_severity_bool_exp - filter the rows returned

Returns: insight_severity_aggregate!


insight_severity_by_pk

fetch data from the table: "insight_severity" using primary key columns

Arguments:

  • value: String!

Returns: insight_severity


Recommendations

Cost optimization, security, and misconfiguration recommendations with estimated savings.

recommendation

fetch data from the table: "recommendation"

Arguments:

  • distinct_on: [recommendation_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_order_by!] - sort the rows by one or more columns
  • where: recommendation_bool_exp - filter the rows returned

Returns: [recommendation!]!


recommendation_action_type

fetch data from the table: "recommendation_action_type"

Arguments:

  • distinct_on: [recommendation_action_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_action_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_action_type_bool_exp - filter the rows returned

Returns: [recommendation_action_type!]!


recommendation_action_type_aggregate

fetch aggregated fields from the table: "recommendation_action_type"

Arguments:

  • distinct_on: [recommendation_action_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_action_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_action_type_bool_exp - filter the rows returned

Returns: recommendation_action_type_aggregate!


recommendation_action_type_by_pk

fetch data from the table: "recommendation_action_type" using primary key columns

Arguments:

  • value: String!

Returns: recommendation_action_type


recommendation_aggregate

fetch aggregated fields from the table: "recommendation"

Arguments:

  • distinct_on: [recommendation_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_order_by!] - sort the rows by one or more columns
  • where: recommendation_bool_exp - filter the rows returned

Returns: recommendation_aggregate!


recommendation_by_pk

fetch data from the table: "recommendation" using primary key columns

Arguments:

  • id: uuid!

Returns: recommendation


recommendation_category_type

fetch data from the table: "recommendation_category_type"

Arguments:

  • distinct_on: [recommendation_category_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_category_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_category_type_bool_exp - filter the rows returned

Returns: [recommendation_category_type!]!


recommendation_category_type_aggregate

fetch aggregated fields from the table: "recommendation_category_type"

Arguments:

  • distinct_on: [recommendation_category_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_category_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_category_type_bool_exp - filter the rows returned

Returns: recommendation_category_type_aggregate!


recommendation_category_type_by_pk

fetch data from the table: "recommendation_category_type" using primary key columns

Arguments:

  • value: String!

Returns: recommendation_category_type


recommendation_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationGroupingWhereRequest

Returns: RecommendationGroupingResponse


recommendation_missconfig_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationMissConfigGroupingWhereRequest

Returns: RecommendationMissConfigGroupingResponse


recommendation_missconfig_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationMissConfigWhereRequest

Returns: RecommendationMissConfigResponse


recommendation_resolution

fetch data from the table: "recommendation_resolution"

Arguments:

  • distinct_on: [recommendation_resolution_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_resolution_order_by!] - sort the rows by one or more columns
  • where: recommendation_resolution_bool_exp - filter the rows returned

Returns: [recommendation_resolution!]!


recommendation_resolution_aggregate

fetch aggregated fields from the table: "recommendation_resolution"

Arguments:

  • distinct_on: [recommendation_resolution_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_resolution_order_by!] - sort the rows by one or more columns
  • where: recommendation_resolution_bool_exp - filter the rows returned

Returns: recommendation_resolution_aggregate!


recommendation_resolution_by_pk

fetch data from the table: "recommendation_resolution" using primary key columns

Arguments:

  • id: uuid!

Returns: recommendation_resolution


recommendation_security_cis_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationSecurityCisGroupingsWhereRequest

Returns: RecommendationSecurityCisGroupingsResponse


recommendation_security_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationSecurityGroupingsWhereRequest

Returns: RecommendationSecurityGroupingsResponse


recommendation_security_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationSecurityWhereRequest

Returns: RecommendationSecurityResponse


recommendation_severity_type

fetch data from the table: "recommendation_severity_type"

Arguments:

  • distinct_on: [recommendation_severity_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_severity_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_severity_type_bool_exp - filter the rows returned

Returns: [recommendation_severity_type!]!


recommendation_severity_type_aggregate

fetch aggregated fields from the table: "recommendation_severity_type"

Arguments:

  • distinct_on: [recommendation_severity_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_severity_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_severity_type_bool_exp - filter the rows returned

Returns: recommendation_severity_type_aggregate!


recommendation_severity_type_by_pk

fetch data from the table: "recommendation_severity_type" using primary key columns

Arguments:

  • value: String!

Returns: recommendation_severity_type


recommendation_status_type

fetch data from the table: "recommendation_status_type"

Arguments:

  • distinct_on: [recommendation_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_status_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_status_type_bool_exp - filter the rows returned

Returns: [recommendation_status_type!]!


recommendation_status_type_aggregate

fetch aggregated fields from the table: "recommendation_status_type"

Arguments:

  • distinct_on: [recommendation_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [recommendation_status_type_order_by!] - sort the rows by one or more columns
  • where: recommendation_status_type_bool_exp - filter the rows returned

Returns: recommendation_status_type_aggregate!


recommendation_status_type_by_pk

fetch data from the table: "recommendation_status_type" using primary key columns

Arguments:

  • value: String!

Returns: recommendation_status_type


Cloud Infrastructure

Cloud accounts, resources, provider-specific operations (AWS, Azure), and resource metrics.

active_resources

fetch data from the table: "active_resources"

Arguments:

  • distinct_on: [active_resources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [active_resources_order_by!] - sort the rows by one or more columns
  • where: active_resources_bool_exp - filter the rows returned

Returns: [active_resources!]!


active_resources_aggregate

fetch aggregated fields from the table: "active_resources"

Arguments:

  • distinct_on: [active_resources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [active_resources_order_by!] - sort the rows by one or more columns
  • where: active_resources_bool_exp - filter the rows returned

Returns: active_resources_aggregate!


active_resources_by_pk

fetch data from the table: "active_resources" using primary key columns

Arguments:

  • cloud_account_id: uuid!
  • external_resource_id: String!
  • resource_type: String!
  • tenant_id: uuid!

Returns: active_resources


cloud_account_attrs

An array relationship

Arguments:

  • distinct_on: [cloud_account_attrs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_attrs_order_by!] - sort the rows by one or more columns
  • where: cloud_account_attrs_bool_exp - filter the rows returned

Returns: [cloud_account_attrs!]!


cloud_account_attrs_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [cloud_account_attrs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_attrs_order_by!] - sort the rows by one or more columns
  • where: cloud_account_attrs_bool_exp - filter the rows returned

Returns: cloud_account_attrs_aggregate!


cloud_account_attrs_by_pk

fetch data from the table: "cloud_account_attrs" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_account_attrs


cloud_account_onboarding_errors

fetch data from the table: "cloud_account_onboarding_errors"

Arguments:

  • distinct_on: [cloud_account_onboarding_errors_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_onboarding_errors_order_by!] - sort the rows by one or more columns
  • where: cloud_account_onboarding_errors_bool_exp - filter the rows returned

Returns: [cloud_account_onboarding_errors!]!


cloud_account_onboarding_errors_aggregate

fetch aggregated fields from the table: "cloud_account_onboarding_errors"

Arguments:

  • distinct_on: [cloud_account_onboarding_errors_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_onboarding_errors_order_by!] - sort the rows by one or more columns
  • where: cloud_account_onboarding_errors_bool_exp - filter the rows returned

Returns: cloud_account_onboarding_errors_aggregate!


cloud_account_onboarding_errors_by_pk

fetch data from the table: "cloud_account_onboarding_errors" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_account_onboarding_errors


cloud_account_score

fetch data from the table: "cloud_account_score"

Arguments:

  • distinct_on: [cloud_account_score_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_score_order_by!] - sort the rows by one or more columns
  • where: cloud_account_score_bool_exp - filter the rows returned

Returns: [cloud_account_score!]!


cloud_account_score_aggregate

fetch aggregated fields from the table: "cloud_account_score"

Arguments:

  • distinct_on: [cloud_account_score_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_score_order_by!] - sort the rows by one or more columns
  • where: cloud_account_score_bool_exp - filter the rows returned

Returns: cloud_account_score_aggregate!


cloud_account_score_by_pk

fetch data from the table: "cloud_account_score" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_account_score


cloud_account_status_type

fetch data from the table: "cloud_account_status_type"

Arguments:

  • distinct_on: [cloud_account_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_status_type_order_by!] - sort the rows by one or more columns
  • where: cloud_account_status_type_bool_exp - filter the rows returned

Returns: [cloud_account_status_type!]!


cloud_account_status_type_aggregate

fetch aggregated fields from the table: "cloud_account_status_type"

Arguments:

  • distinct_on: [cloud_account_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_status_type_order_by!] - sort the rows by one or more columns
  • where: cloud_account_status_type_bool_exp - filter the rows returned

Returns: cloud_account_status_type_aggregate!


cloud_account_status_type_by_pk

fetch data from the table: "cloud_account_status_type" using primary key columns

Arguments:

  • value: String!

Returns: cloud_account_status_type


cloud_account_sync_status_type

fetch data from the table: "cloud_account_sync_status_type"

Arguments:

  • distinct_on: [cloud_account_sync_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_sync_status_type_order_by!] - sort the rows by one or more columns
  • where: cloud_account_sync_status_type_bool_exp - filter the rows returned

Returns: [cloud_account_sync_status_type!]!


cloud_account_sync_status_type_aggregate

fetch aggregated fields from the table: "cloud_account_sync_status_type"

Arguments:

  • distinct_on: [cloud_account_sync_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_account_sync_status_type_order_by!] - sort the rows by one or more columns
  • where: cloud_account_sync_status_type_bool_exp - filter the rows returned

Returns: cloud_account_sync_status_type_aggregate!


cloud_account_sync_status_type_by_pk

fetch data from the table: "cloud_account_sync_status_type" using primary key columns

Arguments:

  • value: String!

Returns: cloud_account_sync_status_type


cloud_accounts

An array relationship

Arguments:

  • distinct_on: [cloud_accounts_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_accounts_order_by!] - sort the rows by one or more columns
  • where: cloud_accounts_bool_exp - filter the rows returned

Returns: [cloud_accounts!]!


cloud_accounts_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [cloud_accounts_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_accounts_order_by!] - sort the rows by one or more columns
  • where: cloud_accounts_bool_exp - filter the rows returned

Returns: cloud_accounts_aggregate!


cloud_accounts_by_pk

fetch data from the table: "cloud_accounts" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_accounts


cloud_api_permission_errors

fetch data from the table: "cloud_api_permission_errors"

Arguments:

  • distinct_on: [cloud_api_permission_errors_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_api_permission_errors_order_by!] - sort the rows by one or more columns
  • where: cloud_api_permission_errors_bool_exp - filter the rows returned

Returns: [cloud_api_permission_errors!]!


cloud_api_permission_errors_aggregate

fetch aggregated fields from the table: "cloud_api_permission_errors"

Arguments:

  • distinct_on: [cloud_api_permission_errors_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_api_permission_errors_order_by!] - sort the rows by one or more columns
  • where: cloud_api_permission_errors_bool_exp - filter the rows returned

Returns: cloud_api_permission_errors_aggregate!


cloud_api_permission_errors_by_pk

fetch data from the table: "cloud_api_permission_errors" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_api_permission_errors


cloud_metric_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: CloudMetricGroupingsWhereRequest

Returns: CloudMetricGroupingsResponse


cloud_provider_type

fetch data from the table: "cloud_provider_type"

Arguments:

  • distinct_on: [cloud_provider_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_provider_type_order_by!] - sort the rows by one or more columns
  • where: cloud_provider_type_bool_exp - filter the rows returned

Returns: [cloud_provider_type!]!


cloud_provider_type_aggregate

fetch aggregated fields from the table: "cloud_provider_type"

Arguments:

  • distinct_on: [cloud_provider_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_provider_type_order_by!] - sort the rows by one or more columns
  • where: cloud_provider_type_bool_exp - filter the rows returned

Returns: cloud_provider_type_aggregate!


cloud_provider_type_by_pk

fetch data from the table: "cloud_provider_type" using primary key columns

Arguments:

  • value: String!

Returns: cloud_provider_type


cloud_resource_attributes

An array relationship

Arguments:

  • distinct_on: [cloud_resource_attributes_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_attributes_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_attributes_bool_exp - filter the rows returned

Returns: [cloud_resource_attributes!]!


cloud_resource_attributes_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [cloud_resource_attributes_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_attributes_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_attributes_bool_exp - filter the rows returned

Returns: cloud_resource_attributes_aggregate!


cloud_resource_attributes_by_pk

fetch data from the table: "cloud_resource_attributes" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_resource_attributes


cloud_resource_details

fetch data from the table: "cloud_resource_details"

Arguments:

  • distinct_on: [cloud_resource_details_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_details_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_details_bool_exp - filter the rows returned

Returns: [cloud_resource_details!]!


cloud_resource_details_aggregate

fetch aggregated fields from the table: "cloud_resource_details"

Arguments:

  • distinct_on: [cloud_resource_details_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_details_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_details_bool_exp - filter the rows returned

Returns: cloud_resource_details_aggregate!


cloud_resource_details_by_pk

fetch data from the table: "cloud_resource_details" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_resource_details


cloud_resource_metrics

An array relationship

Arguments:

  • distinct_on: [cloud_resource_metrics_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_metrics_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_metrics_bool_exp - filter the rows returned

Returns: [cloud_resource_metrics!]!


cloud_resource_metrics_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [cloud_resource_metrics_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_metrics_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_metrics_bool_exp - filter the rows returned

Returns: cloud_resource_metrics_aggregate!


cloud_resource_metrics_by_pk

fetch data from the table: "cloud_resource_metrics" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_resource_metrics


cloud_resource_status_type

fetch data from the table: "cloud_resource_status_type"

Arguments:

  • distinct_on: [cloud_resource_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_status_type_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_status_type_bool_exp - filter the rows returned

Returns: [cloud_resource_status_type!]!


cloud_resource_status_type_aggregate

fetch aggregated fields from the table: "cloud_resource_status_type"

Arguments:

  • distinct_on: [cloud_resource_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_status_type_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_status_type_bool_exp - filter the rows returned

Returns: cloud_resource_status_type_aggregate!


cloud_resource_status_type_by_pk

fetch data from the table: "cloud_resource_status_type" using primary key columns

Arguments:

  • value: String!

Returns: cloud_resource_status_type


cloud_resources_v2

Arguments:

  • args: cloud_resources_v2_arguments! - cloud_resources_v2Native Query Arguments
  • distinct_on: [cloud_resource_v2_enum_name!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resource_v2_order_by!] - sort the rows by one or more columns
  • where: cloud_resource_v2_bool_exp_bool_exp - filter the rows returned

Returns: [cloud_resource_v2!]!


cloud_resourses

An array relationship

Arguments:

  • distinct_on: [cloud_resourses_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resourses_order_by!] - sort the rows by one or more columns
  • where: cloud_resourses_bool_exp - filter the rows returned

Returns: [cloud_resourses!]!


cloud_resourses_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [cloud_resourses_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [cloud_resourses_order_by!] - sort the rows by one or more columns
  • where: cloud_resourses_bool_exp - filter the rows returned

Returns: cloud_resourses_aggregate!


cloud_resourses_by_pk

fetch data from the table: "cloud_resourses" using primary key columns

Arguments:

  • id: uuid!

Returns: cloud_resourses


Kubernetes

K8s clusters, workloads, pods, nodes, namespaces, and cluster management.

k8s_account_resource_usage

fetch data from the table: "k8s_account_resource_usage"

Arguments:

  • distinct_on: [k8s_account_resource_usage_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_account_resource_usage_order_by!] - sort the rows by one or more columns
  • where: k8s_account_resource_usage_bool_exp - filter the rows returned

Returns: [k8s_account_resource_usage!]!


k8s_account_resource_usage_aggregate

fetch aggregated fields from the table: "k8s_account_resource_usage"

Arguments:

  • distinct_on: [k8s_account_resource_usage_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_account_resource_usage_order_by!] - sort the rows by one or more columns
  • where: k8s_account_resource_usage_bool_exp - filter the rows returned

Returns: k8s_account_resource_usage_aggregate!


k8s_cluster_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: K8sClusterGroupingsWhereRequest

Returns: K8sClusterGroupingsResponse


k8s_metrics_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: K8sMetricsGroupingsWhereRequest

Returns: K8sMetricsGroupingsResponse


k8s_namespace_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: K8sNamespaceGroupingsWhereRequest

Returns: K8sNamespaceGroupingsResponse


k8s_namespaces

fetch data from the table: "k8s_namespaces"

Arguments:

  • distinct_on: [k8s_namespaces_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_namespaces_order_by!] - sort the rows by one or more columns
  • where: k8s_namespaces_bool_exp - filter the rows returned

Returns: [k8s_namespaces!]!


k8s_namespaces_aggregate

fetch aggregated fields from the table: "k8s_namespaces"

Arguments:

  • distinct_on: [k8s_namespaces_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_namespaces_order_by!] - sort the rows by one or more columns
  • where: k8s_namespaces_bool_exp - filter the rows returned

Returns: k8s_namespaces_aggregate!


k8s_namespaces_by_pk

fetch data from the table: "k8s_namespaces" using primary key columns

Arguments:

  • cloud_account_id: String!
  • name: String!
  • tenant_id: String!

Returns: k8s_namespaces


k8s_namespaces_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: K8sNamespaceWhereRequest

Returns: K8sNamespaceResponse


k8s_nodes

An array relationship

Arguments:

  • distinct_on: [k8s_nodes_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_nodes_order_by!] - sort the rows by one or more columns
  • where: k8s_nodes_bool_exp - filter the rows returned

Returns: [k8s_nodes!]!


k8s_nodes_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [k8s_nodes_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_nodes_order_by!] - sort the rows by one or more columns
  • where: k8s_nodes_bool_exp - filter the rows returned

Returns: k8s_nodes_aggregate!


k8s_nodes_by_pk

fetch data from the table: "k8s_nodes" using primary key columns

Arguments:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

Returns: k8s_nodes


k8s_pod_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: K8sPodGroupingsWhereRequest

Returns: K8sPodGroupingsResponse


k8s_pods

An array relationship

Arguments:

  • distinct_on: [k8s_pods_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_pods_order_by!] - sort the rows by one or more columns
  • where: k8s_pods_bool_exp - filter the rows returned

Returns: [k8s_pods!]!


k8s_pods_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [k8s_pods_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_pods_order_by!] - sort the rows by one or more columns
  • where: k8s_pods_bool_exp - filter the rows returned

Returns: k8s_pods_aggregate!


k8s_pods_by_pk

fetch data from the table: "k8s_pods" using primary key columns

Arguments:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

Returns: k8s_pods


k8s_pods_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: K8sPodsWhereRequest

Returns: K8sPodsResponse


k8s_versions

Returns: [K8sVersionResponse]


k8s_workload_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: K8sWorkloadGroupingsWhereRequest

Returns: K8sWorkloadGroupingsResponse


k8s_workloads

fetch data from the table: "k8s_workloads"

Arguments:

  • distinct_on: [k8s_workloads_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_workloads_order_by!] - sort the rows by one or more columns
  • where: k8s_workloads_bool_exp - filter the rows returned

Returns: [k8s_workloads!]!


k8s_workloads_aggregate

fetch aggregated fields from the table: "k8s_workloads"

Arguments:

  • distinct_on: [k8s_workloads_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [k8s_workloads_order_by!] - sort the rows by one or more columns
  • where: k8s_workloads_bool_exp - filter the rows returned

Returns: k8s_workloads_aggregate!


k8s_workloads_by_pk

fetch data from the table: "k8s_workloads" using primary key columns

Arguments:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

Returns: k8s_workloads


k8s_workloads_cloud_account_monitoring_recommendations_v2

in monitoring get recommendations count for workload in a account

Arguments:

  • where: MonitoringWhereRequest

Returns: MonitoringRecommendationsResponse


k8s_workloads_cloud_account_monitoring_v2

Arguments:

  • order_by: [QuerySortByRequest]
  • where: MonitoringWhereRequest

Returns: MonitoringResponse


k8s_workloads_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: K8sWorkloadWhereRequest

Returns: K8sWorkloadResponse


Automation

Auto-pilot policies, playbooks, runbooks, workflows, and optimization rules.

auto_optimize_recommendation

to get resource which have auto optimizer

Arguments:

  • account_id: uuid!
  • auto_optimize_categories: [String]
  • auto_optimize_id: uuid
  • rule_name: String
  • status: [String]

Returns: auto_optimize_recommendation_output


auto_optimize_resource_map

fetch data from the table: "auto_optimize_resource_map"

Arguments:

  • distinct_on: [auto_optimize_resource_map_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_optimize_resource_map_order_by!] - sort the rows by one or more columns
  • where: auto_optimize_resource_map_bool_exp - filter the rows returned

Returns: [auto_optimize_resource_map!]!


auto_optimize_resource_map_aggregate

fetch aggregated fields from the table: "auto_optimize_resource_map"

Arguments:

  • distinct_on: [auto_optimize_resource_map_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_optimize_resource_map_order_by!] - sort the rows by one or more columns
  • where: auto_optimize_resource_map_bool_exp - filter the rows returned

Returns: auto_optimize_resource_map_aggregate!


auto_optimize_resource_map_by_pk

fetch data from the table: "auto_optimize_resource_map" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_optimize_resource_map


auto_optimize_workload

to get auto optimize for resource_ids

Arguments:

  • arg1: auto_optimize_workload_input!

Returns: auto_optimize_insert_one_output


auto_pilot

fetch data from the table: "auto_pilot"

Arguments:

  • distinct_on: [auto_pilot_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_bool_exp - filter the rows returned

Returns: [auto_pilot!]!


auto_pilot_aggregate

fetch aggregated fields from the table: "auto_pilot"

Arguments:

  • distinct_on: [auto_pilot_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_bool_exp - filter the rows returned

Returns: auto_pilot_aggregate!


auto_pilot_approval_policy

fetch data from the table: "auto_pilot_approval_policy"

Arguments:

  • distinct_on: [auto_pilot_approval_policy_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_approval_policy_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_approval_policy_bool_exp - filter the rows returned

Returns: [auto_pilot_approval_policy!]!


auto_pilot_approval_policy_aggregate

fetch aggregated fields from the table: "auto_pilot_approval_policy"

Arguments:

  • distinct_on: [auto_pilot_approval_policy_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_approval_policy_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_approval_policy_bool_exp - filter the rows returned

Returns: auto_pilot_approval_policy_aggregate!


auto_pilot_approval_policy_by_pk

fetch data from the table: "auto_pilot_approval_policy" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_pilot_approval_policy


auto_pilot_approval_status

fetch data from the table: "auto_pilot_approval_status"

Arguments:

  • distinct_on: [auto_pilot_approval_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_approval_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_approval_status_bool_exp - filter the rows returned

Returns: [auto_pilot_approval_status!]!


auto_pilot_approval_status_aggregate

fetch aggregated fields from the table: "auto_pilot_approval_status"

Arguments:

  • distinct_on: [auto_pilot_approval_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_approval_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_approval_status_bool_exp - filter the rows returned

Returns: auto_pilot_approval_status_aggregate!


auto_pilot_approval_status_by_pk

fetch data from the table: "auto_pilot_approval_status" using primary key columns

Arguments:

  • status: String!

Returns: auto_pilot_approval_status


auto_pilot_approvals

An array relationship

Arguments:

  • distinct_on: [auto_pilot_approvals_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_approvals_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_approvals_bool_exp - filter the rows returned

Returns: [auto_pilot_approvals!]!


auto_pilot_approvals_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [auto_pilot_approvals_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_approvals_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_approvals_bool_exp - filter the rows returned

Returns: auto_pilot_approvals_aggregate!


auto_pilot_approvals_by_pk

fetch data from the table: "auto_pilot_approvals" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_pilot_approvals


auto_pilot_by_pk

fetch data from the table: "auto_pilot" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_pilot


auto_pilot_category

fetch data from the table: "auto_pilot_category"

Arguments:

  • distinct_on: [auto_pilot_category_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_category_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_category_bool_exp - filter the rows returned

Returns: [auto_pilot_category!]!


auto_pilot_category_aggregate

fetch aggregated fields from the table: "auto_pilot_category"

Arguments:

  • distinct_on: [auto_pilot_category_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_category_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_category_bool_exp - filter the rows returned

Returns: auto_pilot_category_aggregate!


auto_pilot_category_by_pk

fetch data from the table: "auto_pilot_category" using primary key columns

Arguments:

  • value: String!

Returns: auto_pilot_category


auto_pilot_execution_status

fetch data from the table: "auto_pilot_execution_status"

Arguments:

  • distinct_on: [auto_pilot_execution_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_execution_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_execution_status_bool_exp - filter the rows returned

Returns: [auto_pilot_execution_status!]!


auto_pilot_execution_status_aggregate

fetch aggregated fields from the table: "auto_pilot_execution_status"

Arguments:

  • distinct_on: [auto_pilot_execution_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_execution_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_execution_status_bool_exp - filter the rows returned

Returns: auto_pilot_execution_status_aggregate!


auto_pilot_execution_status_by_pk

fetch data from the table: "auto_pilot_execution_status" using primary key columns

Arguments:

  • value: String!

Returns: auto_pilot_execution_status


auto_pilot_reviewee

fetch data from the table: "auto_pilot_reviewee"

Arguments:

  • distinct_on: [auto_pilot_reviewee_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_reviewee_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_reviewee_bool_exp - filter the rows returned

Returns: [auto_pilot_reviewee!]!


auto_pilot_reviewee_aggregate

fetch aggregated fields from the table: "auto_pilot_reviewee"

Arguments:

  • distinct_on: [auto_pilot_reviewee_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_reviewee_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_reviewee_bool_exp - filter the rows returned

Returns: auto_pilot_reviewee_aggregate!


auto_pilot_reviewee_by_pk

fetch data from the table: "auto_pilot_reviewee" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_pilot_reviewee


auto_pilot_reviewers

An array relationship

Arguments:

  • distinct_on: [auto_pilot_reviewers_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_reviewers_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_reviewers_bool_exp - filter the rows returned

Returns: [auto_pilot_reviewers!]!


auto_pilot_reviewers_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [auto_pilot_reviewers_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_reviewers_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_reviewers_bool_exp - filter the rows returned

Returns: auto_pilot_reviewers_aggregate!


auto_pilot_reviewers_by_pk

fetch data from the table: "auto_pilot_reviewers" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_pilot_reviewers


auto_pilot_status

fetch data from the table: "auto_pilot_status"

Arguments:

  • distinct_on: [auto_pilot_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_status_bool_exp - filter the rows returned

Returns: [auto_pilot_status!]!


auto_pilot_status_aggregate

fetch aggregated fields from the table: "auto_pilot_status"

Arguments:

  • distinct_on: [auto_pilot_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_status_bool_exp - filter the rows returned

Returns: auto_pilot_status_aggregate!


auto_pilot_status_by_pk

fetch data from the table: "auto_pilot_status" using primary key columns

Arguments:

  • value: String!

Returns: auto_pilot_status


auto_pilot_task

fetch data from the table: "auto_pilot_task"

Arguments:

  • distinct_on: [auto_pilot_task_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_task_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_task_bool_exp - filter the rows returned

Returns: [auto_pilot_task!]!


auto_pilot_task_aggregate

fetch aggregated fields from the table: "auto_pilot_task"

Arguments:

  • distinct_on: [auto_pilot_task_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_task_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_task_bool_exp - filter the rows returned

Returns: auto_pilot_task_aggregate!


auto_pilot_task_by_pk

fetch data from the table: "auto_pilot_task" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_pilot_task


auto_pilot_task_status

fetch data from the table: "auto_pilot_task_status"

Arguments:

  • distinct_on: [auto_pilot_task_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_task_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_task_status_bool_exp - filter the rows returned

Returns: [auto_pilot_task_status!]!


auto_pilot_task_status_aggregate

fetch aggregated fields from the table: "auto_pilot_task_status"

Arguments:

  • distinct_on: [auto_pilot_task_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_pilot_task_status_order_by!] - sort the rows by one or more columns
  • where: auto_pilot_task_status_bool_exp - filter the rows returned

Returns: auto_pilot_task_status_aggregate!


auto_pilot_task_status_by_pk

fetch data from the table: "auto_pilot_task_status" using primary key columns

Arguments:

  • value: String!

Returns: auto_pilot_task_status


auto_playbook

fetch data from the table: "auto_playbook"

Arguments:

  • distinct_on: [auto_playbook_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_bool_exp - filter the rows returned

Returns: [auto_playbook!]!


auto_playbook_actions

fetch data from the table: "auto_playbook_actions"

Arguments:

  • distinct_on: [auto_playbook_actions_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_actions_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_actions_bool_exp - filter the rows returned

Returns: [auto_playbook_actions!]!


auto_playbook_actions_aggregate

fetch aggregated fields from the table: "auto_playbook_actions"

Arguments:

  • distinct_on: [auto_playbook_actions_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_actions_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_actions_bool_exp - filter the rows returned

Returns: auto_playbook_actions_aggregate!


auto_playbook_actions_by_pk

fetch data from the table: "auto_playbook_actions" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_playbook_actions


auto_playbook_aggregate

fetch aggregated fields from the table: "auto_playbook"

Arguments:

  • distinct_on: [auto_playbook_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_bool_exp - filter the rows returned

Returns: auto_playbook_aggregate!


auto_playbook_by_pk

fetch data from the table: "auto_playbook" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_playbook


auto_playbook_execution_status

fetch data from the table: "auto_playbook_execution_status"

Arguments:

  • distinct_on: [auto_playbook_execution_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_execution_status_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_execution_status_bool_exp - filter the rows returned

Returns: [auto_playbook_execution_status!]!


auto_playbook_execution_status_aggregate

fetch aggregated fields from the table: "auto_playbook_execution_status"

Arguments:

  • distinct_on: [auto_playbook_execution_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_execution_status_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_execution_status_bool_exp - filter the rows returned

Returns: auto_playbook_execution_status_aggregate!


auto_playbook_execution_status_by_pk

fetch data from the table: "auto_playbook_execution_status" using primary key columns

Arguments:

  • values: String!

Returns: auto_playbook_execution_status


auto_playbook_executions

An array relationship

Arguments:

  • distinct_on: [auto_playbook_executions_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_executions_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_executions_bool_exp - filter the rows returned

Returns: [auto_playbook_executions!]!


auto_playbook_executions_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [auto_playbook_executions_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_executions_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_executions_bool_exp - filter the rows returned

Returns: auto_playbook_executions_aggregate!


auto_playbook_executions_by_pk

fetch data from the table: "auto_playbook_executions" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_playbook_executions


auto_playbook_grouping_v2

Arguments:

  • where: PlaybookGroupWhereRequest

Returns: PlaybookGroupResponse


auto_playbook_status

fetch data from the table: "auto_playbook_status"

Arguments:

  • distinct_on: [auto_playbook_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_status_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_status_bool_exp - filter the rows returned

Returns: [auto_playbook_status!]!


auto_playbook_status_aggregate

fetch aggregated fields from the table: "auto_playbook_status"

Arguments:

  • distinct_on: [auto_playbook_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_status_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_status_bool_exp - filter the rows returned

Returns: auto_playbook_status_aggregate!


auto_playbook_status_by_pk

fetch data from the table: "auto_playbook_status" using primary key columns

Arguments:

  • value: String!

Returns: auto_playbook_status


auto_playbook_task

fetch data from the table: "auto_playbook_task"

Arguments:

  • distinct_on: [auto_playbook_task_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_task_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_task_bool_exp - filter the rows returned

Returns: [auto_playbook_task!]!


auto_playbook_task_aggregate

fetch aggregated fields from the table: "auto_playbook_task"

Arguments:

  • distinct_on: [auto_playbook_task_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_task_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_task_bool_exp - filter the rows returned

Returns: auto_playbook_task_aggregate!


auto_playbook_task_by_pk

fetch data from the table: "auto_playbook_task" using primary key columns

Arguments:

  • id: uuid!

Returns: auto_playbook_task


auto_playbook_task_status

fetch data from the table: "auto_playbook_task_status"

Arguments:

  • distinct_on: [auto_playbook_task_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_task_status_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_task_status_bool_exp - filter the rows returned

Returns: [auto_playbook_task_status!]!


auto_playbook_task_status_aggregate

fetch aggregated fields from the table: "auto_playbook_task_status"

Arguments:

  • distinct_on: [auto_playbook_task_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auto_playbook_task_status_order_by!] - sort the rows by one or more columns
  • where: auto_playbook_task_status_bool_exp - filter the rows returned

Returns: auto_playbook_task_status_aggregate!


auto_playbook_task_status_by_pk

fetch data from the table: "auto_playbook_task_status" using primary key columns

Arguments:

  • value: String!

Returns: auto_playbook_task_status


auto_playbook_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: PlaybookWhereRequest

Returns: PlaybookResponse


autopilot_attributes

fetch data from the table: "autopilot_attributes"

Arguments:

  • distinct_on: [autopilot_attributes_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [autopilot_attributes_order_by!] - sort the rows by one or more columns
  • where: autopilot_attributes_bool_exp - filter the rows returned

Returns: [autopilot_attributes!]!


autopilot_attributes_aggregate

fetch aggregated fields from the table: "autopilot_attributes"

Arguments:

  • distinct_on: [autopilot_attributes_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [autopilot_attributes_order_by!] - sort the rows by one or more columns
  • where: autopilot_attributes_bool_exp - filter the rows returned

Returns: autopilot_attributes_aggregate!


autopilot_attributes_by_pk

fetch data from the table: "autopilot_attributes" using primary key columns

Arguments:

  • id: uuid!

Returns: autopilot_attributes


workflow_get

Arguments:

  • request: WorkflowGetRequest

Returns: Workflow


workflow_get_count

Arguments:

  • request: WorkflowCountRequest!

Returns: WorkflowCountResponse


workflow_get_execution

Arguments:

  • request: WorkflowExecutionGetRequest!

Returns: WorkflowExecutionGetResponse


workflow_get_execution_count

Arguments:

  • request: WorkflowExecutionCountRequest!

Returns: WorkflowExecutionCountResponse


workflow_list

Arguments:

  • request: WorkflowListRequest!

Returns: WorkflowListResponse


workflow_list_executions

Arguments:

  • request: WorkflowExecutionListRequest!

Returns: WorkflowExecutionListResponse


workflow_list_taskdefinitions

Arguments:

  • params: WorkflowTaskDefinitionListRequest!

Returns: WorkflowTaskDefinitionListResponse


Agents

Agent deployment, configuration, playbooks, tasks, and audit logs.

agent

fetch data from the table: "agent"

Arguments:

  • distinct_on: [agent_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_order_by!] - sort the rows by one or more columns
  • where: agent_bool_exp - filter the rows returned

Returns: [agent!]!


agent_aggregate

fetch aggregated fields from the table: "agent"

Arguments:

  • distinct_on: [agent_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_order_by!] - sort the rows by one or more columns
  • where: agent_bool_exp - filter the rows returned

Returns: agent_aggregate!


agent_audit_log

fetch data from the table: "agent_audit_log"

Arguments:

  • distinct_on: [agent_audit_log_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_audit_log_order_by!] - sort the rows by one or more columns
  • where: agent_audit_log_bool_exp - filter the rows returned

Returns: [agent_audit_log!]!


agent_audit_log_aggregate

fetch aggregated fields from the table: "agent_audit_log"

Arguments:

  • distinct_on: [agent_audit_log_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_audit_log_order_by!] - sort the rows by one or more columns
  • where: agent_audit_log_bool_exp - filter the rows returned

Returns: agent_audit_log_aggregate!


agent_audit_log_by_pk

fetch data from the table: "agent_audit_log" using primary key columns

Arguments:

  • id: uuid!

Returns: agent_audit_log


agent_by_pk

fetch data from the table: "agent" using primary key columns

Arguments:

  • id: uuid!

Returns: agent


agent_playbook

fetch data from the table: "agent_playbook"

Arguments:

  • distinct_on: [agent_playbook_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_bool_exp - filter the rows returned

Returns: [agent_playbook!]!


agent_playbook_action

fetch data from the table: "agent_playbook_action"

Arguments:

  • distinct_on: [agent_playbook_action_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_action_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_action_bool_exp - filter the rows returned

Returns: [agent_playbook_action!]!


agent_playbook_action_aggregate

fetch aggregated fields from the table: "agent_playbook_action"

Arguments:

  • distinct_on: [agent_playbook_action_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_action_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_action_bool_exp - filter the rows returned

Returns: agent_playbook_action_aggregate!


agent_playbook_action_by_pk

fetch data from the table: "agent_playbook_action" using primary key columns

Arguments:

  • name: String!

Returns: agent_playbook_action


agent_playbook_aggregate

fetch aggregated fields from the table: "agent_playbook"

Arguments:

  • distinct_on: [agent_playbook_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_bool_exp - filter the rows returned

Returns: agent_playbook_aggregate!


agent_playbook_by_pk

fetch data from the table: "agent_playbook" using primary key columns

Arguments:

  • id: uuid!

Returns: agent_playbook


agent_playbook_processor

fetch data from the table: "agent_playbook_processor"

Arguments:

  • distinct_on: [agent_playbook_processor_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_processor_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_processor_bool_exp - filter the rows returned

Returns: [agent_playbook_processor!]!


agent_playbook_processor_aggregate

fetch aggregated fields from the table: "agent_playbook_processor"

Arguments:

  • distinct_on: [agent_playbook_processor_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_processor_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_processor_bool_exp - filter the rows returned

Returns: agent_playbook_processor_aggregate!


agent_playbook_processor_by_pk

fetch data from the table: "agent_playbook_processor" using primary key columns

Arguments:

  • name: String!

Returns: agent_playbook_processor


agent_playbook_source

fetch data from the table: "agent_playbook_source"

Arguments:

  • distinct_on: [agent_playbook_source_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_source_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_source_bool_exp - filter the rows returned

Returns: [agent_playbook_source!]!


agent_playbook_source_aggregate

fetch aggregated fields from the table: "agent_playbook_source"

Arguments:

  • distinct_on: [agent_playbook_source_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_source_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_source_bool_exp - filter the rows returned

Returns: agent_playbook_source_aggregate!


agent_playbook_source_by_pk

fetch data from the table: "agent_playbook_source" using primary key columns

Arguments:

  • value: String!

Returns: agent_playbook_source


agent_playbook_trigger

fetch data from the table: "agent_playbook_trigger"

Arguments:

  • distinct_on: [agent_playbook_trigger_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_trigger_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_trigger_bool_exp - filter the rows returned

Returns: [agent_playbook_trigger!]!


agent_playbook_trigger_aggregate

fetch aggregated fields from the table: "agent_playbook_trigger"

Arguments:

  • distinct_on: [agent_playbook_trigger_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_playbook_trigger_order_by!] - sort the rows by one or more columns
  • where: agent_playbook_trigger_bool_exp - filter the rows returned

Returns: agent_playbook_trigger_aggregate!


agent_playbook_trigger_by_pk

fetch data from the table: "agent_playbook_trigger" using primary key columns

Arguments:

  • name: String!

Returns: agent_playbook_trigger


agent_task

fetch data from the table: "agent_task"

Arguments:

  • distinct_on: [agent_task_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_task_order_by!] - sort the rows by one or more columns
  • where: agent_task_bool_exp - filter the rows returned

Returns: [agent_task!]!


agent_task_aggregate

fetch aggregated fields from the table: "agent_task"

Arguments:

  • distinct_on: [agent_task_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [agent_task_order_by!] - sort the rows by one or more columns
  • where: agent_task_bool_exp - filter the rows returned

Returns: agent_task_aggregate!


agent_task_by_pk

fetch data from the table: "agent_task" using primary key columns

Arguments:

  • id: uuid!

Returns: agent_task


AI & LLM

AI conversations, knowledge bases, RAG, LLM agents, tools, and root cause analysis.

ai_budget_status

Get budget status for an account

Arguments:

  • request: AIBudgetStatusRequest!

Returns: AIBudgetStatusResponse


ai_generate_workflow

Arguments:

  • request: AIGenerateWorkflowRequest!

Returns: AIGenerateWorkflowResponse


ai_get_gc

Get a specific global context by ID

Arguments:

  • request: GetGCRequest!

Returns: GetGCResponse


ai_get_kb

List all knowledge bases mapped to an agent

Arguments:

  • request: GetKBRequest!

Returns: GetKBResponse


ai_get_model_config

Get model configuration for a conversation

Arguments:

  • request: AIGetModelConfigRequest!

Returns: AIGetModelConfigResponse


ai_get_rca

Hit LLM to get RCA for event

Arguments:

  • account_id: String!
  • event_id: String!
  • generate: Boolean!

Returns: AIResponse


ai_get_recommendation

Hit OpenAI to get suggestions on log

Arguments:

  • account_id: String!
  • event_id: String!
  • recommendation_type: String!

Returns: AIResponse


ai_list_agent_kbs

List all knowledge bases for an agent

Arguments:

  • request: ListAgentKBsRequest!

Returns: ListAgentKBsResponse


ai_list_agents

Arguments:

  • request: ListAgentRequest!

Returns: ListAgentResponse


ai_list_agents_with_kb_counts

List all agents with their KB mapping counts

Arguments:

  • request: ListAgentsWithKBCountsRequest!

Returns: ListAgentsWithKBCountsResponse


ai_list_gc

List all global contexts for an account

Arguments:

  • request: ListGCRequest!

Returns: ListGCResponse


ai_list_kb

List all knowledge bases for an account

Arguments:

  • request: ListKBRequest!

Returns: ListKBResponse


ai_list_kb_agent_mappings

List all KB-agent mappings for an account

Arguments:

  • request: ListKBAgentMappingsRequest!

Returns: ListKBAgentMappingsResponse


ai_list_kb_agents

List all agents that a specific KB is mapped to

Arguments:

  • request: ListKBAgentsRequest!

Returns: ListKBAgentsResponse


ai_list_memory

Arguments:

  • request: ListAIMemoryRequest!

Returns: ListAIMemoryResponse


ai_list_models

List all available LLM models for conversation

Arguments:

  • request: AIListModelsRequest!

Returns: AIListModelsResponse


ai_list_references

Arguments:

  • request: ListAIReferencesRequest!

Returns: ListAIReferencesResponse


ai_list_tools

Arguments:

  • request: ListToolRequest!

Returns: ListToolResponse


kg_get_filter_options

get available filter options for knowledge graph (labels, attributes, node types, accounts)

Arguments:

  • request: jsonb

Returns: kg_get_filter_options_output


kg_get_filter_values

get values for a specific label or attribute filter key

Arguments:

  • request: kg_get_filter_values_input!

Returns: kg_get_filter_values_output


knowledge_base

fetch data from the table: "knowledge_base"

Arguments:

  • distinct_on: [knowledge_base_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_base_order_by!] - sort the rows by one or more columns
  • where: knowledge_base_bool_exp - filter the rows returned

Returns: [knowledge_base!]!


knowledge_base_aggregate

fetch aggregated fields from the table: "knowledge_base"

Arguments:

  • distinct_on: [knowledge_base_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_base_order_by!] - sort the rows by one or more columns
  • where: knowledge_base_bool_exp - filter the rows returned

Returns: knowledge_base_aggregate!


knowledge_base_by_pk

fetch data from the table: "knowledge_base" using primary key columns

Arguments:

  • id: uuid!

Returns: knowledge_base


knowledge_graph_edge

fetch data from the table: "knowledge_graph_edge"

Arguments:

  • distinct_on: [knowledge_graph_edge_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_edge_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_edge_bool_exp - filter the rows returned

Returns: [knowledge_graph_edge!]!


knowledge_graph_edge_aggregate

fetch aggregated fields from the table: "knowledge_graph_edge"

Arguments:

  • distinct_on: [knowledge_graph_edge_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_edge_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_edge_bool_exp - filter the rows returned

Returns: knowledge_graph_edge_aggregate!


knowledge_graph_edge_by_pk

fetch data from the table: "knowledge_graph_edge" using primary key columns

Arguments:

  • id: uuid!

Returns: knowledge_graph_edge


knowledge_graph_metadata

fetch data from the table: "knowledge_graph_metadata"

Arguments:

  • distinct_on: [knowledge_graph_metadata_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_metadata_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_metadata_bool_exp - filter the rows returned

Returns: [knowledge_graph_metadata!]!


knowledge_graph_metadata_aggregate

fetch aggregated fields from the table: "knowledge_graph_metadata"

Arguments:

  • distinct_on: [knowledge_graph_metadata_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_metadata_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_metadata_bool_exp - filter the rows returned

Returns: knowledge_graph_metadata_aggregate!


knowledge_graph_metadata_by_pk

fetch data from the table: "knowledge_graph_metadata" using primary key columns

Arguments:

  • id: uuid!

Returns: knowledge_graph_metadata


knowledge_graph_node

fetch data from the table: "knowledge_graph_node"

Arguments:

  • distinct_on: [knowledge_graph_node_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_node_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_node_bool_exp - filter the rows returned

Returns: [knowledge_graph_node!]!


knowledge_graph_node_aggregate

fetch aggregated fields from the table: "knowledge_graph_node"

Arguments:

  • distinct_on: [knowledge_graph_node_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_node_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_node_bool_exp - filter the rows returned

Returns: knowledge_graph_node_aggregate!


knowledge_graph_node_by_pk

fetch data from the table: "knowledge_graph_node" using primary key columns

Arguments:

  • id: uuid!

Returns: knowledge_graph_node


knowledge_graph_relationship_types

fetch data from the table: "knowledge_graph_relationship_types"

Arguments:

  • distinct_on: [knowledge_graph_relationship_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_relationship_types_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_relationship_types_bool_exp - filter the rows returned

Returns: [knowledge_graph_relationship_types!]!


knowledge_graph_relationship_types_aggregate

fetch aggregated fields from the table: "knowledge_graph_relationship_types"

Arguments:

  • distinct_on: [knowledge_graph_relationship_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_relationship_types_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_relationship_types_bool_exp - filter the rows returned

Returns: knowledge_graph_relationship_types_aggregate!


knowledge_graph_relationship_types_by_pk

fetch data from the table: "knowledge_graph_relationship_types" using primary key columns

Arguments:

  • name: String!

Returns: knowledge_graph_relationship_types


knowledge_graph_tenant_filters

fetch data from the table: "knowledge_graph_tenant_filters"

Arguments:

  • distinct_on: [knowledge_graph_tenant_filters_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_tenant_filters_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_tenant_filters_bool_exp - filter the rows returned

Returns: [knowledge_graph_tenant_filters!]!


knowledge_graph_tenant_filters_aggregate

fetch aggregated fields from the table: "knowledge_graph_tenant_filters"

Arguments:

  • distinct_on: [knowledge_graph_tenant_filters_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [knowledge_graph_tenant_filters_order_by!] - sort the rows by one or more columns
  • where: knowledge_graph_tenant_filters_bool_exp - filter the rows returned

Returns: knowledge_graph_tenant_filters_aggregate!


knowledge_graph_tenant_filters_by_pk

fetch data from the table: "knowledge_graph_tenant_filters" using primary key columns

Arguments:

  • id: uuid!

Returns: knowledge_graph_tenant_filters


llm_agents

fetch data from the table: "llm_agents"

Arguments:

  • distinct_on: [llm_agents_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_agents_order_by!] - sort the rows by one or more columns
  • where: llm_agents_bool_exp - filter the rows returned

Returns: [llm_agents!]!


llm_agents_aggregate

fetch aggregated fields from the table: "llm_agents"

Arguments:

  • distinct_on: [llm_agents_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_agents_order_by!] - sort the rows by one or more columns
  • where: llm_agents_bool_exp - filter the rows returned

Returns: llm_agents_aggregate!


llm_agents_by_pk

fetch data from the table: "llm_agents" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_agents


llm_agents_installation

fetch data from the table: "llm_agents_installation"

Arguments:

  • distinct_on: [llm_agents_installation_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_agents_installation_order_by!] - sort the rows by one or more columns
  • where: llm_agents_installation_bool_exp - filter the rows returned

Returns: [llm_agents_installation!]!


llm_agents_installation_aggregate

fetch aggregated fields from the table: "llm_agents_installation"

Arguments:

  • distinct_on: [llm_agents_installation_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_agents_installation_order_by!] - sort the rows by one or more columns
  • where: llm_agents_installation_bool_exp - filter the rows returned

Returns: llm_agents_installation_aggregate!


llm_agents_installation_by_pk

fetch data from the table: "llm_agents_installation" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_agents_installation


llm_conversation_agent

fetch data from the table: "llm_conversation_agent"

Arguments:

  • distinct_on: [llm_conversation_agent_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_agent_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_agent_bool_exp - filter the rows returned

Returns: [llm_conversation_agent!]!


llm_conversation_agent_aggregate

fetch aggregated fields from the table: "llm_conversation_agent"

Arguments:

  • distinct_on: [llm_conversation_agent_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_agent_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_agent_bool_exp - filter the rows returned

Returns: llm_conversation_agent_aggregate!


llm_conversation_agent_by_pk

fetch data from the table: "llm_conversation_agent" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversation_agent


llm_conversation_agent_critiques

fetch data from the table: "llm_conversation_agent_critiques"

Arguments:

  • distinct_on: [llm_conversation_agent_critiques_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_agent_critiques_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_agent_critiques_bool_exp - filter the rows returned

Returns: [llm_conversation_agent_critiques!]!


llm_conversation_agent_critiques_aggregate

fetch aggregated fields from the table: "llm_conversation_agent_critiques"

Arguments:

  • distinct_on: [llm_conversation_agent_critiques_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_agent_critiques_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_agent_critiques_bool_exp - filter the rows returned

Returns: llm_conversation_agent_critiques_aggregate!


llm_conversation_agent_critiques_by_pk

fetch data from the table: "llm_conversation_agent_critiques" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversation_agent_critiques


llm_conversation_feedback

fetch data from the table: "llm_conversation_feedback"

Arguments:

  • distinct_on: [llm_conversation_feedback_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_feedback_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_feedback_bool_exp - filter the rows returned

Returns: [llm_conversation_feedback!]!


llm_conversation_feedback_aggregate

fetch aggregated fields from the table: "llm_conversation_feedback"

Arguments:

  • distinct_on: [llm_conversation_feedback_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_feedback_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_feedback_bool_exp - filter the rows returned

Returns: llm_conversation_feedback_aggregate!


llm_conversation_feedback_by_pk

fetch data from the table: "llm_conversation_feedback" using primary key columns

Arguments:

  • id: Int!

Returns: llm_conversation_feedback


llm_conversation_feedback_v2

get feedback submitted by user via session id

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: GetFeedbackWhereRequest

Returns: GetFeedbackResponse


llm_conversation_history

fetch data from the table: "llm_conversation_history"

Arguments:

  • distinct_on: [llm_conversation_history_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_history_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_history_bool_exp - filter the rows returned

Returns: [llm_conversation_history!]!


llm_conversation_history_aggregate

fetch aggregated fields from the table: "llm_conversation_history"

Arguments:

  • distinct_on: [llm_conversation_history_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_history_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_history_bool_exp - filter the rows returned

Returns: llm_conversation_history_aggregate!


llm_conversation_history_by_pk

fetch data from the table: "llm_conversation_history" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversation_history


llm_conversation_messages

An array relationship

Arguments:

  • distinct_on: [llm_conversation_messages_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_messages_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_messages_bool_exp - filter the rows returned

Returns: [llm_conversation_messages!]!


llm_conversation_messages_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [llm_conversation_messages_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_messages_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_messages_bool_exp - filter the rows returned

Returns: llm_conversation_messages_aggregate!


llm_conversation_messages_by_pk

fetch data from the table: "llm_conversation_messages" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversation_messages


llm_conversation_saved

fetch data from the table: "llm_conversation_saved"

Arguments:

  • distinct_on: [llm_conversation_saved_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_saved_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_saved_bool_exp - filter the rows returned

Returns: [llm_conversation_saved!]!


llm_conversation_saved_aggregate

fetch aggregated fields from the table: "llm_conversation_saved"

Arguments:

  • distinct_on: [llm_conversation_saved_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_saved_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_saved_bool_exp - filter the rows returned

Returns: llm_conversation_saved_aggregate!


llm_conversation_saved_by_pk

fetch data from the table: "llm_conversation_saved" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversation_saved


llm_conversation_tool_calls

An array relationship

Arguments:

  • distinct_on: [llm_conversation_tool_calls_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_tool_calls_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_tool_calls_bool_exp - filter the rows returned

Returns: [llm_conversation_tool_calls!]!


llm_conversation_tool_calls_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [llm_conversation_tool_calls_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversation_tool_calls_order_by!] - sort the rows by one or more columns
  • where: llm_conversation_tool_calls_bool_exp - filter the rows returned

Returns: llm_conversation_tool_calls_aggregate!


llm_conversation_tool_calls_by_pk

fetch data from the table: "llm_conversation_tool_calls" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversation_tool_calls


llm_conversations

An array relationship

Arguments:

  • distinct_on: [llm_conversations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversations_order_by!] - sort the rows by one or more columns
  • where: llm_conversations_bool_exp - filter the rows returned

Returns: [llm_conversations!]!


llm_conversations_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [llm_conversations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_conversations_order_by!] - sort the rows by one or more columns
  • where: llm_conversations_bool_exp - filter the rows returned

Returns: llm_conversations_aggregate!


llm_conversations_by_pk

fetch data from the table: "llm_conversations" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_conversations


llm_functions

fetch data from the table: "llm_functions"

Arguments:

  • distinct_on: [llm_functions_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_functions_order_by!] - sort the rows by one or more columns
  • where: llm_functions_bool_exp - filter the rows returned

Returns: [llm_functions!]!


llm_functions_aggregate

fetch aggregated fields from the table: "llm_functions"

Arguments:

  • distinct_on: [llm_functions_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_functions_order_by!] - sort the rows by one or more columns
  • where: llm_functions_bool_exp - filter the rows returned

Returns: llm_functions_aggregate!


llm_functions_by_pk

fetch data from the table: "llm_functions" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_functions


llm_model_pricing

fetch data from the table: "llm_model_pricing"

Arguments:

  • distinct_on: [llm_model_pricing_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_model_pricing_order_by!] - sort the rows by one or more columns
  • where: llm_model_pricing_bool_exp - filter the rows returned

Returns: [llm_model_pricing!]!


llm_model_pricing_aggregate

fetch aggregated fields from the table: "llm_model_pricing"

Arguments:

  • distinct_on: [llm_model_pricing_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_model_pricing_order_by!] - sort the rows by one or more columns
  • where: llm_model_pricing_bool_exp - filter the rows returned

Returns: llm_model_pricing_aggregate!


llm_model_pricing_by_pk

fetch data from the table: "llm_model_pricing" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_model_pricing


llm_rag_audit

fetch data from the table: "llm_rag_audit"

Arguments:

  • distinct_on: [llm_rag_audit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_rag_audit_order_by!] - sort the rows by one or more columns
  • where: llm_rag_audit_bool_exp - filter the rows returned

Returns: [llm_rag_audit!]!


llm_rag_audit_aggregate

fetch aggregated fields from the table: "llm_rag_audit"

Arguments:

  • distinct_on: [llm_rag_audit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_rag_audit_order_by!] - sort the rows by one or more columns
  • where: llm_rag_audit_bool_exp - filter the rows returned

Returns: llm_rag_audit_aggregate!


llm_rag_audit_by_pk

fetch data from the table: "llm_rag_audit" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_rag_audit


llm_rag_grouping_v2

Arguments:

  • where: LLMRagGroupingWhereRequest

Returns: LLMRagGroupingResponse


llm_rags

fetch data from the table: "llm_rags"

Arguments:

  • distinct_on: [llm_rags_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_rags_order_by!] - sort the rows by one or more columns
  • where: llm_rags_bool_exp - filter the rows returned

Returns: [llm_rags!]!


llm_rags_aggregate

fetch aggregated fields from the table: "llm_rags"

Arguments:

  • distinct_on: [llm_rags_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [llm_rags_order_by!] - sort the rows by one or more columns
  • where: llm_rags_bool_exp - filter the rows returned

Returns: llm_rags_aggregate!


llm_rags_by_pk

fetch data from the table: "llm_rags" using primary key columns

Arguments:

  • id: uuid!

Returns: llm_rags


Observability

Logs, metrics, traces, application profiles, and service maps.

application_group

fetch data from the table: "application_group"

Arguments:

  • distinct_on: [application_group_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [application_group_order_by!] - sort the rows by one or more columns
  • where: application_group_bool_exp - filter the rows returned

Returns: [application_group!]!


application_group_aggregate

fetch aggregated fields from the table: "application_group"

Arguments:

  • distinct_on: [application_group_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [application_group_order_by!] - sort the rows by one or more columns
  • where: application_group_bool_exp - filter the rows returned

Returns: application_group_aggregate!


application_group_by_pk

fetch data from the table: "application_group" using primary key columns

Arguments:

  • id: uuid!

Returns: application_group


application_group_mapping

fetch data from the table: "application_group_mapping"

Arguments:

  • distinct_on: [application_group_mapping_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [application_group_mapping_order_by!] - sort the rows by one or more columns
  • where: application_group_mapping_bool_exp - filter the rows returned

Returns: [application_group_mapping!]!


application_group_mapping_aggregate

fetch aggregated fields from the table: "application_group_mapping"

Arguments:

  • distinct_on: [application_group_mapping_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [application_group_mapping_order_by!] - sort the rows by one or more columns
  • where: application_group_mapping_bool_exp - filter the rows returned

Returns: application_group_mapping_aggregate!


application_group_mapping_by_pk

fetch data from the table: "application_group_mapping" using primary key columns

Arguments:

  • id: uuid!

Returns: application_group_mapping


application_profile

fetch data from the table: "application_profile"

Arguments:

  • distinct_on: [application_profile_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [application_profile_order_by!] - sort the rows by one or more columns
  • where: application_profile_bool_exp - filter the rows returned

Returns: [application_profile!]!


application_profile_aggregate

fetch aggregated fields from the table: "application_profile"

Arguments:

  • distinct_on: [application_profile_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [application_profile_order_by!] - sort the rows by one or more columns
  • where: application_profile_bool_exp - filter the rows returned

Returns: application_profile_aggregate!


application_profile_by_pk

fetch data from the table: "application_profile" using primary key columns

Arguments:

  • id: uuid!

Returns: application_profile


application_profile_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: ApplicationProfileWhereRequest

Returns: ApplicationProfileResponse


log_group

Arguments:

  • request: LogGroupRequest!

Returns: OutputMetricQuery


log_index_field

for ES get field of indexes

Arguments:

  • request: LogIndexFieldRequest!

Returns: [LogIndexFieldResponse]


logs_list_label_values

Fetch Log Label Values

Arguments:

  • request: FetchLogLabelValuesRequest!

Returns: [OutputLogLabelValue]


logs_list_labels

Fetch Log Labels

Arguments:

  • request: FetchLogLabelRequest!

Returns: [OutputLogLabel]


logs_query

Fetch Logs

Arguments:

  • request: FetchLogRequest!

Returns: [FetchLogResponse]


metric_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: MetricGroupingsWhereRequest

Returns: MetricGroupingsResponse


metrics_list

Arguments:

  • request: FetchMetricsListRequest!

Returns: [OutputMetrics]


metrics_list_label_values

Arguments:

  • request: FetchMetricsLabelValueRequest!

Returns: [OutputMetricsLabelValues]


metrics_list_labels

Arguments:

  • request: FetchMetricLabelsRequest!

Returns: [OutputMetricLabels]


metrics_query

Arguments:

  • request: FetchMetricsRequest!

Returns: OutputMetricQuery


metrics_query_utilisation

Arguments:

  • request: MetricsQueryUtilisationRequest!

Returns: OutputMetricQuery


metrics_summary

fetch data from the table: "metrics_summary"

Arguments:

  • distinct_on: [metrics_summary_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [metrics_summary_order_by!] - sort the rows by one or more columns
  • where: metrics_summary_bool_exp - filter the rows returned

Returns: [metrics_summary!]!


metrics_summary_aggregate

fetch aggregated fields from the table: "metrics_summary"

Arguments:

  • distinct_on: [metrics_summary_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [metrics_summary_order_by!] - sort the rows by one or more columns
  • where: metrics_summary_bool_exp - filter the rows returned

Returns: metrics_summary_aggregate!


metrics_summary_by_pk

fetch data from the table: "metrics_summary" using primary key columns

Arguments:

  • id: uuid!

Returns: metrics_summary


ml_get_metrics

To get metrics from ml-server

Arguments:

  • account: String!
  • deployment: String!
  • namespace: String!

Returns: metrics_response


ml_get_recommendation

Hit ML Server to get Recommendations

Arguments:

  • account: String!
  • container: String
  • deployment: String!
  • namespace: String!
  • persist_recommendation: Boolean
  • resource_id: String!
  • tenant: String!

Returns: recommendation_response


traces_counts

Arguments:

  • request: TracesV3Input!

Returns: TracesV3CountResponse


traces_grouping_count_v3

Arguments:

  • request: TracesV3Input!

Returns: TracesGroupV3CountResponse


traces_grouping_v3

get traces aggregated data for workloads

Arguments:

  • request: TracesV3Input!

Returns: [TraceGroupingValues]!


traces_groupings_v2

Trace grouping can also be used for counting

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String]
  • having: TraceGroupingWhereRequest
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: TraceGroupingWhereRequest

Returns: TracesGroupResponse


traces_heat_map

Arguments:

  • request: TraceHeatMapInput!

Returns: [TraceHeatMapOutput]


traces_heatmap_v2

Trace heatmap

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: TraceHeatMapWhereRequest

Returns: TracesHeatMapResponse


traces_label_values

Arguments:

  • request: TracesV3LabelValuesRequest!

Returns: TracesV3LabelValuesResponse


traces_query

Arguments:

  • request: TracesV3Input!

Returns: [TracesOutputResponse]!


traces_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: TraceWhereRequest

Returns: TracesResponse


Tickets

Ticket creation, management, and integrations with external issue trackers.

ticket_get_comments

Arguments:

  • object: TicketGetCommentsObjectInput!

Returns: TicketComments!


ticket_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String]
  • group_by: [String]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest]
  • where: TicketGroupingsWhereRequest

Returns: TicketGroupingsResponse


ticket_severity_type

fetch data from the table: "ticket_severity_type"

Arguments:

  • distinct_on: [ticket_severity_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ticket_severity_type_order_by!] - sort the rows by one or more columns
  • where: ticket_severity_type_bool_exp - filter the rows returned

Returns: [ticket_severity_type!]!


ticket_severity_type_aggregate

fetch aggregated fields from the table: "ticket_severity_type"

Arguments:

  • distinct_on: [ticket_severity_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ticket_severity_type_order_by!] - sort the rows by one or more columns
  • where: ticket_severity_type_bool_exp - filter the rows returned

Returns: ticket_severity_type_aggregate!


ticket_severity_type_by_pk

fetch data from the table: "ticket_severity_type" using primary key columns

Arguments:

  • value: String!

Returns: ticket_severity_type


ticket_source_type

fetch data from the table: "ticket_source_type"

Arguments:

  • distinct_on: [ticket_source_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ticket_source_type_order_by!] - sort the rows by one or more columns
  • where: ticket_source_type_bool_exp - filter the rows returned

Returns: [ticket_source_type!]!


ticket_source_type_aggregate

fetch aggregated fields from the table: "ticket_source_type"

Arguments:

  • distinct_on: [ticket_source_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ticket_source_type_order_by!] - sort the rows by one or more columns
  • where: ticket_source_type_bool_exp - filter the rows returned

Returns: ticket_source_type_aggregate!


ticket_source_type_by_pk

fetch data from the table: "ticket_source_type" using primary key columns

Arguments:

  • value: String!

Returns: ticket_source_type


ticket_tool_types

fetch data from the table: "ticket_tool_types"

Arguments:

  • distinct_on: [ticket_tool_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ticket_tool_types_order_by!] - sort the rows by one or more columns
  • where: ticket_tool_types_bool_exp - filter the rows returned

Returns: [ticket_tool_types!]!


ticket_tool_types_aggregate

fetch aggregated fields from the table: "ticket_tool_types"

Arguments:

  • distinct_on: [ticket_tool_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ticket_tool_types_order_by!] - sort the rows by one or more columns
  • where: ticket_tool_types_bool_exp - filter the rows returned

Returns: ticket_tool_types_aggregate!


ticket_tool_types_by_pk

fetch data from the table: "ticket_tool_types" using primary key columns

Arguments:

  • value: String!

Returns: ticket_tool_types


tickets

An array relationship

Arguments:

  • distinct_on: [tickets_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tickets_order_by!] - sort the rows by one or more columns
  • where: tickets_bool_exp - filter the rows returned

Returns: [tickets!]!


tickets_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [tickets_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tickets_order_by!] - sort the rows by one or more columns
  • where: tickets_bool_exp - filter the rows returned

Returns: tickets_aggregate!


tickets_by_pk

fetch data from the table: "tickets" using primary key columns

Arguments:

  • id: uuid!

Returns: tickets


tickets_get_create_meta

Arguments:

  • integration_id: String!
  • project_key: String!

Returns: ticket_create_meta_response


tickets_get_field_values

Arguments:

  • integration_id: String!
  • key: String!
  • search_term: String
  • url: String!

Returns: ticket_field_values_response


Notifications

Notification channels, delivery rules, and user notification preferences.

messaging_platforms

fetch data from the table: "messaging_platforms"

Arguments:

  • distinct_on: [messaging_platforms_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [messaging_platforms_order_by!] - sort the rows by one or more columns
  • where: messaging_platforms_bool_exp - filter the rows returned

Returns: [messaging_platforms!]!


messaging_platforms_aggregate

fetch aggregated fields from the table: "messaging_platforms"

Arguments:

  • distinct_on: [messaging_platforms_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [messaging_platforms_order_by!] - sort the rows by one or more columns
  • where: messaging_platforms_bool_exp - filter the rows returned

Returns: messaging_platforms_aggregate!


messaging_platforms_by_pk

fetch data from the table: "messaging_platforms" using primary key columns

Arguments:

  • id: uuid!

Returns: messaging_platforms


messaging_platforms_type

fetch data from the table: "messaging_platforms_type"

Arguments:

  • distinct_on: [messaging_platforms_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [messaging_platforms_type_order_by!] - sort the rows by one or more columns
  • where: messaging_platforms_type_bool_exp - filter the rows returned

Returns: [messaging_platforms_type!]!


messaging_platforms_type_aggregate

fetch aggregated fields from the table: "messaging_platforms_type"

Arguments:

  • distinct_on: [messaging_platforms_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [messaging_platforms_type_order_by!] - sort the rows by one or more columns
  • where: messaging_platforms_type_bool_exp - filter the rows returned

Returns: messaging_platforms_type_aggregate!


messaging_platforms_type_by_pk

fetch data from the table: "messaging_platforms_type" using primary key columns

Arguments:

  • value: String!

Returns: messaging_platforms_type


notification_channel_account_mappings

fetch data from the table: "notification_channel_account_mappings"

Arguments:

  • distinct_on: [notification_channel_account_mappings_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_channel_account_mappings_order_by!] - sort the rows by one or more columns
  • where: notification_channel_account_mappings_bool_exp - filter the rows returned

Returns: [notification_channel_account_mappings!]!


notification_channel_account_mappings_aggregate

fetch aggregated fields from the table: "notification_channel_account_mappings"

Arguments:

  • distinct_on: [notification_channel_account_mappings_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_channel_account_mappings_order_by!] - sort the rows by one or more columns
  • where: notification_channel_account_mappings_bool_exp - filter the rows returned

Returns: notification_channel_account_mappings_aggregate!


notification_channel_account_mappings_by_pk

fetch data from the table: "notification_channel_account_mappings" using primary key columns

Arguments:

  • id: uuid!

Returns: notification_channel_account_mappings


notification_get_channel_list

Get Notification Service Channels

Arguments:

  • platform: String!

Returns: notification_channel_list_resp


notification_get_user_list

Get Notification Service Users

Arguments:

  • platform: String!

Returns: notification_user_list_resp


notification_platform_types

fetch data from the table: "notification_platform_types"

Arguments:

  • distinct_on: [notification_platform_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_platform_types_order_by!] - sort the rows by one or more columns
  • where: notification_platform_types_bool_exp - filter the rows returned

Returns: [notification_platform_types!]!


notification_platform_types_aggregate

fetch aggregated fields from the table: "notification_platform_types"

Arguments:

  • distinct_on: [notification_platform_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_platform_types_order_by!] - sort the rows by one or more columns
  • where: notification_platform_types_bool_exp - filter the rows returned

Returns: notification_platform_types_aggregate!


notification_platform_types_by_pk

fetch data from the table: "notification_platform_types" using primary key columns

Arguments:

  • value: String!

Returns: notification_platform_types


notification_rule_mappings

fetch data from the table: "notification_rule_mappings"

Arguments:

  • distinct_on: [notification_rule_mappings_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_rule_mappings_order_by!] - sort the rows by one or more columns
  • where: notification_rule_mappings_bool_exp - filter the rows returned

Returns: [notification_rule_mappings!]!


notification_rule_mappings_aggregate

fetch aggregated fields from the table: "notification_rule_mappings"

Arguments:

  • distinct_on: [notification_rule_mappings_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_rule_mappings_order_by!] - sort the rows by one or more columns
  • where: notification_rule_mappings_bool_exp - filter the rows returned

Returns: notification_rule_mappings_aggregate!


notification_rule_mappings_by_pk

fetch data from the table: "notification_rule_mappings" using primary key columns

Arguments:

  • id: uuid!

Returns: notification_rule_mappings


notification_rules

fetch data from the table: "notification_rules"

Arguments:

  • distinct_on: [notification_rules_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_rules_order_by!] - sort the rows by one or more columns
  • where: notification_rules_bool_exp - filter the rows returned

Returns: [notification_rules!]!


notification_rules_aggregate

fetch aggregated fields from the table: "notification_rules"

Arguments:

  • distinct_on: [notification_rules_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_rules_order_by!] - sort the rows by one or more columns
  • where: notification_rules_bool_exp - filter the rows returned

Returns: notification_rules_aggregate!


notification_rules_by_pk

fetch data from the table: "notification_rules" using primary key columns

Arguments:

  • id: uuid!

Returns: notification_rules


notification_severity_type

fetch data from the table: "notification_severity_type"

Arguments:

  • distinct_on: [notification_severity_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_severity_type_order_by!] - sort the rows by one or more columns
  • where: notification_severity_type_bool_exp - filter the rows returned

Returns: [notification_severity_type!]!


notification_severity_type_aggregate

fetch aggregated fields from the table: "notification_severity_type"

Arguments:

  • distinct_on: [notification_severity_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_severity_type_order_by!] - sort the rows by one or more columns
  • where: notification_severity_type_bool_exp - filter the rows returned

Returns: notification_severity_type_aggregate!


notification_severity_type_by_pk

fetch data from the table: "notification_severity_type" using primary key columns

Arguments:

  • value: String!

Returns: notification_severity_type


notification_source_type

fetch data from the table: "notification_source_type"

Arguments:

  • distinct_on: [notification_source_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_source_type_order_by!] - sort the rows by one or more columns
  • where: notification_source_type_bool_exp - filter the rows returned

Returns: [notification_source_type!]!


notification_source_type_aggregate

fetch aggregated fields from the table: "notification_source_type"

Arguments:

  • distinct_on: [notification_source_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_source_type_order_by!] - sort the rows by one or more columns
  • where: notification_source_type_bool_exp - filter the rows returned

Returns: notification_source_type_aggregate!


notification_source_type_by_pk

fetch data from the table: "notification_source_type" using primary key columns

Arguments:

  • value: String!

Returns: notification_source_type


notification_user

fetch data from the table: "notification_user"

Arguments:

  • distinct_on: [notification_user_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_user_order_by!] - sort the rows by one or more columns
  • where: notification_user_bool_exp - filter the rows returned

Returns: [notification_user!]!


notification_user_aggregate

fetch aggregated fields from the table: "notification_user"

Arguments:

  • distinct_on: [notification_user_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_user_order_by!] - sort the rows by one or more columns
  • where: notification_user_bool_exp - filter the rows returned

Returns: notification_user_aggregate!


notification_user_by_pk

fetch data from the table: "notification_user" using primary key columns

Arguments:

  • id: uuid!

Returns: notification_user


notification_user_status_type

fetch data from the table: "notification_user_status_type"

Arguments:

  • distinct_on: [notification_user_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_user_status_type_order_by!] - sort the rows by one or more columns
  • where: notification_user_status_type_bool_exp - filter the rows returned

Returns: [notification_user_status_type!]!


notification_user_status_type_aggregate

fetch aggregated fields from the table: "notification_user_status_type"

Arguments:

  • distinct_on: [notification_user_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notification_user_status_type_order_by!] - sort the rows by one or more columns
  • where: notification_user_status_type_bool_exp - filter the rows returned

Returns: notification_user_status_type_aggregate!


notification_user_status_type_by_pk

fetch data from the table: "notification_user_status_type" using primary key columns

Arguments:

  • value: String!

Returns: notification_user_status_type


notifications

An array relationship

Arguments:

  • distinct_on: [notifications_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notifications_order_by!] - sort the rows by one or more columns
  • where: notifications_bool_exp - filter the rows returned

Returns: [notifications!]!


notifications_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [notifications_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notifications_order_by!] - sort the rows by one or more columns
  • where: notifications_bool_exp - filter the rows returned

Returns: notifications_aggregate!


notifications_by_pk

fetch data from the table: "notifications" using primary key columns

Arguments:

  • id: uuid!

Returns: notifications


notifications_delivery_mode_type

fetch data from the table: "notifications_delivery_mode_type"

Arguments:

  • distinct_on: [notifications_delivery_mode_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notifications_delivery_mode_type_order_by!] - sort the rows by one or more columns
  • where: notifications_delivery_mode_type_bool_exp - filter the rows returned

Returns: [notifications_delivery_mode_type!]!


notifications_delivery_mode_type_aggregate

fetch aggregated fields from the table: "notifications_delivery_mode_type"

Arguments:

  • distinct_on: [notifications_delivery_mode_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notifications_delivery_mode_type_order_by!] - sort the rows by one or more columns
  • where: notifications_delivery_mode_type_bool_exp - filter the rows returned

Returns: notifications_delivery_mode_type_aggregate!


notifications_delivery_mode_type_by_pk

fetch data from the table: "notifications_delivery_mode_type" using primary key columns

Arguments:

  • value: String!

Returns: notifications_delivery_mode_type


notifications_frequency_type

fetch data from the table: "notifications_frequency_type"

Arguments:

  • distinct_on: [notifications_frequency_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notifications_frequency_type_order_by!] - sort the rows by one or more columns
  • where: notifications_frequency_type_bool_exp - filter the rows returned

Returns: [notifications_frequency_type!]!


notifications_frequency_type_aggregate

fetch aggregated fields from the table: "notifications_frequency_type"

Arguments:

  • distinct_on: [notifications_frequency_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [notifications_frequency_type_order_by!] - sort the rows by one or more columns
  • where: notifications_frequency_type_bool_exp - filter the rows returned

Returns: notifications_frequency_type_aggregate!


notifications_frequency_type_by_pk

fetch data from the table: "notifications_frequency_type" using primary key columns

Arguments:

  • value: String!

Returns: notifications_frequency_type


Organization & Users

Users, tenants, business units, roles, groups, projects, and authentication.

admin_get_user_tenant_roles_v2

Arguments:

  • limit: Int
  • offset: Int
  • where: UserTenantRolesWhereRequest

Returns: UserTenantRolesResponse


auth_provider_type

fetch data from the table: "auth_provider_type"

Arguments:

  • distinct_on: [auth_provider_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auth_provider_type_order_by!] - sort the rows by one or more columns
  • where: auth_provider_type_bool_exp - filter the rows returned

Returns: [auth_provider_type!]!


auth_provider_type_aggregate

fetch aggregated fields from the table: "auth_provider_type"

Arguments:

  • distinct_on: [auth_provider_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auth_provider_type_order_by!] - sort the rows by one or more columns
  • where: auth_provider_type_bool_exp - filter the rows returned

Returns: auth_provider_type_aggregate!


auth_provider_type_by_pk

fetch data from the table: "auth_provider_type" using primary key columns

Arguments:

  • value: String!

Returns: auth_provider_type


auth_type

fetch data from the table: "auth_type"

Arguments:

  • distinct_on: [auth_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auth_type_order_by!] - sort the rows by one or more columns
  • where: auth_type_bool_exp - filter the rows returned

Returns: [auth_type!]!


auth_type_aggregate

fetch aggregated fields from the table: "auth_type"

Arguments:

  • distinct_on: [auth_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [auth_type_order_by!] - sort the rows by one or more columns
  • where: auth_type_bool_exp - filter the rows returned

Returns: auth_type_aggregate!


auth_type_by_pk

fetch data from the table: "auth_type" using primary key columns

Arguments:

  • value: String!

Returns: auth_type


business_unit

fetch data from the table: "business_unit"

Arguments:

  • distinct_on: [business_unit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [business_unit_order_by!] - sort the rows by one or more columns
  • where: business_unit_bool_exp - filter the rows returned

Returns: [business_unit!]!


business_unit_aggregate

fetch aggregated fields from the table: "business_unit"

Arguments:

  • distinct_on: [business_unit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [business_unit_order_by!] - sort the rows by one or more columns
  • where: business_unit_bool_exp - filter the rows returned

Returns: business_unit_aggregate!


business_unit_by_pk

fetch data from the table: "business_unit" using primary key columns

Arguments:

  • id: uuid!

Returns: business_unit


businessunit_users

An array relationship

Arguments:

  • distinct_on: [businessunit_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [businessunit_users_order_by!] - sort the rows by one or more columns
  • where: businessunit_users_bool_exp - filter the rows returned

Returns: [businessunit_users!]!


businessunit_users_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [businessunit_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [businessunit_users_order_by!] - sort the rows by one or more columns
  • where: businessunit_users_bool_exp - filter the rows returned

Returns: businessunit_users_aggregate!


businessunit_users_by_pk

fetch data from the table: "businessunit_users" using primary key columns

Arguments:

  • id: uuid!

Returns: businessunit_users


project_accounts

An array relationship

Arguments:

  • distinct_on: [project_accounts_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_accounts_order_by!] - sort the rows by one or more columns
  • where: project_accounts_bool_exp - filter the rows returned

Returns: [project_accounts!]!


project_accounts_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [project_accounts_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_accounts_order_by!] - sort the rows by one or more columns
  • where: project_accounts_bool_exp - filter the rows returned

Returns: project_accounts_aggregate!


project_accounts_by_pk

fetch data from the table: "project_accounts" using primary key columns

Arguments:

  • id: uuid!

Returns: project_accounts


project_category_type

fetch data from the table: "project_category_type"

Arguments:

  • distinct_on: [project_category_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_category_type_order_by!] - sort the rows by one or more columns
  • where: project_category_type_bool_exp - filter the rows returned

Returns: [project_category_type!]!


project_category_type_aggregate

fetch aggregated fields from the table: "project_category_type"

Arguments:

  • distinct_on: [project_category_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_category_type_order_by!] - sort the rows by one or more columns
  • where: project_category_type_bool_exp - filter the rows returned

Returns: project_category_type_aggregate!


project_category_type_by_pk

fetch data from the table: "project_category_type" using primary key columns

Arguments:

  • value: String!

Returns: project_category_type


project_cloud_resources

An array relationship

Arguments:

  • distinct_on: [project_cloud_resources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_cloud_resources_order_by!] - sort the rows by one or more columns
  • where: project_cloud_resources_bool_exp - filter the rows returned

Returns: [project_cloud_resources!]!


project_cloud_resources_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [project_cloud_resources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_cloud_resources_order_by!] - sort the rows by one or more columns
  • where: project_cloud_resources_bool_exp - filter the rows returned

Returns: project_cloud_resources_aggregate!


project_cloud_resources_by_pk

fetch data from the table: "project_cloud_resources" using primary key columns

Arguments:

  • id: uuid!

Returns: project_cloud_resources


project_fundings

An array relationship

Arguments:

  • distinct_on: [project_fundings_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_fundings_order_by!] - sort the rows by one or more columns
  • where: project_fundings_bool_exp - filter the rows returned

Returns: [project_fundings!]!


project_fundings_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [project_fundings_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_fundings_order_by!] - sort the rows by one or more columns
  • where: project_fundings_bool_exp - filter the rows returned

Returns: project_fundings_aggregate!


project_fundings_by_pk

fetch data from the table: "project_fundings" using primary key columns

Arguments:

  • id: uuid!

Returns: project_fundings


project_users

An array relationship

Arguments:

  • distinct_on: [project_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_users_order_by!] - sort the rows by one or more columns
  • where: project_users_bool_exp - filter the rows returned

Returns: [project_users!]!


project_users_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [project_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [project_users_order_by!] - sort the rows by one or more columns
  • where: project_users_bool_exp - filter the rows returned

Returns: project_users_aggregate!


project_users_by_pk

fetch data from the table: "project_users" using primary key columns

Arguments:

  • id: uuid!

Returns: project_users


roles

fetch data from the table: "roles"

Arguments:

  • distinct_on: [roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [roles_order_by!] - sort the rows by one or more columns
  • where: roles_bool_exp - filter the rows returned

Returns: [roles!]!


roles_aggregate

fetch aggregated fields from the table: "roles"

Arguments:

  • distinct_on: [roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [roles_order_by!] - sort the rows by one or more columns
  • where: roles_bool_exp - filter the rows returned

Returns: roles_aggregate!


roles_by_pk

fetch data from the table: "roles" using primary key columns

Arguments:

  • value: citext!

Returns: roles


tenant

fetch data from the table: "tenant"

Arguments:

  • distinct_on: [tenant_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_order_by!] - sort the rows by one or more columns
  • where: tenant_bool_exp - filter the rows returned

Returns: [tenant!]!


tenant_aggregate

fetch aggregated fields from the table: "tenant"

Arguments:

  • distinct_on: [tenant_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_order_by!] - sort the rows by one or more columns
  • where: tenant_bool_exp - filter the rows returned

Returns: tenant_aggregate!


tenant_attrs

An array relationship

Arguments:

  • distinct_on: [tenant_attrs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_attrs_order_by!] - sort the rows by one or more columns
  • where: tenant_attrs_bool_exp - filter the rows returned

Returns: [tenant_attrs!]!


tenant_attrs_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [tenant_attrs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_attrs_order_by!] - sort the rows by one or more columns
  • where: tenant_attrs_bool_exp - filter the rows returned

Returns: tenant_attrs_aggregate!


tenant_attrs_by_pk

fetch data from the table: "tenant_attrs" using primary key columns

Arguments:

  • id: uuid!

Returns: tenant_attrs


tenant_by_pk

fetch data from the table: "tenant" using primary key columns

Arguments:

  • id: uuid!

Returns: tenant


tenant_list_all

List all tenants (super admin only)

Returns: [tenant_list_all_output!]!


tenant_onboarding

fetch data from the table: "tenant_onboarding"

Arguments:

  • distinct_on: [tenant_onboarding_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_onboarding_order_by!] - sort the rows by one or more columns
  • where: tenant_onboarding_bool_exp - filter the rows returned

Returns: [tenant_onboarding!]!


tenant_onboarding_aggregate

fetch aggregated fields from the table: "tenant_onboarding"

Arguments:

  • distinct_on: [tenant_onboarding_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_onboarding_order_by!] - sort the rows by one or more columns
  • where: tenant_onboarding_bool_exp - filter the rows returned

Returns: tenant_onboarding_aggregate!


tenant_onboarding_by_pk

fetch data from the table: "tenant_onboarding" using primary key columns

Arguments:

  • id: uuid!

Returns: tenant_onboarding


tenant_type

fetch data from the table: "tenant_type"

Arguments:

  • distinct_on: [tenant_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_type_order_by!] - sort the rows by one or more columns
  • where: tenant_type_bool_exp - filter the rows returned

Returns: [tenant_type!]!


tenant_type_aggregate

fetch aggregated fields from the table: "tenant_type"

Arguments:

  • distinct_on: [tenant_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_type_order_by!] - sort the rows by one or more columns
  • where: tenant_type_bool_exp - filter the rows returned

Returns: tenant_type_aggregate!


tenant_type_by_pk

fetch data from the table: "tenant_type" using primary key columns

Arguments:

  • value: String!

Returns: tenant_type


tenant_users

An array relationship

Arguments:

  • distinct_on: [tenant_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_users_order_by!] - sort the rows by one or more columns
  • where: tenant_users_bool_exp - filter the rows returned

Returns: [tenant_users!]!


tenant_users_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [tenant_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [tenant_users_order_by!] - sort the rows by one or more columns
  • where: tenant_users_bool_exp - filter the rows returned

Returns: tenant_users_aggregate!


tenant_users_by_pk

fetch data from the table: "tenant_users" using primary key columns

Arguments:

  • id: uuid!

Returns: tenant_users


user_attrs

An array relationship

Arguments:

  • distinct_on: [user_attrs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_attrs_order_by!] - sort the rows by one or more columns
  • where: user_attrs_bool_exp - filter the rows returned

Returns: [user_attrs!]!


user_attrs_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [user_attrs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_attrs_order_by!] - sort the rows by one or more columns
  • where: user_attrs_bool_exp - filter the rows returned

Returns: user_attrs_aggregate!


user_attrs_by_pk

fetch data from the table: "user_attrs" using primary key columns

Arguments:

  • id: uuid!

Returns: user_attrs


user_auths

An array relationship

Arguments:

  • distinct_on: [user_auths_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_auths_order_by!] - sort the rows by one or more columns
  • where: user_auths_bool_exp - filter the rows returned

Returns: [user_auths!]!


user_auths_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [user_auths_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_auths_order_by!] - sort the rows by one or more columns
  • where: user_auths_bool_exp - filter the rows returned

Returns: user_auths_aggregate!


user_auths_by_pk

fetch data from the table: "user_auths" using primary key columns

Arguments:

  • id: uuid!

Returns: user_auths


user_groups

An array relationship

Arguments:

  • distinct_on: [user_groups_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_groups_order_by!] - sort the rows by one or more columns
  • where: user_groups_bool_exp - filter the rows returned

Returns: [user_groups!]!


user_groups_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [user_groups_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_groups_order_by!] - sort the rows by one or more columns
  • where: user_groups_bool_exp - filter the rows returned

Returns: user_groups_aggregate!


user_groups_by_pk

fetch data from the table: "user_groups" using primary key columns

Arguments:

  • id: uuid!

Returns: user_groups


user_history

fetch data from the table: "user_history"

Arguments:

  • distinct_on: [user_history_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_history_order_by!] - sort the rows by one or more columns
  • where: user_history_bool_exp - filter the rows returned

Returns: [user_history!]!


user_history_aggregate

fetch aggregated fields from the table: "user_history"

Arguments:

  • distinct_on: [user_history_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_history_order_by!] - sort the rows by one or more columns
  • where: user_history_bool_exp - filter the rows returned

Returns: user_history_aggregate!


user_history_by_pk

fetch data from the table: "user_history" using primary key columns

Arguments:

  • id: uuid!

Returns: user_history


user_roles

An array relationship

Arguments:

  • distinct_on: [user_roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_roles_order_by!] - sort the rows by one or more columns
  • where: user_roles_bool_exp - filter the rows returned

Returns: [user_roles!]!


user_roles_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [user_roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_roles_order_by!] - sort the rows by one or more columns
  • where: user_roles_bool_exp - filter the rows returned

Returns: user_roles_aggregate!


user_roles_by_pk

fetch data from the table: "user_roles" using primary key columns

Arguments:

  • id: uuid!

Returns: user_roles


user_status_type

fetch data from the table: "user_status_type"

Arguments:

  • distinct_on: [user_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_status_type_order_by!] - sort the rows by one or more columns
  • where: user_status_type_bool_exp - filter the rows returned

Returns: [user_status_type!]!


user_status_type_aggregate

fetch aggregated fields from the table: "user_status_type"

Arguments:

  • distinct_on: [user_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [user_status_type_order_by!] - sort the rows by one or more columns
  • where: user_status_type_bool_exp - filter the rows returned

Returns: user_status_type_aggregate!


user_status_type_by_pk

fetch data from the table: "user_status_type" using primary key columns

Arguments:

  • value: String!

Returns: user_status_type


usergroup_users

An array relationship

Arguments:

  • distinct_on: [usergroup_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [usergroup_users_order_by!] - sort the rows by one or more columns
  • where: usergroup_users_bool_exp - filter the rows returned

Returns: [usergroup_users!]!


usergroup_users_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [usergroup_users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [usergroup_users_order_by!] - sort the rows by one or more columns
  • where: usergroup_users_bool_exp - filter the rows returned

Returns: usergroup_users_aggregate!


usergroup_users_by_pk

fetch data from the table: "usergroup_users" using primary key columns

Arguments:

  • id: uuid!

Returns: usergroup_users


users

An array relationship

Arguments:

  • distinct_on: [users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [users_order_by!] - sort the rows by one or more columns
  • where: users_bool_exp - filter the rows returned

Returns: [users!]!


users_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [users_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [users_order_by!] - sort the rows by one or more columns
  • where: users_bool_exp - filter the rows returned

Returns: users_aggregate!


users_by_pk

fetch data from the table: "users" using primary key columns

Arguments:

  • id: uuid!

Returns: users


users_by_tenant_v2

Arguments:

  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: UsersByTenantWhereRequest

Returns: UsersByTenantResponse


users_list_token

Returns: UserAuthTokenResponse


Integrations

Third-party integrations: Slack, MS Teams, Jira, and custom connectors.

get_default_provider

Arguments:

  • request: DefaultProviderRequest!

Returns: DefaultProviderResponse


integration_categories

fetch data from the table: "integration_categories"

Arguments:

  • distinct_on: [integration_categories_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_categories_order_by!] - sort the rows by one or more columns
  • where: integration_categories_bool_exp - filter the rows returned

Returns: [integration_categories!]!


integration_categories_aggregate

fetch aggregated fields from the table: "integration_categories"

Arguments:

  • distinct_on: [integration_categories_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_categories_order_by!] - sort the rows by one or more columns
  • where: integration_categories_bool_exp - filter the rows returned

Returns: integration_categories_aggregate!


integration_categories_by_pk

fetch data from the table: "integration_categories" using primary key columns

Arguments:

  • value: String!

Returns: integration_categories


integration_config_values

An array relationship

Arguments:

  • distinct_on: [integration_config_values_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_config_values_order_by!] - sort the rows by one or more columns
  • where: integration_config_values_bool_exp - filter the rows returned

Returns: [integration_config_values!]!


integration_config_values_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [integration_config_values_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_config_values_order_by!] - sort the rows by one or more columns
  • where: integration_config_values_bool_exp - filter the rows returned

Returns: integration_config_values_aggregate!


integration_config_values_by_pk

fetch data from the table: "integration_config_values" using primary key columns

Arguments:

  • id: uuid!

Returns: integration_config_values


integration_sources

fetch data from the table: "integration_sources"

Arguments:

  • distinct_on: [integration_sources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_sources_order_by!] - sort the rows by one or more columns
  • where: integration_sources_bool_exp - filter the rows returned

Returns: [integration_sources!]!


integration_sources_aggregate

fetch aggregated fields from the table: "integration_sources"

Arguments:

  • distinct_on: [integration_sources_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_sources_order_by!] - sort the rows by one or more columns
  • where: integration_sources_bool_exp - filter the rows returned

Returns: integration_sources_aggregate!


integration_sources_by_pk

fetch data from the table: "integration_sources" using primary key columns

Arguments:

  • value: String!

Returns: integration_sources


integration_statuses

fetch data from the table: "integration_statuses"

Arguments:

  • distinct_on: [integration_statuses_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_statuses_order_by!] - sort the rows by one or more columns
  • where: integration_statuses_bool_exp - filter the rows returned

Returns: [integration_statuses!]!


integration_statuses_aggregate

fetch aggregated fields from the table: "integration_statuses"

Arguments:

  • distinct_on: [integration_statuses_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_statuses_order_by!] - sort the rows by one or more columns
  • where: integration_statuses_bool_exp - filter the rows returned

Returns: integration_statuses_aggregate!


integration_statuses_by_pk

fetch data from the table: "integration_statuses" using primary key columns

Arguments:

  • value: String!

Returns: integration_statuses


integration_types

fetch data from the table: "integration_types"

Arguments:

  • distinct_on: [integration_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_types_order_by!] - sort the rows by one or more columns
  • where: integration_types_bool_exp - filter the rows returned

Returns: [integration_types!]!


integration_types_aggregate

fetch aggregated fields from the table: "integration_types"

Arguments:

  • distinct_on: [integration_types_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integration_types_order_by!] - sort the rows by one or more columns
  • where: integration_types_bool_exp - filter the rows returned

Returns: integration_types_aggregate!


integration_types_by_pk

fetch data from the table: "integration_types" using primary key columns

Arguments:

  • name: String!

Returns: integration_types


integrations

fetch data from the table: "integrations"

Arguments:

  • distinct_on: [integrations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integrations_order_by!] - sort the rows by one or more columns
  • where: integrations_bool_exp - filter the rows returned

Returns: [integrations!]!


integrations_aggregate

fetch aggregated fields from the table: "integrations"

Arguments:

  • distinct_on: [integrations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integrations_order_by!] - sort the rows by one or more columns
  • where: integrations_bool_exp - filter the rows returned

Returns: integrations_aggregate!


integrations_by_pk

fetch data from the table: "integrations" using primary key columns

Arguments:

  • id: uuid!

Returns: integrations


integrations_cloud_accounts

An array relationship

Arguments:

  • distinct_on: [integrations_cloud_accounts_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integrations_cloud_accounts_order_by!] - sort the rows by one or more columns
  • where: integrations_cloud_accounts_bool_exp - filter the rows returned

Returns: [integrations_cloud_accounts!]!


integrations_cloud_accounts_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [integrations_cloud_accounts_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [integrations_cloud_accounts_order_by!] - sort the rows by one or more columns
  • where: integrations_cloud_accounts_bool_exp - filter the rows returned

Returns: integrations_cloud_accounts_aggregate!


integrations_cloud_accounts_by_pk

fetch data from the table: "integrations_cloud_accounts" using primary key columns

Arguments:

  • id: uuid!

Returns: integrations_cloud_accounts


integrations_get_schema

list integrations schema

Arguments:

  • request: IntegrationSchemaRequest!

Returns: IntegrationSchemaResponse


jira_configurations

An array relationship

Arguments:

  • distinct_on: [jira_configurations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [jira_configurations_order_by!] - sort the rows by one or more columns
  • where: jira_configurations_bool_exp - filter the rows returned

Returns: [jira_configurations!]!


jira_configurations_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [jira_configurations_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [jira_configurations_order_by!] - sort the rows by one or more columns
  • where: jira_configurations_bool_exp - filter the rows returned

Returns: jira_configurations_aggregate!


jira_configurations_by_pk

fetch data from the table: "jira_configurations" using primary key columns

Arguments:

  • id: uuid!

Returns: jira_configurations


ms_teams_channels

fetch data from the table: "ms_teams_channels"

Arguments:

  • distinct_on: [ms_teams_channels_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ms_teams_channels_order_by!] - sort the rows by one or more columns
  • where: ms_teams_channels_bool_exp - filter the rows returned

Returns: [ms_teams_channels!]!


ms_teams_channels_aggregate

fetch aggregated fields from the table: "ms_teams_channels"

Arguments:

  • distinct_on: [ms_teams_channels_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [ms_teams_channels_order_by!] - sort the rows by one or more columns
  • where: ms_teams_channels_bool_exp - filter the rows returned

Returns: ms_teams_channels_aggregate!


ms_teams_channels_by_pk

fetch data from the table: "ms_teams_channels" using primary key columns

Arguments:

  • id: uuid!

Returns: ms_teams_channels


slack_bots

fetch data from the table: "slack_bots"

Arguments:

  • distinct_on: [slack_bots_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slack_bots_order_by!] - sort the rows by one or more columns
  • where: slack_bots_bool_exp - filter the rows returned

Returns: [slack_bots!]!


slack_bots_aggregate

fetch aggregated fields from the table: "slack_bots"

Arguments:

  • distinct_on: [slack_bots_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slack_bots_order_by!] - sort the rows by one or more columns
  • where: slack_bots_bool_exp - filter the rows returned

Returns: slack_bots_aggregate!


slack_bots_by_pk

fetch data from the table: "slack_bots" using primary key columns

Arguments:

  • id: uuid!

Returns: slack_bots


slack_oauth_states

fetch data from the table: "slack_oauth_states"

Arguments:

  • distinct_on: [slack_oauth_states_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slack_oauth_states_order_by!] - sort the rows by one or more columns
  • where: slack_oauth_states_bool_exp - filter the rows returned

Returns: [slack_oauth_states!]!


slack_oauth_states_aggregate

fetch aggregated fields from the table: "slack_oauth_states"

Arguments:

  • distinct_on: [slack_oauth_states_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slack_oauth_states_order_by!] - sort the rows by one or more columns
  • where: slack_oauth_states_bool_exp - filter the rows returned

Returns: slack_oauth_states_aggregate!


slack_oauth_states_by_pk

fetch data from the table: "slack_oauth_states" using primary key columns

Arguments:

  • id: uuid!

Returns: slack_oauth_states


Configuration

Feature flags, SLO targets, system configuration, and upgrade management.

check_license

Get License Details

Returns: LicenseResponse


configuration_store

fetch data from the table: "configuration_store"

Arguments:

  • distinct_on: [configuration_store_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [configuration_store_order_by!] - sort the rows by one or more columns
  • where: configuration_store_bool_exp - filter the rows returned

Returns: [configuration_store!]!


configuration_store_aggregate

fetch aggregated fields from the table: "configuration_store"

Arguments:

  • distinct_on: [configuration_store_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [configuration_store_order_by!] - sort the rows by one or more columns
  • where: configuration_store_bool_exp - filter the rows returned

Returns: configuration_store_aggregate!


configuration_store_by_pk

fetch data from the table: "configuration_store" using primary key columns

Arguments:

  • id: uuid!

Returns: configuration_store


etl_jobs

fetch data from the table: "etl_jobs"

Arguments:

  • distinct_on: [etl_jobs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [etl_jobs_order_by!] - sort the rows by one or more columns
  • where: etl_jobs_bool_exp - filter the rows returned

Returns: [etl_jobs!]!


etl_jobs_aggregate

fetch aggregated fields from the table: "etl_jobs"

Arguments:

  • distinct_on: [etl_jobs_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [etl_jobs_order_by!] - sort the rows by one or more columns
  • where: etl_jobs_bool_exp - filter the rows returned

Returns: etl_jobs_aggregate!


etl_jobs_by_pk

fetch data from the table: "etl_jobs" using primary key columns

Arguments:

  • id: uuid!

Returns: etl_jobs


feature

fetch data from the table: "feature"

Arguments:

  • distinct_on: [feature_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [feature_order_by!] - sort the rows by one or more columns
  • where: feature_bool_exp - filter the rows returned

Returns: [feature!]!


feature_aggregate

fetch aggregated fields from the table: "feature"

Arguments:

  • distinct_on: [feature_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [feature_order_by!] - sort the rows by one or more columns
  • where: feature_bool_exp - filter the rows returned

Returns: feature_aggregate!


feature_by_pk

fetch data from the table: "feature" using primary key columns

Arguments:

  • value: String!

Returns: feature


feature_flag

fetch data from the table: "feature_flag"

Arguments:

  • distinct_on: [feature_flag_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [feature_flag_order_by!] - sort the rows by one or more columns
  • where: feature_flag_bool_exp - filter the rows returned

Returns: [feature_flag!]!


feature_flag_aggregate

fetch aggregated fields from the table: "feature_flag"

Arguments:

  • distinct_on: [feature_flag_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [feature_flag_order_by!] - sort the rows by one or more columns
  • where: feature_flag_bool_exp - filter the rows returned

Returns: feature_flag_aggregate!


feature_flag_by_pk

fetch data from the table: "feature_flag" using primary key columns

Arguments:

  • id: uuid!

Returns: feature_flag


slo_config

fetch data from the table: "slo_config"

Arguments:

  • distinct_on: [slo_config_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slo_config_order_by!] - sort the rows by one or more columns
  • where: slo_config_bool_exp - filter the rows returned

Returns: [slo_config!]!


slo_config_aggregate

fetch aggregated fields from the table: "slo_config"

Arguments:

  • distinct_on: [slo_config_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slo_config_order_by!] - sort the rows by one or more columns
  • where: slo_config_bool_exp - filter the rows returned

Returns: slo_config_aggregate!


slo_config_by_pk

fetch data from the table: "slo_config" using primary key columns

Arguments:

  • id: uuid!

Returns: slo_config


slo_report

fetch data from the table: "slo_report"

Arguments:

  • distinct_on: [slo_report_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slo_report_order_by!] - sort the rows by one or more columns
  • where: slo_report_bool_exp - filter the rows returned

Returns: [slo_report!]!


slo_report_aggregate

fetch aggregated fields from the table: "slo_report"

Arguments:

  • distinct_on: [slo_report_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slo_report_order_by!] - sort the rows by one or more columns
  • where: slo_report_bool_exp - filter the rows returned

Returns: slo_report_aggregate!


slo_report_by_pk

fetch data from the table: "slo_report" using primary key columns

Arguments:

  • id: uuid!

Returns: slo_report


slo_report_observation_v2

get slo report observation

Arguments:

  • limit: Int
  • offset: Int
  • where: SloReportObservationWhereRequest

Returns: SloReportObservationResponse


slo_status

fetch data from the table: "slo_status"

Arguments:

  • distinct_on: [slo_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slo_status_order_by!] - sort the rows by one or more columns
  • where: slo_status_bool_exp - filter the rows returned

Returns: [slo_status!]!


slo_status_aggregate

fetch aggregated fields from the table: "slo_status"

Arguments:

  • distinct_on: [slo_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [slo_status_order_by!] - sort the rows by one or more columns
  • where: slo_status_bool_exp - filter the rows returned

Returns: slo_status_aggregate!


slo_status_by_pk

fetch data from the table: "slo_status" using primary key columns

Arguments:

  • value: String!

Returns: slo_status


upgrade_plan

fetch data from the table: "upgrade_plan"

Arguments:

  • distinct_on: [upgrade_plan_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_bool_exp - filter the rows returned

Returns: [upgrade_plan!]!


upgrade_plan_aggregate

fetch aggregated fields from the table: "upgrade_plan"

Arguments:

  • distinct_on: [upgrade_plan_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_bool_exp - filter the rows returned

Returns: upgrade_plan_aggregate!


upgrade_plan_audit

fetch data from the table: "upgrade_plan_audit"

Arguments:

  • distinct_on: [upgrade_plan_audit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_audit_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_audit_bool_exp - filter the rows returned

Returns: [upgrade_plan_audit!]!


upgrade_plan_audit_aggregate

fetch aggregated fields from the table: "upgrade_plan_audit"

Arguments:

  • distinct_on: [upgrade_plan_audit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_audit_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_audit_bool_exp - filter the rows returned

Returns: upgrade_plan_audit_aggregate!


upgrade_plan_audit_by_pk

fetch data from the table: "upgrade_plan_audit" using primary key columns

Arguments:

  • id: uuid!

Returns: upgrade_plan_audit


upgrade_plan_by_pk

fetch data from the table: "upgrade_plan" using primary key columns

Arguments:

  • id: uuid!

Returns: upgrade_plan


upgrade_plan_fetch_all

Arguments:

  • account_id: String!

Returns: [UpgradePlanResponse]


upgrade_plan_fetch_one

Arguments:

  • account_id: String!

Returns: UpgradePlanResponse


upgrade_plan_status_type

fetch data from the table: "upgrade_plan_status_type"

Arguments:

  • distinct_on: [upgrade_plan_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_status_type_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_status_type_bool_exp - filter the rows returned

Returns: [upgrade_plan_status_type!]!


upgrade_plan_status_type_aggregate

fetch aggregated fields from the table: "upgrade_plan_status_type"

Arguments:

  • distinct_on: [upgrade_plan_status_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_status_type_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_status_type_bool_exp - filter the rows returned

Returns: upgrade_plan_status_type_aggregate!


upgrade_plan_status_type_by_pk

fetch data from the table: "upgrade_plan_status_type" using primary key columns

Arguments:

  • value: String!

Returns: upgrade_plan_status_type


upgrade_plan_steps

fetch data from the table: "upgrade_plan_steps"

Arguments:

  • distinct_on: [upgrade_plan_steps_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_steps_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_steps_bool_exp - filter the rows returned

Returns: [upgrade_plan_steps!]!


upgrade_plan_steps_aggregate

fetch aggregated fields from the table: "upgrade_plan_steps"

Arguments:

  • distinct_on: [upgrade_plan_steps_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_steps_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_steps_bool_exp - filter the rows returned

Returns: upgrade_plan_steps_aggregate!


upgrade_plan_steps_by_pk

fetch data from the table: "upgrade_plan_steps" using primary key columns

Arguments:

  • id: uuid!

Returns: upgrade_plan_steps


upgrade_plan_tasks

fetch data from the table: "upgrade_plan_tasks"

Arguments:

  • distinct_on: [upgrade_plan_tasks_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_tasks_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_tasks_bool_exp - filter the rows returned

Returns: [upgrade_plan_tasks!]!


upgrade_plan_tasks_aggregate

fetch aggregated fields from the table: "upgrade_plan_tasks"

Arguments:

  • distinct_on: [upgrade_plan_tasks_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [upgrade_plan_tasks_order_by!] - sort the rows by one or more columns
  • where: upgrade_plan_tasks_bool_exp - filter the rows returned

Returns: upgrade_plan_tasks_aggregate!


upgrade_plan_tasks_by_pk

fetch data from the table: "upgrade_plan_tasks" using primary key columns

Arguments:

  • id: uuid!

Returns: upgrade_plan_tasks


Data Warehouse

Data warehouse queries, pipes, databases, and query performance.

dw_databases

fetch data from the table: "dw_databases"

Arguments:

  • distinct_on: [dw_databases_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_databases_order_by!] - sort the rows by one or more columns
  • where: dw_databases_bool_exp - filter the rows returned

Returns: [dw_databases!]!


dw_databases_aggregate

fetch aggregated fields from the table: "dw_databases"

Arguments:

  • distinct_on: [dw_databases_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_databases_order_by!] - sort the rows by one or more columns
  • where: dw_databases_bool_exp - filter the rows returned

Returns: dw_databases_aggregate!


dw_pipe

fetch data from the table: "dw_pipe"

Arguments:

  • distinct_on: [dw_pipe_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_pipe_order_by!] - sort the rows by one or more columns
  • where: dw_pipe_bool_exp - filter the rows returned

Returns: [dw_pipe!]!


dw_pipe_aggregate

fetch aggregated fields from the table: "dw_pipe"

Arguments:

  • distinct_on: [dw_pipe_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_pipe_order_by!] - sort the rows by one or more columns
  • where: dw_pipe_bool_exp - filter the rows returned

Returns: dw_pipe_aggregate!


dw_pipe_by_pk

fetch data from the table: "dw_pipe" using primary key columns

Arguments:

  • id: uuid!

Returns: dw_pipe


dw_pipe_usage

fetch data from the table: "dw_pipe_usage"

Arguments:

  • distinct_on: [dw_pipe_usage_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_pipe_usage_order_by!] - sort the rows by one or more columns
  • where: dw_pipe_usage_bool_exp - filter the rows returned

Returns: [dw_pipe_usage!]!


dw_pipe_usage_aggregate

fetch aggregated fields from the table: "dw_pipe_usage"

Arguments:

  • distinct_on: [dw_pipe_usage_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_pipe_usage_order_by!] - sort the rows by one or more columns
  • where: dw_pipe_usage_bool_exp - filter the rows returned

Returns: dw_pipe_usage_aggregate!


dw_pipe_usage_by_pk

fetch data from the table: "dw_pipe_usage" using primary key columns

Arguments:

  • id: uuid!

Returns: dw_pipe_usage


dw_queries

fetch data from the table: "dw_queries"

Arguments:

  • distinct_on: [dw_queries_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_queries_order_by!] - sort the rows by one or more columns
  • where: dw_queries_bool_exp - filter the rows returned

Returns: [dw_queries!]!


dw_queries_aggregate

fetch aggregated fields from the table: "dw_queries"

Arguments:

  • distinct_on: [dw_queries_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_queries_order_by!] - sort the rows by one or more columns
  • where: dw_queries_bool_exp - filter the rows returned

Returns: dw_queries_aggregate!


dw_queries_by_pk

fetch data from the table: "dw_queries" using primary key columns

Arguments:

  • id: uuid!

Returns: dw_queries


dw_queries_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: DwQueriesWhereRequest

Returns: DwQueriesResponse


dw_query_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: DwQueryGroupingWhereRequest

Returns: DwQueryGroupingsResponse


dw_query_profile_data

fetch data from the table: "dw_query_profile_data"

Arguments:

  • distinct_on: [dw_query_profile_data_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_query_profile_data_order_by!] - sort the rows by one or more columns
  • where: dw_query_profile_data_bool_exp - filter the rows returned

Returns: [dw_query_profile_data!]!


dw_query_profile_data_aggregate

fetch aggregated fields from the table: "dw_query_profile_data"

Arguments:

  • distinct_on: [dw_query_profile_data_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_query_profile_data_order_by!] - sort the rows by one or more columns
  • where: dw_query_profile_data_bool_exp - filter the rows returned

Returns: dw_query_profile_data_aggregate!


dw_query_profile_data_by_pk

fetch data from the table: "dw_query_profile_data" using primary key columns

Arguments:

  • id: uuid!

Returns: dw_query_profile_data


dw_tables

fetch data from the table: "dw_tables"

Arguments:

  • distinct_on: [dw_tables_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_tables_order_by!] - sort the rows by one or more columns
  • where: dw_tables_bool_exp - filter the rows returned

Returns: [dw_tables!]!


dw_tables_aggregate

fetch aggregated fields from the table: "dw_tables"

Arguments:

  • distinct_on: [dw_tables_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [dw_tables_order_by!] - sort the rows by one or more columns
  • where: dw_tables_bool_exp - filter the rows returned

Returns: dw_tables_aggregate!


dw_tables_by_pk

fetch data from the table: "dw_tables" using primary key columns

Arguments:

  • id: uuid!

Returns: dw_tables


Audit

Audit logs, user action history, and system activity tracking.

audit

fetch data from the table: "audit"

Arguments:

  • distinct_on: [audit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [audit_order_by!] - sort the rows by one or more columns
  • where: audit_bool_exp - filter the rows returned

Returns: [audit!]!


audit_aggregate

fetch aggregated fields from the table: "audit"

Arguments:

  • distinct_on: [audit_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [audit_order_by!] - sort the rows by one or more columns
  • where: audit_bool_exp - filter the rows returned

Returns: audit_aggregate!


audit_by_pk

fetch data from the table: "audit" using primary key columns

Arguments:

  • id: uuid!

Returns: audit


audit_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: AuditGroupingWhereRequest

Returns: AuditGroupingResponse


audits_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: AuditWhereRequest

Returns: AuditResponse


Other

Uncategorized operations.

account_env_type

fetch data from the table: "account_env_type"

Arguments:

  • distinct_on: [account_env_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_env_type_order_by!] - sort the rows by one or more columns
  • where: account_env_type_bool_exp - filter the rows returned

Returns: [account_env_type!]!


account_env_type_aggregate

fetch aggregated fields from the table: "account_env_type"

Arguments:

  • distinct_on: [account_env_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_env_type_order_by!] - sort the rows by one or more columns
  • where: account_env_type_bool_exp - filter the rows returned

Returns: account_env_type_aggregate!


account_env_type_by_pk

fetch data from the table: "account_env_type" using primary key columns

Arguments:

  • value: String!

Returns: account_env_type


account_purpose_type

fetch data from the table: "account_purpose_type"

Arguments:

  • distinct_on: [account_purpose_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_purpose_type_order_by!] - sort the rows by one or more columns
  • where: account_purpose_type_bool_exp - filter the rows returned

Returns: [account_purpose_type!]!


account_purpose_type_aggregate

fetch aggregated fields from the table: "account_purpose_type"

Arguments:

  • distinct_on: [account_purpose_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_purpose_type_order_by!] - sort the rows by one or more columns
  • where: account_purpose_type_bool_exp - filter the rows returned

Returns: account_purpose_type_aggregate!


account_purpose_type_by_pk

fetch data from the table: "account_purpose_type" using primary key columns

Arguments:

  • value: String!

Returns: account_purpose_type


check_cluster_health

Arguments:

  • account_id: String!
  • resource_type: String!

Returns: health_check_response


db_type

fetch data from the table: "db_type"

Arguments:

  • distinct_on: [db_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [db_type_order_by!] - sort the rows by one or more columns
  • where: db_type_bool_exp - filter the rows returned

Returns: [db_type!]!


db_type_aggregate

fetch aggregated fields from the table: "db_type"

Arguments:

  • distinct_on: [db_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [db_type_order_by!] - sort the rows by one or more columns
  • where: db_type_bool_exp - filter the rows returned

Returns: db_type_aggregate!


db_type_by_pk

fetch data from the table: "db_type" using primary key columns

Arguments:

  • value: String!

Returns: db_type


group_roles

An array relationship

Arguments:

  • distinct_on: [group_roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [group_roles_order_by!] - sort the rows by one or more columns
  • where: group_roles_bool_exp - filter the rows returned

Returns: [group_roles!]!


group_roles_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [group_roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [group_roles_order_by!] - sort the rows by one or more columns
  • where: group_roles_bool_exp - filter the rows returned

Returns: group_roles_aggregate!


group_roles_by_pk

fetch data from the table: "group_roles" using primary key columns

Arguments:

  • id: uuid!

Returns: group_roles


marketplace_customers

fetch data from the table: "marketplace_customers"

Arguments:

  • distinct_on: [marketplace_customers_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [marketplace_customers_order_by!] - sort the rows by one or more columns
  • where: marketplace_customers_bool_exp - filter the rows returned

Returns: [marketplace_customers!]!


marketplace_customers_aggregate

fetch aggregated fields from the table: "marketplace_customers"

Arguments:

  • distinct_on: [marketplace_customers_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [marketplace_customers_order_by!] - sort the rows by one or more columns
  • where: marketplace_customers_bool_exp - filter the rows returned

Returns: marketplace_customers_aggregate!


marketplace_customers_by_pk

fetch data from the table: "marketplace_customers" using primary key columns

Arguments:

  • id: uuid!

Returns: marketplace_customers


nb_versions

Returns: NBVersionResponse


projects

An array relationship

Arguments:

  • distinct_on: [projects_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [projects_order_by!] - sort the rows by one or more columns
  • where: projects_bool_exp - filter the rows returned

Returns: [projects!]!


projects_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [projects_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [projects_order_by!] - sort the rows by one or more columns
  • where: projects_bool_exp - filter the rows returned

Returns: projects_aggregate!


projects_by_pk

fetch data from the table: "projects" using primary key columns

Arguments:

  • id: uuid!

Returns: projects


recommendations_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: RecommendationWhereRequest

Returns: RecommendationResponse


resource_groupings_v2

Arguments:

  • column_transformations: [QueryColumnTransformationRequest!]
  • columns: [String!]
  • group_by: [String!]
  • limit: Int
  • offset: Int
  • order_by: [QuerySortByRequest!]
  • where: ResourceGroupingsWhereRequest

Returns: ResourceGroupingsResponse


runbook_action

fetch data from the table: "runbook_action"

Arguments:

  • distinct_on: [runbook_action_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_order_by!] - sort the rows by one or more columns
  • where: runbook_action_bool_exp - filter the rows returned

Returns: [runbook_action!]!


runbook_action_aggregate

fetch aggregated fields from the table: "runbook_action"

Arguments:

  • distinct_on: [runbook_action_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_order_by!] - sort the rows by one or more columns
  • where: runbook_action_bool_exp - filter the rows returned

Returns: runbook_action_aggregate!


runbook_action_by_pk

fetch data from the table: "runbook_action" using primary key columns

Arguments:

  • id: uuid!

Returns: runbook_action


runbook_action_library

fetch data from the table: "runbook_action_library"

Arguments:

  • distinct_on: [runbook_action_library_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_library_order_by!] - sort the rows by one or more columns
  • where: runbook_action_library_bool_exp - filter the rows returned

Returns: [runbook_action_library!]!


runbook_action_library_aggregate

fetch aggregated fields from the table: "runbook_action_library"

Arguments:

  • distinct_on: [runbook_action_library_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_library_order_by!] - sort the rows by one or more columns
  • where: runbook_action_library_bool_exp - filter the rows returned

Returns: runbook_action_library_aggregate!


runbook_action_library_by_pk

fetch data from the table: "runbook_action_library" using primary key columns

Arguments:

  • id: uuid!

Returns: runbook_action_library


runbook_action_status

fetch data from the table: "runbook_action_status"

Arguments:

  • distinct_on: [runbook_action_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_status_order_by!] - sort the rows by one or more columns
  • where: runbook_action_status_bool_exp - filter the rows returned

Returns: [runbook_action_status!]!


runbook_action_status_aggregate

fetch aggregated fields from the table: "runbook_action_status"

Arguments:

  • distinct_on: [runbook_action_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_status_order_by!] - sort the rows by one or more columns
  • where: runbook_action_status_bool_exp - filter the rows returned

Returns: runbook_action_status_aggregate!


runbook_action_status_by_pk

fetch data from the table: "runbook_action_status" using primary key columns

Arguments:

  • value: String!

Returns: runbook_action_status


runbook_task_output

fetch data from the table: "runbook_task_output"

Arguments:

  • distinct_on: [runbook_task_output_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_task_output_order_by!] - sort the rows by one or more columns
  • where: runbook_task_output_bool_exp - filter the rows returned

Returns: [runbook_task_output!]!


runbook_task_output_aggregate

fetch aggregated fields from the table: "runbook_task_output"

Arguments:

  • distinct_on: [runbook_task_output_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_task_output_order_by!] - sort the rows by one or more columns
  • where: runbook_task_output_bool_exp - filter the rows returned

Returns: runbook_task_output_aggregate!


runbook_task_output_by_pk

fetch data from the table: "runbook_task_output" using primary key columns

Arguments:

  • id: uuid!

Returns: runbook_task_output


schedule_unit_type

fetch data from the table: "schedule_unit_type"

Arguments:

  • distinct_on: [schedule_unit_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [schedule_unit_type_order_by!] - sort the rows by one or more columns
  • where: schedule_unit_type_bool_exp - filter the rows returned

Returns: [schedule_unit_type!]!


schedule_unit_type_aggregate

fetch aggregated fields from the table: "schedule_unit_type"

Arguments:

  • distinct_on: [schedule_unit_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [schedule_unit_type_order_by!] - sort the rows by one or more columns
  • where: schedule_unit_type_bool_exp - filter the rows returned

Returns: schedule_unit_type_aggregate!


schedule_unit_type_by_pk

fetch data from the table: "schedule_unit_type" using primary key columns

Arguments:

  • value: String!

Returns: schedule_unit_type


sent_notifications

fetch data from the table: "sent_notifications"

Arguments:

  • distinct_on: [sent_notifications_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [sent_notifications_order_by!] - sort the rows by one or more columns
  • where: sent_notifications_bool_exp - filter the rows returned

Returns: [sent_notifications!]!


sent_notifications_aggregate

fetch aggregated fields from the table: "sent_notifications"

Arguments:

  • distinct_on: [sent_notifications_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [sent_notifications_order_by!] - sort the rows by one or more columns
  • where: sent_notifications_bool_exp - filter the rows returned

Returns: sent_notifications_aggregate!


sent_notifications_by_pk

fetch data from the table: "sent_notifications" using primary key columns

Arguments:

  • id: uuid!

Returns: sent_notifications


Mutations

Cost Management

Track cloud spending, budgets, billing, and funding sources across accounts.

delete_billing

delete data from the table: "billing"

Arguments:

  • where: billing_bool_exp! - filter the rows which have to be deleted

Returns: billing_mutation_response


delete_billing_by_pk

delete single row from the table: "billing"

Arguments:

  • id: uuid!

Returns: billing


delete_billing_usage_cost

delete data from the table: "billing_usage_cost"

Arguments:

  • where: billing_usage_cost_bool_exp! - filter the rows which have to be deleted

Returns: billing_usage_cost_mutation_response


delete_billing_usage_cost_by_pk

delete single row from the table: "billing_usage_cost"

Arguments:

  • id: uuid!

Returns: billing_usage_cost


delete_businessunit_funding

delete data from the table: "businessunit_funding"

Arguments:

  • where: businessunit_funding_bool_exp! - filter the rows which have to be deleted

Returns: businessunit_funding_mutation_response


delete_businessunit_funding_by_pk

delete single row from the table: "businessunit_funding"

Arguments:

  • id: uuid!

Returns: businessunit_funding


delete_funding_sources

delete data from the table: "funding_sources"

Arguments:

  • where: funding_sources_bool_exp! - filter the rows which have to be deleted

Returns: funding_sources_mutation_response


delete_funding_sources_by_pk

delete single row from the table: "funding_sources"

Arguments:

  • id: uuid!

Returns: funding_sources


delete_spends

delete data from the table: "spends"

Arguments:

  • where: spends_bool_exp! - filter the rows which have to be deleted

Returns: spends_mutation_response


delete_spends_by_pk

delete single row from the table: "spends"

Arguments:

  • id: uuid!

Returns: spends


delete_spends_resource_group_type

delete data from the table: "spends_resource_group_type"

Arguments:

  • where: spends_resource_group_type_bool_exp! - filter the rows which have to be deleted

Returns: spends_resource_group_type_mutation_response


delete_spends_resource_group_type_by_pk

delete single row from the table: "spends_resource_group_type"

Arguments:

  • value: String!

Returns: spends_resource_group_type


insert_billing

insert data into the table: "billing"

Arguments:

  • objects: [billing_insert_input!]! - the rows to be inserted
  • on_conflict: billing_on_conflict - upsert condition

Returns: billing_mutation_response


insert_billing_one

insert a single row into the table: "billing"

Arguments:

  • object: billing_insert_input! - the row to be inserted
  • on_conflict: billing_on_conflict - upsert condition

Returns: billing


insert_billing_usage_cost

insert data into the table: "billing_usage_cost"

Arguments:

  • objects: [billing_usage_cost_insert_input!]! - the rows to be inserted
  • on_conflict: billing_usage_cost_on_conflict - upsert condition

Returns: billing_usage_cost_mutation_response


insert_billing_usage_cost_one

insert a single row into the table: "billing_usage_cost"

Arguments:

  • object: billing_usage_cost_insert_input! - the row to be inserted
  • on_conflict: billing_usage_cost_on_conflict - upsert condition

Returns: billing_usage_cost


insert_businessunit_funding

insert data into the table: "businessunit_funding"

Arguments:

  • objects: [businessunit_funding_insert_input!]! - the rows to be inserted
  • on_conflict: businessunit_funding_on_conflict - upsert condition

Returns: businessunit_funding_mutation_response


insert_businessunit_funding_one

insert a single row into the table: "businessunit_funding"

Arguments:

  • object: businessunit_funding_insert_input! - the row to be inserted
  • on_conflict: businessunit_funding_on_conflict - upsert condition

Returns: businessunit_funding


insert_funding_sources

insert data into the table: "funding_sources"

Arguments:

  • objects: [funding_sources_insert_input!]! - the rows to be inserted
  • on_conflict: funding_sources_on_conflict - upsert condition

Returns: funding_sources_mutation_response


insert_funding_sources_one

insert a single row into the table: "funding_sources"

Arguments:

  • object: funding_sources_insert_input! - the row to be inserted
  • on_conflict: funding_sources_on_conflict - upsert condition

Returns: funding_sources


insert_spends

insert data into the table: "spends"

Arguments:

  • objects: [spends_insert_input!]! - the rows to be inserted
  • on_conflict: spends_on_conflict - upsert condition

Returns: spends_mutation_response


insert_spends_one

insert a single row into the table: "spends"

Arguments:

  • object: spends_insert_input! - the row to be inserted
  • on_conflict: spends_on_conflict - upsert condition

Returns: spends


insert_spends_resource_group_type

insert data into the table: "spends_resource_group_type"

Arguments:

  • objects: [spends_resource_group_type_insert_input!]! - the rows to be inserted
  • on_conflict: spends_resource_group_type_on_conflict - upsert condition

Returns: spends_resource_group_type_mutation_response


insert_spends_resource_group_type_one

insert a single row into the table: "spends_resource_group_type"

Arguments:

  • object: spends_resource_group_type_insert_input! - the row to be inserted
  • on_conflict: spends_resource_group_type_on_conflict - upsert condition

Returns: spends_resource_group_type


update_billing

update data of the table: "billing"

Arguments:

  • _inc: billing_inc_input - increments the numeric columns with given value of the filtered values
  • _set: billing_set_input - sets the columns of the filtered rows to the given values
  • where: billing_bool_exp! - filter the rows which have to be updated

Returns: billing_mutation_response


update_billing_by_pk

update single row of the table: "billing"

Arguments:

  • _inc: billing_inc_input - increments the numeric columns with given value of the filtered values
  • _set: billing_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: billing_pk_columns_input!

Returns: billing


update_billing_many

update multiples rows of table: "billing"

Arguments:

  • updates: [billing_updates!]! - updates to execute, in order

Returns: [billing_mutation_response]


update_billing_usage_cost

update data of the table: "billing_usage_cost"

Arguments:

  • _inc: billing_usage_cost_inc_input - increments the numeric columns with given value of the filtered values
  • _set: billing_usage_cost_set_input - sets the columns of the filtered rows to the given values
  • where: billing_usage_cost_bool_exp! - filter the rows which have to be updated

Returns: billing_usage_cost_mutation_response


update_billing_usage_cost_by_pk

update single row of the table: "billing_usage_cost"

Arguments:

  • _inc: billing_usage_cost_inc_input - increments the numeric columns with given value of the filtered values
  • _set: billing_usage_cost_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: billing_usage_cost_pk_columns_input!

Returns: billing_usage_cost


update_billing_usage_cost_many

update multiples rows of table: "billing_usage_cost"

Arguments:

  • updates: [billing_usage_cost_updates!]! - updates to execute, in order

Returns: [billing_usage_cost_mutation_response]


update_businessunit_funding

update data of the table: "businessunit_funding"

Arguments:

  • _inc: businessunit_funding_inc_input - increments the numeric columns with given value of the filtered values
  • _set: businessunit_funding_set_input - sets the columns of the filtered rows to the given values
  • where: businessunit_funding_bool_exp! - filter the rows which have to be updated

Returns: businessunit_funding_mutation_response


update_businessunit_funding_by_pk

update single row of the table: "businessunit_funding"

Arguments:

  • _inc: businessunit_funding_inc_input - increments the numeric columns with given value of the filtered values
  • _set: businessunit_funding_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: businessunit_funding_pk_columns_input!

Returns: businessunit_funding


update_businessunit_funding_many

update multiples rows of table: "businessunit_funding"

Arguments:

  • updates: [businessunit_funding_updates!]! - updates to execute, in order

Returns: [businessunit_funding_mutation_response]


update_funding_sources

update data of the table: "funding_sources"

Arguments:

  • _inc: funding_sources_inc_input - increments the numeric columns with given value of the filtered values
  • _set: funding_sources_set_input - sets the columns of the filtered rows to the given values
  • where: funding_sources_bool_exp! - filter the rows which have to be updated

Returns: funding_sources_mutation_response


update_funding_sources_by_pk

update single row of the table: "funding_sources"

Arguments:

  • _inc: funding_sources_inc_input - increments the numeric columns with given value of the filtered values
  • _set: funding_sources_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: funding_sources_pk_columns_input!

Returns: funding_sources


update_funding_sources_many

update multiples rows of table: "funding_sources"

Arguments:

  • updates: [funding_sources_updates!]! - updates to execute, in order

Returns: [funding_sources_mutation_response]


update_spends

update data of the table: "spends"

Arguments:

  • _append: spends_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: spends_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: spends_delete_elem_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_key: spends_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: spends_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: spends_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: spends_set_input - sets the columns of the filtered rows to the given values
  • where: spends_bool_exp! - filter the rows which have to be updated

Returns: spends_mutation_response


update_spends_by_pk

update single row of the table: "spends"

Arguments:

  • _append: spends_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: spends_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: spends_delete_elem_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_key: spends_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: spends_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: spends_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: spends_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: spends_pk_columns_input!

Returns: spends


update_spends_many

update multiples rows of table: "spends"

Arguments:

  • updates: [spends_updates!]! - updates to execute, in order

Returns: [spends_mutation_response]


update_spends_resource_group_type

update data of the table: "spends_resource_group_type"

Arguments:

  • _set: spends_resource_group_type_set_input - sets the columns of the filtered rows to the given values
  • where: spends_resource_group_type_bool_exp! - filter the rows which have to be updated

Returns: spends_resource_group_type_mutation_response


update_spends_resource_group_type_by_pk

update single row of the table: "spends_resource_group_type"

Arguments:

  • _set: spends_resource_group_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: spends_resource_group_type_pk_columns_input!

Returns: spends_resource_group_type


update_spends_resource_group_type_many

update multiples rows of table: "spends_resource_group_type"

Arguments:

  • updates: [spends_resource_group_type_updates!]! - updates to execute, in order

Returns: [spends_resource_group_type_mutation_response]


Anomalies

Detect and manage cost and operational anomalies.

anomaly_template_list

Arguments:

  • request: AnomalyTemplateListRequest!

Returns: AnomalyTemplateListResponse


delete_anomaly

delete data from the table: "anomaly"

Arguments:

  • where: anomaly_bool_exp! - filter the rows which have to be deleted

Returns: anomaly_mutation_response


delete_anomaly_by_pk

delete single row from the table: "anomaly"

Arguments:

  • id: uuid!

Returns: anomaly


delete_anomaly_change_operator

delete data from the table: "anomaly_change_operator"

Arguments:

  • where: anomaly_change_operator_bool_exp! - filter the rows which have to be deleted

Returns: anomaly_change_operator_mutation_response


delete_anomaly_change_operator_by_pk

delete single row from the table: "anomaly_change_operator"

Arguments:

  • value: String!

Returns: anomaly_change_operator


delete_anomaly_config

delete data from the table: "anomaly_config"

Arguments:

  • where: anomaly_config_bool_exp! - filter the rows which have to be deleted

Returns: anomaly_config_mutation_response


delete_anomaly_config_by_pk

delete single row from the table: "anomaly_config"

Arguments:

  • id: uuid!

Returns: anomaly_config


delete_anomaly_config_type

delete data from the table: "anomaly_config_type"

Arguments:

  • where: anomaly_config_type_bool_exp! - filter the rows which have to be deleted

Returns: anomaly_config_type_mutation_response


delete_anomaly_config_type_by_pk

delete single row from the table: "anomaly_config_type"

Arguments:

  • value: String!

Returns: anomaly_config_type


delete_anomaly_type

delete data from the table: "anomaly_type"

Arguments:

  • where: anomaly_type_bool_exp! - filter the rows which have to be deleted

Returns: anomaly_type_mutation_response


delete_anomaly_type_by_pk

delete single row from the table: "anomaly_type"

Arguments:

  • value: String!

Returns: anomaly_type


insert_anomaly

insert data into the table: "anomaly"

Arguments:

  • objects: [anomaly_insert_input!]! - the rows to be inserted
  • on_conflict: anomaly_on_conflict - upsert condition

Returns: anomaly_mutation_response


insert_anomaly_change_operator

insert data into the table: "anomaly_change_operator"

Arguments:

  • objects: [anomaly_change_operator_insert_input!]! - the rows to be inserted
  • on_conflict: anomaly_change_operator_on_conflict - upsert condition

Returns: anomaly_change_operator_mutation_response


insert_anomaly_change_operator_one

insert a single row into the table: "anomaly_change_operator"

Arguments:

  • object: anomaly_change_operator_insert_input! - the row to be inserted
  • on_conflict: anomaly_change_operator_on_conflict - upsert condition

Returns: anomaly_change_operator


insert_anomaly_config

insert data into the table: "anomaly_config"

Arguments:

  • objects: [anomaly_config_insert_input!]! - the rows to be inserted
  • on_conflict: anomaly_config_on_conflict - upsert condition

Returns: anomaly_config_mutation_response


insert_anomaly_config_one

insert a single row into the table: "anomaly_config"

Arguments:

  • object: anomaly_config_insert_input! - the row to be inserted
  • on_conflict: anomaly_config_on_conflict - upsert condition

Returns: anomaly_config


insert_anomaly_config_type

insert data into the table: "anomaly_config_type"

Arguments:

  • objects: [anomaly_config_type_insert_input!]! - the rows to be inserted
  • on_conflict: anomaly_config_type_on_conflict - upsert condition

Returns: anomaly_config_type_mutation_response


insert_anomaly_config_type_one

insert a single row into the table: "anomaly_config_type"

Arguments:

  • object: anomaly_config_type_insert_input! - the row to be inserted
  • on_conflict: anomaly_config_type_on_conflict - upsert condition

Returns: anomaly_config_type


insert_anomaly_one

insert a single row into the table: "anomaly"

Arguments:

  • object: anomaly_insert_input! - the row to be inserted
  • on_conflict: anomaly_on_conflict - upsert condition

Returns: anomaly


insert_anomaly_type

insert data into the table: "anomaly_type"

Arguments:

  • objects: [anomaly_type_insert_input!]! - the rows to be inserted
  • on_conflict: anomaly_type_on_conflict - upsert condition

Returns: anomaly_type_mutation_response


insert_anomaly_type_one

insert a single row into the table: "anomaly_type"

Arguments:

  • object: anomaly_type_insert_input! - the row to be inserted
  • on_conflict: anomaly_type_on_conflict - upsert condition

Returns: anomaly_type


update_anomaly

update data of the table: "anomaly"

Arguments:

  • _append: anomaly_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: anomaly_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: anomaly_delete_elem_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_key: anomaly_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: anomaly_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: anomaly_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: anomaly_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_bool_exp! - filter the rows which have to be updated

Returns: anomaly_mutation_response


update_anomaly_by_pk

update single row of the table: "anomaly"

Arguments:

  • _append: anomaly_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: anomaly_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: anomaly_delete_elem_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_key: anomaly_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: anomaly_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: anomaly_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: anomaly_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: anomaly_pk_columns_input!

Returns: anomaly


update_anomaly_change_operator

update data of the table: "anomaly_change_operator"

Arguments:

  • _set: anomaly_change_operator_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_change_operator_bool_exp! - filter the rows which have to be updated

Returns: anomaly_change_operator_mutation_response


update_anomaly_change_operator_by_pk

update single row of the table: "anomaly_change_operator"

Arguments:

  • _set: anomaly_change_operator_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: anomaly_change_operator_pk_columns_input!

Returns: anomaly_change_operator


update_anomaly_change_operator_many

update multiples rows of table: "anomaly_change_operator"

Arguments:

  • updates: [anomaly_change_operator_updates!]! - updates to execute, in order

Returns: [anomaly_change_operator_mutation_response]


update_anomaly_config

update data of the table: "anomaly_config"

Arguments:

  • _inc: anomaly_config_inc_input - increments the numeric columns with given value of the filtered values
  • _set: anomaly_config_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_config_bool_exp! - filter the rows which have to be updated

Returns: anomaly_config_mutation_response


update_anomaly_config_by_pk

update single row of the table: "anomaly_config"

Arguments:

  • _inc: anomaly_config_inc_input - increments the numeric columns with given value of the filtered values
  • _set: anomaly_config_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: anomaly_config_pk_columns_input!

Returns: anomaly_config


update_anomaly_config_many

update multiples rows of table: "anomaly_config"

Arguments:

  • updates: [anomaly_config_updates!]! - updates to execute, in order

Returns: [anomaly_config_mutation_response]


update_anomaly_config_type

update data of the table: "anomaly_config_type"

Arguments:

  • _set: anomaly_config_type_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_config_type_bool_exp! - filter the rows which have to be updated

Returns: anomaly_config_type_mutation_response


update_anomaly_config_type_by_pk

update single row of the table: "anomaly_config_type"

Arguments:

  • _set: anomaly_config_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: anomaly_config_type_pk_columns_input!

Returns: anomaly_config_type


update_anomaly_config_type_many

update multiples rows of table: "anomaly_config_type"

Arguments:

  • updates: [anomaly_config_type_updates!]! - updates to execute, in order

Returns: [anomaly_config_type_mutation_response]


update_anomaly_many

update multiples rows of table: "anomaly"

Arguments:

  • updates: [anomaly_updates!]! - updates to execute, in order

Returns: [anomaly_mutation_response]


update_anomaly_type

update data of the table: "anomaly_type"

Arguments:

  • _set: anomaly_type_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_type_bool_exp! - filter the rows which have to be updated

Returns: anomaly_type_mutation_response


update_anomaly_type_by_pk

update single row of the table: "anomaly_type"

Arguments:

  • _set: anomaly_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: anomaly_type_pk_columns_input!

Returns: anomaly_type


update_anomaly_type_many

update multiples rows of table: "anomaly_type"

Arguments:

  • updates: [anomaly_type_updates!]! - updates to execute, in order

Returns: [anomaly_type_mutation_response]


Events & Incidents

Event ingestion, alerting rules, triage, severity classification, and incident insights.

delete_event_bulk_operations

delete data from the table: "event_bulk_operations"

Arguments:

  • where: event_bulk_operations_bool_exp! - filter the rows which have to be deleted

Returns: event_bulk_operations_mutation_response


delete_event_bulk_operations_by_pk

delete single row from the table: "event_bulk_operations"

Arguments:

  • id: uuid!

Returns: event_bulk_operations


delete_event_classification

delete data from the table: "event_classification"

Arguments:

  • where: event_classification_bool_exp! - filter the rows which have to be deleted

Returns: event_classification_mutation_response


delete_event_classification_by_pk

delete single row from the table: "event_classification"

Arguments:

  • id: uuid!

Returns: event_classification


delete_event_correlations

delete data from the table: "event_correlations"

Arguments:

  • where: event_correlations_bool_exp! - filter the rows which have to be deleted

Returns: event_correlations_mutation_response


delete_event_correlations_by_pk

delete single row from the table: "event_correlations"

Arguments:

  • id: uuid!

Returns: event_correlations


delete_event_duplicates

delete data from the table: "event_duplicates"

Arguments:

  • where: event_duplicates_bool_exp! - filter the rows which have to be deleted

Returns: event_duplicates_mutation_response


delete_event_duplicates_by_pk

delete single row from the table: "event_duplicates"

Arguments:

  • id: uuid!

Returns: event_duplicates


delete_event_history

delete data from the table: "event_history"

Arguments:

  • where: event_history_bool_exp! - filter the rows which have to be deleted

Returns: event_history_mutation_response


delete_event_history_by_pk

delete single row from the table: "event_history"

Arguments:

  • id: uuid!

Returns: event_history


delete_event_incoming_webhooks

delete data from the table: "event_incoming_webhooks"

Arguments:

  • where: event_incoming_webhooks_bool_exp! - filter the rows which have to be deleted

Returns: event_incoming_webhooks_mutation_response


delete_event_incoming_webhooks_by_pk

delete single row from the table: "event_incoming_webhooks"

Arguments:

  • id: uuid!

Returns: event_incoming_webhooks


delete_event_log_analysis

delete data from the table: "event_log_analysis"

Arguments:

  • where: event_log_analysis_bool_exp! - filter the rows which have to be deleted

Returns: event_log_analysis_mutation_response


delete_event_log_analysis_by_pk

delete single row from the table: "event_log_analysis"

Arguments:

  • id: uuid!

Returns: event_log_analysis


delete_event_log_analysis_status

delete data from the table: "event_log_analysis_status"

Arguments:

  • where: event_log_analysis_status_bool_exp! - filter the rows which have to be deleted

Returns: event_log_analysis_status_mutation_response


delete_event_log_analysis_status_by_pk

delete single row from the table: "event_log_analysis_status"

Arguments:

  • value: String!

Returns: event_log_analysis_status


delete_event_resolution

delete data from the table: "event_resolution"

Arguments:

  • where: event_resolution_bool_exp! - filter the rows which have to be deleted

Returns: event_resolution_mutation_response


delete_event_resolution_by_pk

delete single row from the table: "event_resolution"

Arguments:

  • id: uuid!

Returns: event_resolution


delete_event_rule_severity

delete data from the table: "event_rule_severity"

Arguments:

  • where: event_rule_severity_bool_exp! - filter the rows which have to be deleted

Returns: event_rule_severity_mutation_response


delete_event_rule_severity_by_pk

delete single row from the table: "event_rule_severity"

Arguments:

  • value: String!

Returns: event_rule_severity


delete_event_rule_source

delete data from the table: "event_rule_source"

Arguments:

  • where: event_rule_source_bool_exp! - filter the rows which have to be deleted

Returns: event_rule_source_mutation_response


delete_event_rule_source_by_pk

delete single row from the table: "event_rule_source"

Arguments:

  • value: String!

Returns: event_rule_source


delete_event_rules

delete data from the table: "event_rules"

Arguments:

  • where: event_rules_bool_exp! - filter the rows which have to be deleted

Returns: event_rules_mutation_response


delete_event_rules_by_pk

delete single row from the table: "event_rules"

Arguments:

  • id: uuid!

Returns: event_rules


delete_event_severity

delete data from the table: "event_severity"

Arguments:

  • where: event_severity_bool_exp! - filter the rows which have to be deleted

Returns: event_severity_mutation_response


delete_event_severity_by_pk

delete single row from the table: "event_severity"

Arguments:

  • value: String!

Returns: event_severity


delete_event_source

delete data from the table: "event_source"

Arguments:

  • where: event_source_bool_exp! - filter the rows which have to be deleted

Returns: event_source_mutation_response


delete_event_source_by_pk

delete single row from the table: "event_source"

Arguments:

  • value: String!

Returns: event_source


delete_event_status

delete data from the table: "event_status"

Arguments:

  • where: event_status_bool_exp! - filter the rows which have to be deleted

Returns: event_status_mutation_response


delete_event_status_by_pk

delete single row from the table: "event_status"

Arguments:

  • value: String!

Returns: event_status


delete_event_triage_rules

delete data from the table: "event_triage_rules"

Arguments:

  • where: event_triage_rules_bool_exp! - filter the rows which have to be deleted

Returns: event_triage_rules_mutation_response


delete_event_triage_rules_by_pk

delete single row from the table: "event_triage_rules"

Arguments:

  • id: uuid!

Returns: event_triage_rules


delete_events

delete data from the table: "events"

Arguments:

  • where: events_bool_exp! - filter the rows which have to be deleted

Returns: events_mutation_response


delete_events_by_pk

delete single row from the table: "events"

Arguments:

  • id: uuid!

Returns: events


delete_insight

delete data from the table: "insight"

Arguments:

  • where: insight_bool_exp! - filter the rows which have to be deleted

Returns: insight_mutation_response


delete_insight_by_pk

delete single row from the table: "insight"

Arguments:

  • id: uuid!

Returns: insight


delete_insight_severity

delete data from the table: "insight_severity"

Arguments:

  • where: insight_severity_bool_exp! - filter the rows which have to be deleted

Returns: insight_severity_mutation_response


delete_insight_severity_by_pk

delete single row from the table: "insight_severity"

Arguments:

  • value: String!

Returns: insight_severity


event_backfill_triage

Backfill triage data for historical events (admin only)

Arguments:

  • batch_size: Int
  • cloud_account_id: String!
  • dry_run: Boolean
  • end_time: String
  • event_id: String
  • fingerprint: String
  • start_time: String

Returns: EventBackfillTriageOutput


event_bulk_operation_status

Check the status of a bulk classification operation

Arguments:

  • job_id: String!

Returns: GetBulkOperationStatusResponse


event_classify

Classify an event as TP/FP/BP/Duplicate with optional rule creation

Arguments:

  • apply_scope: String
  • apply_to_existing: Boolean
  • apply_until_hours: Int
  • classification: String!
  • confirmed: Boolean
  • corrected_priority: String
  • event_id: String!
  • linked_event_id: String
  • priority_direction: String
  • reason_code: String!
  • reason_text: String

Returns: ClassifyEventResponse


event_classify_preview

Preview the impact of classifying an event before confirming

Arguments:

  • apply_scope: String
  • apply_until_hours: Int
  • classification: String!
  • event_id: String!

Returns: ClassifyPreviewResponse


event_create_triage_rule

Create a new triage rule for automatic event processing

Arguments:

  • action: String!
  • action_value: String
  • apply_to_existing: Boolean
  • cloud_account_id: String!
  • description: String
  • effective_until: String
  • match_alertname: String
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: String
  • match_namespace: String
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • priority: Int
  • rule_type: String!

Returns: CreateTriageRuleResponse


event_deduplicate_correlations

Remove duplicate correlation records (admin only)

Arguments:

  • cloud_account_id: String!

Returns: EventDeduplicateCorrelationsOutput


event_delete_triage_rule

Delete or disable a triage rule

Arguments:

  • cloud_account_id: String!
  • hard_delete: Boolean
  • rule_id: String!

Returns: DeleteTriageRuleResponse


event_get_classification

Get classification record for an event

Arguments:

  • event_id: String!

Returns: EventClassification


event_get_correlations

Get correlated events for an event

Arguments:

  • event_id: String!

Returns: EventGetCorrelationsOutput


event_get_duplicate_suggestions

Get suggested original events for duplicate classification

Arguments:

  • event_id: String!

Returns: EventGetDuplicateSuggestionsOutput


event_get_duplicates

Get duplicate chain for an event

Arguments:

  • event_id: String!

Returns: EventGetDuplicatesOutput


event_get_timeline

Get chronological timeline of events related to an event

Arguments:

  • event_id: String!

Returns: EventTimelineOutput


event_get_triage

Get comprehensive triage information for an event

Arguments:

  • event_id: String!

Returns: EventGetTriageOutput


event_get_triage_rule_events

Get events that were classified by a specific triage rule

Arguments:

  • account_id: String
  • end_date: String
  • limit: Int
  • offset: Int
  • rule_id: String!
  • start_date: String

Returns: EventGetTriageRuleEventsOutput


event_get_triage_rules

Get triage rules for an account

Arguments:

  • cloud_account_id: String
  • enabled: Boolean
  • rule_type: String

Returns: EventGetTriageRulesOutput


event_preview_triage_rule

Preview how many existing events would match a triage rule criteria

Arguments:

  • action: String!
  • cloud_account_id: String!
  • match_alertname: String
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: String
  • match_namespace: String
  • match_priority: String
  • match_service: String
  • match_source: String
  • rule_type: String!

Returns: EventPreviewTriageRuleOutput


event_resolve

Arguments:

  • object: event_resolve_input!

Returns: event_resolve_output


event_toggle_system_rule_override

Toggle system rule override for an account (enable/disable a system rule)

Arguments:

  • cloud_account_id: String!
  • disabled: Boolean!
  • system_rule_id: String!

Returns: ToggleSystemRuleOverrideResponse


event_update

Arguments:

  • request: EventUpdateRequest!

Returns: EventsRowResponse


event_update_nb_status

Update the nb_status (triage status) of an event

Arguments:

  • event_id: String!
  • nb_status: String!
  • snoozed_until: String

Returns: UpdateNBStatusResponse


event_update_triage_rule

Update an existing triage rule

Arguments:

  • action: String!
  • action_value: String
  • apply_to_existing: Boolean
  • cloud_account_id: String!
  • description: String
  • effective_until: String
  • match_alertname: String
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: String
  • match_namespace: String
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • priority: Int
  • rule_id: String!
  • rule_type: String!

Returns: UpdateTriageRuleResponse


insert_event_bulk_operations

insert data into the table: "event_bulk_operations"

Arguments:

  • objects: [event_bulk_operations_insert_input!]! - the rows to be inserted
  • on_conflict: event_bulk_operations_on_conflict - upsert condition

Returns: event_bulk_operations_mutation_response


insert_event_bulk_operations_one

insert a single row into the table: "event_bulk_operations"

Arguments:

  • object: event_bulk_operations_insert_input! - the row to be inserted
  • on_conflict: event_bulk_operations_on_conflict - upsert condition

Returns: event_bulk_operations


insert_event_classification

insert data into the table: "event_classification"

Arguments:

  • objects: [event_classification_insert_input!]! - the rows to be inserted
  • on_conflict: event_classification_on_conflict - upsert condition

Returns: event_classification_mutation_response


insert_event_classification_one

insert a single row into the table: "event_classification"

Arguments:

  • object: event_classification_insert_input! - the row to be inserted
  • on_conflict: event_classification_on_conflict - upsert condition

Returns: event_classification


insert_event_correlations

insert data into the table: "event_correlations"

Arguments:

  • objects: [event_correlations_insert_input!]! - the rows to be inserted
  • on_conflict: event_correlations_on_conflict - upsert condition

Returns: event_correlations_mutation_response


insert_event_correlations_one

insert a single row into the table: "event_correlations"

Arguments:

  • object: event_correlations_insert_input! - the row to be inserted
  • on_conflict: event_correlations_on_conflict - upsert condition

Returns: event_correlations


insert_event_duplicates

insert data into the table: "event_duplicates"

Arguments:

  • objects: [event_duplicates_insert_input!]! - the rows to be inserted
  • on_conflict: event_duplicates_on_conflict - upsert condition

Returns: event_duplicates_mutation_response


insert_event_duplicates_one

insert a single row into the table: "event_duplicates"

Arguments:

  • object: event_duplicates_insert_input! - the row to be inserted
  • on_conflict: event_duplicates_on_conflict - upsert condition

Returns: event_duplicates


insert_event_history

insert data into the table: "event_history"

Arguments:

  • objects: [event_history_insert_input!]! - the rows to be inserted
  • on_conflict: event_history_on_conflict - upsert condition

Returns: event_history_mutation_response


insert_event_history_one

insert a single row into the table: "event_history"

Arguments:

  • object: event_history_insert_input! - the row to be inserted
  • on_conflict: event_history_on_conflict - upsert condition

Returns: event_history


insert_event_incoming_webhooks

insert data into the table: "event_incoming_webhooks"

Arguments:

  • objects: [event_incoming_webhooks_insert_input!]! - the rows to be inserted
  • on_conflict: event_incoming_webhooks_on_conflict - upsert condition

Returns: event_incoming_webhooks_mutation_response


insert_event_incoming_webhooks_one

insert a single row into the table: "event_incoming_webhooks"

Arguments:

  • object: event_incoming_webhooks_insert_input! - the row to be inserted
  • on_conflict: event_incoming_webhooks_on_conflict - upsert condition

Returns: event_incoming_webhooks


insert_event_log_analysis

insert data into the table: "event_log_analysis"

Arguments:

  • objects: [event_log_analysis_insert_input!]! - the rows to be inserted
  • on_conflict: event_log_analysis_on_conflict - upsert condition

Returns: event_log_analysis_mutation_response


insert_event_log_analysis_one

insert a single row into the table: "event_log_analysis"

Arguments:

  • object: event_log_analysis_insert_input! - the row to be inserted
  • on_conflict: event_log_analysis_on_conflict - upsert condition

Returns: event_log_analysis


insert_event_log_analysis_status

insert data into the table: "event_log_analysis_status"

Arguments:

  • objects: [event_log_analysis_status_insert_input!]! - the rows to be inserted
  • on_conflict: event_log_analysis_status_on_conflict - upsert condition

Returns: event_log_analysis_status_mutation_response


insert_event_log_analysis_status_one

insert a single row into the table: "event_log_analysis_status"

Arguments:

  • object: event_log_analysis_status_insert_input! - the row to be inserted
  • on_conflict: event_log_analysis_status_on_conflict - upsert condition

Returns: event_log_analysis_status


insert_event_resolution

insert data into the table: "event_resolution"

Arguments:

  • objects: [event_resolution_insert_input!]! - the rows to be inserted
  • on_conflict: event_resolution_on_conflict - upsert condition

Returns: event_resolution_mutation_response


insert_event_resolution_one

insert a single row into the table: "event_resolution"

Arguments:

  • object: event_resolution_insert_input! - the row to be inserted
  • on_conflict: event_resolution_on_conflict - upsert condition

Returns: event_resolution


insert_event_rule_severity

insert data into the table: "event_rule_severity"

Arguments:

  • objects: [event_rule_severity_insert_input!]! - the rows to be inserted
  • on_conflict: event_rule_severity_on_conflict - upsert condition

Returns: event_rule_severity_mutation_response


insert_event_rule_severity_one

insert a single row into the table: "event_rule_severity"

Arguments:

  • object: event_rule_severity_insert_input! - the row to be inserted
  • on_conflict: event_rule_severity_on_conflict - upsert condition

Returns: event_rule_severity


insert_event_rule_source

insert data into the table: "event_rule_source"

Arguments:

  • objects: [event_rule_source_insert_input!]! - the rows to be inserted
  • on_conflict: event_rule_source_on_conflict - upsert condition

Returns: event_rule_source_mutation_response


insert_event_rule_source_one

insert a single row into the table: "event_rule_source"

Arguments:

  • object: event_rule_source_insert_input! - the row to be inserted
  • on_conflict: event_rule_source_on_conflict - upsert condition

Returns: event_rule_source


insert_event_rules

insert data into the table: "event_rules"

Arguments:

  • objects: [event_rules_insert_input!]! - the rows to be inserted
  • on_conflict: event_rules_on_conflict - upsert condition

Returns: event_rules_mutation_response


insert_event_rules_one

insert a single row into the table: "event_rules"

Arguments:

  • object: event_rules_insert_input! - the row to be inserted
  • on_conflict: event_rules_on_conflict - upsert condition

Returns: event_rules


insert_event_severity

insert data into the table: "event_severity"

Arguments:

  • objects: [event_severity_insert_input!]! - the rows to be inserted
  • on_conflict: event_severity_on_conflict - upsert condition

Returns: event_severity_mutation_response


insert_event_severity_one

insert a single row into the table: "event_severity"

Arguments:

  • object: event_severity_insert_input! - the row to be inserted
  • on_conflict: event_severity_on_conflict - upsert condition

Returns: event_severity


insert_event_source

insert data into the table: "event_source"

Arguments:

  • objects: [event_source_insert_input!]! - the rows to be inserted
  • on_conflict: event_source_on_conflict - upsert condition

Returns: event_source_mutation_response


insert_event_source_one

insert a single row into the table: "event_source"

Arguments:

  • object: event_source_insert_input! - the row to be inserted
  • on_conflict: event_source_on_conflict - upsert condition

Returns: event_source


insert_event_status

insert data into the table: "event_status"

Arguments:

  • objects: [event_status_insert_input!]! - the rows to be inserted
  • on_conflict: event_status_on_conflict - upsert condition

Returns: event_status_mutation_response


insert_event_status_one

insert a single row into the table: "event_status"

Arguments:

  • object: event_status_insert_input! - the row to be inserted
  • on_conflict: event_status_on_conflict - upsert condition

Returns: event_status


insert_event_triage_rules

insert data into the table: "event_triage_rules"

Arguments:

  • objects: [event_triage_rules_insert_input!]! - the rows to be inserted
  • on_conflict: event_triage_rules_on_conflict - upsert condition

Returns: event_triage_rules_mutation_response


insert_event_triage_rules_one

insert a single row into the table: "event_triage_rules"

Arguments:

  • object: event_triage_rules_insert_input! - the row to be inserted
  • on_conflict: event_triage_rules_on_conflict - upsert condition

Returns: event_triage_rules


insert_events

insert data into the table: "events"

Arguments:

  • objects: [events_insert_input!]! - the rows to be inserted
  • on_conflict: events_on_conflict - upsert condition

Returns: events_mutation_response


insert_events_one

insert a single row into the table: "events"

Arguments:

  • object: events_insert_input! - the row to be inserted
  • on_conflict: events_on_conflict - upsert condition

Returns: events


insert_insight

insert data into the table: "insight"

Arguments:

  • objects: [insight_insert_input!]! - the rows to be inserted
  • on_conflict: insight_on_conflict - upsert condition

Returns: insight_mutation_response


insert_insight_one

insert a single row into the table: "insight"

Arguments:

  • object: insight_insert_input! - the row to be inserted
  • on_conflict: insight_on_conflict - upsert condition

Returns: insight


insert_insight_severity

insert data into the table: "insight_severity"

Arguments:

  • objects: [insight_severity_insert_input!]! - the rows to be inserted
  • on_conflict: insight_severity_on_conflict - upsert condition

Returns: insight_severity_mutation_response


insert_insight_severity_one

insert a single row into the table: "insight_severity"

Arguments:

  • object: insight_severity_insert_input! - the row to be inserted
  • on_conflict: insight_severity_on_conflict - upsert condition

Returns: insight_severity


update_event_bulk_operations

update data of the table: "event_bulk_operations"

Arguments:

  • _inc: event_bulk_operations_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_bulk_operations_set_input - sets the columns of the filtered rows to the given values
  • where: event_bulk_operations_bool_exp! - filter the rows which have to be updated

Returns: event_bulk_operations_mutation_response


update_event_bulk_operations_by_pk

update single row of the table: "event_bulk_operations"

Arguments:

  • _inc: event_bulk_operations_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_bulk_operations_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_bulk_operations_pk_columns_input!

Returns: event_bulk_operations


update_event_bulk_operations_many

update multiples rows of table: "event_bulk_operations"

Arguments:

  • updates: [event_bulk_operations_updates!]! - updates to execute, in order

Returns: [event_bulk_operations_mutation_response]


update_event_classification

update data of the table: "event_classification"

Arguments:

  • _append: event_classification_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_classification_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_classification_delete_elem_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_key: event_classification_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: event_classification_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: event_classification_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_classification_set_input - sets the columns of the filtered rows to the given values
  • where: event_classification_bool_exp! - filter the rows which have to be updated

Returns: event_classification_mutation_response


update_event_classification_by_pk

update single row of the table: "event_classification"

Arguments:

  • _append: event_classification_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_classification_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_classification_delete_elem_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_key: event_classification_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: event_classification_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: event_classification_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_classification_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_classification_pk_columns_input!

Returns: event_classification


update_event_classification_many

update multiples rows of table: "event_classification"

Arguments:

  • updates: [event_classification_updates!]! - updates to execute, in order

Returns: [event_classification_mutation_response]


update_event_correlations

update data of the table: "event_correlations"

Arguments:

  • _inc: event_correlations_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_correlations_set_input - sets the columns of the filtered rows to the given values
  • where: event_correlations_bool_exp! - filter the rows which have to be updated

Returns: event_correlations_mutation_response


update_event_correlations_by_pk

update single row of the table: "event_correlations"

Arguments:

  • _inc: event_correlations_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_correlations_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_correlations_pk_columns_input!

Returns: event_correlations


update_event_correlations_many

update multiples rows of table: "event_correlations"

Arguments:

  • updates: [event_correlations_updates!]! - updates to execute, in order

Returns: [event_correlations_mutation_response]


update_event_duplicates

update data of the table: "event_duplicates"

Arguments:

  • _inc: event_duplicates_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_duplicates_set_input - sets the columns of the filtered rows to the given values
  • where: event_duplicates_bool_exp! - filter the rows which have to be updated

Returns: event_duplicates_mutation_response


update_event_duplicates_by_pk

update single row of the table: "event_duplicates"

Arguments:

  • _inc: event_duplicates_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_duplicates_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_duplicates_pk_columns_input!

Returns: event_duplicates


update_event_duplicates_many

update multiples rows of table: "event_duplicates"

Arguments:

  • updates: [event_duplicates_updates!]! - updates to execute, in order

Returns: [event_duplicates_mutation_response]


update_event_history

update data of the table: "event_history"

Arguments:

  • _append: event_history_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_history_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_history_delete_elem_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_key: event_history_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_history_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_history_set_input - sets the columns of the filtered rows to the given values
  • where: event_history_bool_exp! - filter the rows which have to be updated

Returns: event_history_mutation_response


update_event_history_by_pk

update single row of the table: "event_history"

Arguments:

  • _append: event_history_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_history_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_history_delete_elem_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_key: event_history_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_history_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_history_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_history_pk_columns_input!

Returns: event_history


update_event_history_many

update multiples rows of table: "event_history"

Arguments:

  • updates: [event_history_updates!]! - updates to execute, in order

Returns: [event_history_mutation_response]


update_event_incoming_webhooks

update data of the table: "event_incoming_webhooks"

Arguments:

  • _set: event_incoming_webhooks_set_input - sets the columns of the filtered rows to the given values
  • where: event_incoming_webhooks_bool_exp! - filter the rows which have to be updated

Returns: event_incoming_webhooks_mutation_response


update_event_incoming_webhooks_by_pk

update single row of the table: "event_incoming_webhooks"

Arguments:

  • _set: event_incoming_webhooks_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_incoming_webhooks_pk_columns_input!

Returns: event_incoming_webhooks


update_event_incoming_webhooks_many

update multiples rows of table: "event_incoming_webhooks"

Arguments:

  • updates: [event_incoming_webhooks_updates!]! - updates to execute, in order

Returns: [event_incoming_webhooks_mutation_response]


update_event_log_analysis

update data of the table: "event_log_analysis"

Arguments:

  • _set: event_log_analysis_set_input - sets the columns of the filtered rows to the given values
  • where: event_log_analysis_bool_exp! - filter the rows which have to be updated

Returns: event_log_analysis_mutation_response


update_event_log_analysis_by_pk

update single row of the table: "event_log_analysis"

Arguments:

  • _set: event_log_analysis_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_log_analysis_pk_columns_input!

Returns: event_log_analysis


update_event_log_analysis_many

update multiples rows of table: "event_log_analysis"

Arguments:

  • updates: [event_log_analysis_updates!]! - updates to execute, in order

Returns: [event_log_analysis_mutation_response]


update_event_log_analysis_status

update data of the table: "event_log_analysis_status"

Arguments:

  • _set: event_log_analysis_status_set_input - sets the columns of the filtered rows to the given values
  • where: event_log_analysis_status_bool_exp! - filter the rows which have to be updated

Returns: event_log_analysis_status_mutation_response


update_event_log_analysis_status_by_pk

update single row of the table: "event_log_analysis_status"

Arguments:

  • _set: event_log_analysis_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_log_analysis_status_pk_columns_input!

Returns: event_log_analysis_status


update_event_log_analysis_status_many

update multiples rows of table: "event_log_analysis_status"

Arguments:

  • updates: [event_log_analysis_status_updates!]! - updates to execute, in order

Returns: [event_log_analysis_status_mutation_response]


update_event_resolution

update data of the table: "event_resolution"

Arguments:

  • _append: event_resolution_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_resolution_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_resolution_delete_elem_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_key: event_resolution_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_resolution_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_resolution_set_input - sets the columns of the filtered rows to the given values
  • where: event_resolution_bool_exp! - filter the rows which have to be updated

Returns: event_resolution_mutation_response


update_event_resolution_by_pk

update single row of the table: "event_resolution"

Arguments:

  • _append: event_resolution_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_resolution_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_resolution_delete_elem_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_key: event_resolution_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_resolution_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_resolution_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_resolution_pk_columns_input!

Returns: event_resolution


update_event_resolution_many

update multiples rows of table: "event_resolution"

Arguments:

  • updates: [event_resolution_updates!]! - updates to execute, in order

Returns: [event_resolution_mutation_response]


update_event_rule_severity

update data of the table: "event_rule_severity"

Arguments:

  • _set: event_rule_severity_set_input - sets the columns of the filtered rows to the given values
  • where: event_rule_severity_bool_exp! - filter the rows which have to be updated

Returns: event_rule_severity_mutation_response


update_event_rule_severity_by_pk

update single row of the table: "event_rule_severity"

Arguments:

  • _set: event_rule_severity_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_rule_severity_pk_columns_input!

Returns: event_rule_severity


update_event_rule_severity_many

update multiples rows of table: "event_rule_severity"

Arguments:

  • updates: [event_rule_severity_updates!]! - updates to execute, in order

Returns: [event_rule_severity_mutation_response]


update_event_rule_source

update data of the table: "event_rule_source"

Arguments:

  • _set: event_rule_source_set_input - sets the columns of the filtered rows to the given values
  • where: event_rule_source_bool_exp! - filter the rows which have to be updated

Returns: event_rule_source_mutation_response


update_event_rule_source_by_pk

update single row of the table: "event_rule_source"

Arguments:

  • _set: event_rule_source_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_rule_source_pk_columns_input!

Returns: event_rule_source


update_event_rule_source_many

update multiples rows of table: "event_rule_source"

Arguments:

  • updates: [event_rule_source_updates!]! - updates to execute, in order

Returns: [event_rule_source_mutation_response]


update_event_rules

update data of the table: "event_rules"

Arguments:

  • _append: event_rules_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_rules_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_rules_delete_elem_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_key: event_rules_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_rules_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_rules_set_input - sets the columns of the filtered rows to the given values
  • where: event_rules_bool_exp! - filter the rows which have to be updated

Returns: event_rules_mutation_response


update_event_rules_by_pk

update single row of the table: "event_rules"

Arguments:

  • _append: event_rules_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_rules_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_rules_delete_elem_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_key: event_rules_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_rules_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_rules_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_rules_pk_columns_input!

Returns: event_rules


update_event_rules_many

update multiples rows of table: "event_rules"

Arguments:

  • updates: [event_rules_updates!]! - updates to execute, in order

Returns: [event_rules_mutation_response]


update_event_severity

update data of the table: "event_severity"

Arguments:

  • _set: event_severity_set_input - sets the columns of the filtered rows to the given values
  • where: event_severity_bool_exp! - filter the rows which have to be updated

Returns: event_severity_mutation_response


update_event_severity_by_pk

update single row of the table: "event_severity"

Arguments:

  • _set: event_severity_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_severity_pk_columns_input!

Returns: event_severity


update_event_severity_many

update multiples rows of table: "event_severity"

Arguments:

  • updates: [event_severity_updates!]! - updates to execute, in order

Returns: [event_severity_mutation_response]


update_event_source

update data of the table: "event_source"

Arguments:

  • _set: event_source_set_input - sets the columns of the filtered rows to the given values
  • where: event_source_bool_exp! - filter the rows which have to be updated

Returns: event_source_mutation_response


update_event_source_by_pk

update single row of the table: "event_source"

Arguments:

  • _set: event_source_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_source_pk_columns_input!

Returns: event_source


update_event_source_many

update multiples rows of table: "event_source"

Arguments:

  • updates: [event_source_updates!]! - updates to execute, in order

Returns: [event_source_mutation_response]


update_event_status

update data of the table: "event_status"

Arguments:

  • _set: event_status_set_input - sets the columns of the filtered rows to the given values
  • where: event_status_bool_exp! - filter the rows which have to be updated

Returns: event_status_mutation_response


update_event_status_by_pk

update single row of the table: "event_status"

Arguments:

  • _set: event_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_status_pk_columns_input!

Returns: event_status


update_event_status_many

update multiples rows of table: "event_status"

Arguments:

  • updates: [event_status_updates!]! - updates to execute, in order

Returns: [event_status_mutation_response]


update_event_triage_rules

update data of the table: "event_triage_rules"

Arguments:

  • _append: event_triage_rules_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_triage_rules_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_triage_rules_delete_elem_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_key: event_triage_rules_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: event_triage_rules_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: event_triage_rules_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_triage_rules_set_input - sets the columns of the filtered rows to the given values
  • where: event_triage_rules_bool_exp! - filter the rows which have to be updated

Returns: event_triage_rules_mutation_response


update_event_triage_rules_by_pk

update single row of the table: "event_triage_rules"

Arguments:

  • _append: event_triage_rules_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_triage_rules_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_triage_rules_delete_elem_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_key: event_triage_rules_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: event_triage_rules_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: event_triage_rules_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_triage_rules_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: event_triage_rules_pk_columns_input!

Returns: event_triage_rules


update_event_triage_rules_many

update multiples rows of table: "event_triage_rules"

Arguments:

  • updates: [event_triage_rules_updates!]! - updates to execute, in order

Returns: [event_triage_rules_mutation_response]


update_events

update data of the table: "events"

Arguments:

  • _append: events_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: events_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: events_delete_elem_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_key: events_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: events_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: events_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: events_set_input - sets the columns of the filtered rows to the given values
  • where: events_bool_exp! - filter the rows which have to be updated

Returns: events_mutation_response


update_events_by_pk

update single row of the table: "events"

Arguments:

  • _append: events_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: events_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: events_delete_elem_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_key: events_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: events_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: events_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: events_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: events_pk_columns_input!

Returns: events


update_events_many

update multiples rows of table: "events"

Arguments:

  • updates: [events_updates!]! - updates to execute, in order

Returns: [events_mutation_response]


update_insight

update data of the table: "insight"

Arguments:

  • _append: insight_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: insight_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: insight_delete_elem_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_key: insight_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: insight_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: insight_set_input - sets the columns of the filtered rows to the given values
  • where: insight_bool_exp! - filter the rows which have to be updated

Returns: insight_mutation_response


update_insight_by_pk

update single row of the table: "insight"

Arguments:

  • _append: insight_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: insight_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: insight_delete_elem_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_key: insight_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: insight_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: insight_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: insight_pk_columns_input!

Returns: insight


update_insight_many

update multiples rows of table: "insight"

Arguments:

  • updates: [insight_updates!]! - updates to execute, in order

Returns: [insight_mutation_response]


update_insight_severity

update data of the table: "insight_severity"

Arguments:

  • _set: insight_severity_set_input - sets the columns of the filtered rows to the given values
  • where: insight_severity_bool_exp! - filter the rows which have to be updated

Returns: insight_severity_mutation_response


update_insight_severity_by_pk

update single row of the table: "insight_severity"

Arguments:

  • _set: insight_severity_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: insight_severity_pk_columns_input!

Returns: insight_severity


update_insight_severity_many

update multiples rows of table: "insight_severity"

Arguments:

  • updates: [insight_severity_updates!]! - updates to execute, in order

Returns: [insight_severity_mutation_response]


Recommendations

Cost optimization, security, and misconfiguration recommendations with estimated savings.

apply_recommendations

Arguments:

  • object: apply_recommendation_input!

Returns: apply_recommendation_output


delete_recommendation

delete data from the table: "recommendation"

Arguments:

  • where: recommendation_bool_exp! - filter the rows which have to be deleted

Returns: recommendation_mutation_response


delete_recommendation_action_type

delete data from the table: "recommendation_action_type"

Arguments:

  • where: recommendation_action_type_bool_exp! - filter the rows which have to be deleted

Returns: recommendation_action_type_mutation_response


delete_recommendation_action_type_by_pk

delete single row from the table: "recommendation_action_type"

Arguments:

  • value: String!

Returns: recommendation_action_type


delete_recommendation_by_pk

delete single row from the table: "recommendation"

Arguments:

  • id: uuid!

Returns: recommendation


delete_recommendation_category_type

delete data from the table: "recommendation_category_type"

Arguments:

  • where: recommendation_category_type_bool_exp! - filter the rows which have to be deleted

Returns: recommendation_category_type_mutation_response


delete_recommendation_category_type_by_pk

delete single row from the table: "recommendation_category_type"

Arguments:

  • value: String!

Returns: recommendation_category_type


delete_recommendation_resolution

delete data from the table: "recommendation_resolution"

Arguments:

  • where: recommendation_resolution_bool_exp! - filter the rows which have to be deleted

Returns: recommendation_resolution_mutation_response


delete_recommendation_resolution_by_pk

delete single row from the table: "recommendation_resolution"

Arguments:

  • id: uuid!

Returns: recommendation_resolution


delete_recommendation_severity_type

delete data from the table: "recommendation_severity_type"

Arguments:

  • where: recommendation_severity_type_bool_exp! - filter the rows which have to be deleted

Returns: recommendation_severity_type_mutation_response


delete_recommendation_severity_type_by_pk

delete single row from the table: "recommendation_severity_type"

Arguments:

  • value: String!

Returns: recommendation_severity_type


delete_recommendation_status_type

delete data from the table: "recommendation_status_type"

Arguments:

  • where: recommendation_status_type_bool_exp! - filter the rows which have to be deleted

Returns: recommendation_status_type_mutation_response


delete_recommendation_status_type_by_pk

delete single row from the table: "recommendation_status_type"

Arguments:

  • value: String!

Returns: recommendation_status_type


insert_recommendation

insert data into the table: "recommendation"

Arguments:

  • objects: [recommendation_insert_input!]! - the rows to be inserted
  • on_conflict: recommendation_on_conflict - upsert condition

Returns: recommendation_mutation_response


insert_recommendation_action_type

insert data into the table: "recommendation_action_type"

Arguments:

  • objects: [recommendation_action_type_insert_input!]! - the rows to be inserted
  • on_conflict: recommendation_action_type_on_conflict - upsert condition

Returns: recommendation_action_type_mutation_response


insert_recommendation_action_type_one

insert a single row into the table: "recommendation_action_type"

Arguments:

  • object: recommendation_action_type_insert_input! - the row to be inserted
  • on_conflict: recommendation_action_type_on_conflict - upsert condition

Returns: recommendation_action_type


insert_recommendation_category_type

insert data into the table: "recommendation_category_type"

Arguments:

  • objects: [recommendation_category_type_insert_input!]! - the rows to be inserted
  • on_conflict: recommendation_category_type_on_conflict - upsert condition

Returns: recommendation_category_type_mutation_response


insert_recommendation_category_type_one

insert a single row into the table: "recommendation_category_type"

Arguments:

  • object: recommendation_category_type_insert_input! - the row to be inserted
  • on_conflict: recommendation_category_type_on_conflict - upsert condition

Returns: recommendation_category_type


insert_recommendation_one

insert a single row into the table: "recommendation"

Arguments:

  • object: recommendation_insert_input! - the row to be inserted
  • on_conflict: recommendation_on_conflict - upsert condition

Returns: recommendation


insert_recommendation_resolution

insert data into the table: "recommendation_resolution"

Arguments:

  • objects: [recommendation_resolution_insert_input!]! - the rows to be inserted
  • on_conflict: recommendation_resolution_on_conflict - upsert condition

Returns: recommendation_resolution_mutation_response


insert_recommendation_resolution_one

insert a single row into the table: "recommendation_resolution"

Arguments:

  • object: recommendation_resolution_insert_input! - the row to be inserted
  • on_conflict: recommendation_resolution_on_conflict - upsert condition

Returns: recommendation_resolution


insert_recommendation_severity_type

insert data into the table: "recommendation_severity_type"

Arguments:

  • objects: [recommendation_severity_type_insert_input!]! - the rows to be inserted
  • on_conflict: recommendation_severity_type_on_conflict - upsert condition

Returns: recommendation_severity_type_mutation_response


insert_recommendation_severity_type_one

insert a single row into the table: "recommendation_severity_type"

Arguments:

  • object: recommendation_severity_type_insert_input! - the row to be inserted
  • on_conflict: recommendation_severity_type_on_conflict - upsert condition

Returns: recommendation_severity_type


insert_recommendation_status_type

insert data into the table: "recommendation_status_type"

Arguments:

  • objects: [recommendation_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: recommendation_status_type_on_conflict - upsert condition

Returns: recommendation_status_type_mutation_response


insert_recommendation_status_type_one

insert a single row into the table: "recommendation_status_type"

Arguments:

  • object: recommendation_status_type_insert_input! - the row to be inserted
  • on_conflict: recommendation_status_type_on_conflict - upsert condition

Returns: recommendation_status_type


recommendation_export

Arguments:

  • request: ExportRecommendationRequest!

Returns: ExportRecommendationResponse


recommendation_job_create

Arguments:

  • account_id: String!
  • job_name: String!

Returns: recommendation_job_create_output


update_recommendation

update data of the table: "recommendation"

Arguments:

  • _append: recommendation_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: recommendation_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: recommendation_delete_elem_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_key: recommendation_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: recommendation_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: recommendation_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: recommendation_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_bool_exp! - filter the rows which have to be updated

Returns: recommendation_mutation_response


update_recommendation_action_type

update data of the table: "recommendation_action_type"

Arguments:

  • _set: recommendation_action_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_action_type_bool_exp! - filter the rows which have to be updated

Returns: recommendation_action_type_mutation_response


update_recommendation_action_type_by_pk

update single row of the table: "recommendation_action_type"

Arguments:

  • _set: recommendation_action_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: recommendation_action_type_pk_columns_input!

Returns: recommendation_action_type


update_recommendation_action_type_many

update multiples rows of table: "recommendation_action_type"

Arguments:

  • updates: [recommendation_action_type_updates!]! - updates to execute, in order

Returns: [recommendation_action_type_mutation_response]


update_recommendation_by_pk

update single row of the table: "recommendation"

Arguments:

  • _append: recommendation_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: recommendation_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: recommendation_delete_elem_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_key: recommendation_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: recommendation_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: recommendation_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: recommendation_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: recommendation_pk_columns_input!

Returns: recommendation


update_recommendation_category_type

update data of the table: "recommendation_category_type"

Arguments:

  • _set: recommendation_category_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_category_type_bool_exp! - filter the rows which have to be updated

Returns: recommendation_category_type_mutation_response


update_recommendation_category_type_by_pk

update single row of the table: "recommendation_category_type"

Arguments:

  • _set: recommendation_category_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: recommendation_category_type_pk_columns_input!

Returns: recommendation_category_type


update_recommendation_category_type_many

update multiples rows of table: "recommendation_category_type"

Arguments:

  • updates: [recommendation_category_type_updates!]! - updates to execute, in order

Returns: [recommendation_category_type_mutation_response]


update_recommendation_many

update multiples rows of table: "recommendation"

Arguments:

  • updates: [recommendation_updates!]! - updates to execute, in order

Returns: [recommendation_mutation_response]


update_recommendation_resolution

update data of the table: "recommendation_resolution"

Arguments:

  • _append: recommendation_resolution_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: recommendation_resolution_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: recommendation_resolution_delete_elem_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_key: recommendation_resolution_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: recommendation_resolution_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: recommendation_resolution_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_resolution_bool_exp! - filter the rows which have to be updated

Returns: recommendation_resolution_mutation_response


update_recommendation_resolution_by_pk

update single row of the table: "recommendation_resolution"

Arguments:

  • _append: recommendation_resolution_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: recommendation_resolution_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: recommendation_resolution_delete_elem_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_key: recommendation_resolution_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: recommendation_resolution_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: recommendation_resolution_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: recommendation_resolution_pk_columns_input!

Returns: recommendation_resolution


update_recommendation_resolution_many

update multiples rows of table: "recommendation_resolution"

Arguments:

  • updates: [recommendation_resolution_updates!]! - updates to execute, in order

Returns: [recommendation_resolution_mutation_response]


update_recommendation_severity_type

update data of the table: "recommendation_severity_type"

Arguments:

  • _set: recommendation_severity_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_severity_type_bool_exp! - filter the rows which have to be updated

Returns: recommendation_severity_type_mutation_response


update_recommendation_severity_type_by_pk

update single row of the table: "recommendation_severity_type"

Arguments:

  • _set: recommendation_severity_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: recommendation_severity_type_pk_columns_input!

Returns: recommendation_severity_type


update_recommendation_severity_type_many

update multiples rows of table: "recommendation_severity_type"

Arguments:

  • updates: [recommendation_severity_type_updates!]! - updates to execute, in order

Returns: [recommendation_severity_type_mutation_response]


update_recommendation_status_type

update data of the table: "recommendation_status_type"

Arguments:

  • _set: recommendation_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_status_type_bool_exp! - filter the rows which have to be updated

Returns: recommendation_status_type_mutation_response


update_recommendation_status_type_by_pk

update single row of the table: "recommendation_status_type"

Arguments:

  • _set: recommendation_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: recommendation_status_type_pk_columns_input!

Returns: recommendation_status_type


update_recommendation_status_type_many

update multiples rows of table: "recommendation_status_type"

Arguments:

  • updates: [recommendation_status_type_updates!]! - updates to execute, in order

Returns: [recommendation_status_type_mutation_response]


Cloud Infrastructure

Cloud accounts, resources, provider-specific operations (AWS, Azure), and resource metrics.

aws_cloud_formation

get aws cloud formation url

Arguments:

  • object: AWSCloudFormationInput!

Returns: AWSCloudFormationOutput


aws_onboard_status

Check AWS single-account onboarding status via SNS callback

Arguments:

  • object: AwsOnboardStatusInput!

Returns: AwsOnboardStatusOutput


aws_org_onboard

Onboard AWS organization

Arguments:

  • object: AwsOrgOnboardInput!

Returns: AwsOrgOnboardOutput


aws_org_refresh_token

Refresh AWS organization verification token

Returns: AwsOrgRefreshTokenOutput


aws_org_status

Get AWS organization onboarding status

Returns: AwsOrgStatusOutput


azure_eventgrid_onboard

Generate Azure ARM template deployment URL for EventGrid integration

Arguments:

  • object: AzureEventGridOnboardInput!

Returns: AzureEventGridOnboardOutput


cloud_accounts_delete

Arguments:

  • id: String!

Returns: DeleteByPkResponse


cloud_accounts_insert_one

Arguments:

  • object: cloud_accounts_insert_one_input!

Returns: cloud_accounts_insert_one_output


delete_active_resources

delete data from the table: "active_resources"

Arguments:

  • where: active_resources_bool_exp! - filter the rows which have to be deleted

Returns: active_resources_mutation_response


delete_active_resources_by_pk

delete single row from the table: "active_resources"

Arguments:

  • cloud_account_id: uuid!
  • external_resource_id: String!
  • resource_type: String!
  • tenant_id: uuid!

Returns: active_resources


delete_cloud_account_attrs

delete data from the table: "cloud_account_attrs"

Arguments:

  • where: cloud_account_attrs_bool_exp! - filter the rows which have to be deleted

Returns: cloud_account_attrs_mutation_response


delete_cloud_account_attrs_by_pk

delete single row from the table: "cloud_account_attrs"

Arguments:

  • id: uuid!

Returns: cloud_account_attrs


delete_cloud_account_onboarding_errors

delete data from the table: "cloud_account_onboarding_errors"

Arguments:

  • where: cloud_account_onboarding_errors_bool_exp! - filter the rows which have to be deleted

Returns: cloud_account_onboarding_errors_mutation_response


delete_cloud_account_onboarding_errors_by_pk

delete single row from the table: "cloud_account_onboarding_errors"

Arguments:

  • id: uuid!

Returns: cloud_account_onboarding_errors


delete_cloud_account_score

delete data from the table: "cloud_account_score"

Arguments:

  • where: cloud_account_score_bool_exp! - filter the rows which have to be deleted

Returns: cloud_account_score_mutation_response


delete_cloud_account_score_by_pk

delete single row from the table: "cloud_account_score"

Arguments:

  • id: uuid!

Returns: cloud_account_score


delete_cloud_account_status_type

delete data from the table: "cloud_account_status_type"

Arguments:

  • where: cloud_account_status_type_bool_exp! - filter the rows which have to be deleted

Returns: cloud_account_status_type_mutation_response


delete_cloud_account_status_type_by_pk

delete single row from the table: "cloud_account_status_type"

Arguments:

  • value: String!

Returns: cloud_account_status_type


delete_cloud_account_sync_status_type

delete data from the table: "cloud_account_sync_status_type"

Arguments:

  • where: cloud_account_sync_status_type_bool_exp! - filter the rows which have to be deleted

Returns: cloud_account_sync_status_type_mutation_response


delete_cloud_account_sync_status_type_by_pk

delete single row from the table: "cloud_account_sync_status_type"

Arguments:

  • value: String!

Returns: cloud_account_sync_status_type


delete_cloud_accounts

delete data from the table: "cloud_accounts"

Arguments:

  • where: cloud_accounts_bool_exp! - filter the rows which have to be deleted

Returns: cloud_accounts_mutation_response


delete_cloud_accounts_by_pk

delete single row from the table: "cloud_accounts"

Arguments:

  • id: uuid!

Returns: cloud_accounts


delete_cloud_api_permission_errors

delete data from the table: "cloud_api_permission_errors"

Arguments:

  • where: cloud_api_permission_errors_bool_exp! - filter the rows which have to be deleted

Returns: cloud_api_permission_errors_mutation_response


delete_cloud_api_permission_errors_by_pk

delete single row from the table: "cloud_api_permission_errors"

Arguments:

  • id: uuid!

Returns: cloud_api_permission_errors


delete_cloud_provider_type

delete data from the table: "cloud_provider_type"

Arguments:

  • where: cloud_provider_type_bool_exp! - filter the rows which have to be deleted

Returns: cloud_provider_type_mutation_response


delete_cloud_provider_type_by_pk

delete single row from the table: "cloud_provider_type"

Arguments:

  • value: String!

Returns: cloud_provider_type


delete_cloud_resource_attributes

delete data from the table: "cloud_resource_attributes"

Arguments:

  • where: cloud_resource_attributes_bool_exp! - filter the rows which have to be deleted

Returns: cloud_resource_attributes_mutation_response


delete_cloud_resource_attributes_by_pk

delete single row from the table: "cloud_resource_attributes"

Arguments:

  • id: uuid!

Returns: cloud_resource_attributes


delete_cloud_resource_details

delete data from the table: "cloud_resource_details"

Arguments:

  • where: cloud_resource_details_bool_exp! - filter the rows which have to be deleted

Returns: cloud_resource_details_mutation_response


delete_cloud_resource_details_by_pk

delete single row from the table: "cloud_resource_details"

Arguments:

  • id: uuid!

Returns: cloud_resource_details


delete_cloud_resource_metrics

delete data from the table: "cloud_resource_metrics"

Arguments:

  • where: cloud_resource_metrics_bool_exp! - filter the rows which have to be deleted

Returns: cloud_resource_metrics_mutation_response


delete_cloud_resource_metrics_by_pk

delete single row from the table: "cloud_resource_metrics"

Arguments:

  • id: uuid!

Returns: cloud_resource_metrics


delete_cloud_resource_status_type

delete data from the table: "cloud_resource_status_type"

Arguments:

  • where: cloud_resource_status_type_bool_exp! - filter the rows which have to be deleted

Returns: cloud_resource_status_type_mutation_response


delete_cloud_resource_status_type_by_pk

delete single row from the table: "cloud_resource_status_type"

Arguments:

  • value: String!

Returns: cloud_resource_status_type


delete_cloud_resourses

delete data from the table: "cloud_resourses"

Arguments:

  • where: cloud_resourses_bool_exp! - filter the rows which have to be deleted

Returns: cloud_resourses_mutation_response


delete_cloud_resourses_by_pk

delete single row from the table: "cloud_resourses"

Arguments:

  • id: uuid!

Returns: cloud_resourses


insert_active_resources

insert data into the table: "active_resources"

Arguments:

  • objects: [active_resources_insert_input!]! - the rows to be inserted
  • on_conflict: active_resources_on_conflict - upsert condition

Returns: active_resources_mutation_response


insert_active_resources_one

insert a single row into the table: "active_resources"

Arguments:

  • object: active_resources_insert_input! - the row to be inserted
  • on_conflict: active_resources_on_conflict - upsert condition

Returns: active_resources


insert_cloud_account_attrs

insert data into the table: "cloud_account_attrs"

Arguments:

  • objects: [cloud_account_attrs_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_account_attrs_on_conflict - upsert condition

Returns: cloud_account_attrs_mutation_response


insert_cloud_account_attrs_one

insert a single row into the table: "cloud_account_attrs"

Arguments:

  • object: cloud_account_attrs_insert_input! - the row to be inserted
  • on_conflict: cloud_account_attrs_on_conflict - upsert condition

Returns: cloud_account_attrs


insert_cloud_account_onboarding_errors

insert data into the table: "cloud_account_onboarding_errors"

Arguments:

  • objects: [cloud_account_onboarding_errors_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_account_onboarding_errors_on_conflict - upsert condition

Returns: cloud_account_onboarding_errors_mutation_response


insert_cloud_account_onboarding_errors_one

insert a single row into the table: "cloud_account_onboarding_errors"

Arguments:

  • object: cloud_account_onboarding_errors_insert_input! - the row to be inserted
  • on_conflict: cloud_account_onboarding_errors_on_conflict - upsert condition

Returns: cloud_account_onboarding_errors


insert_cloud_account_score

insert data into the table: "cloud_account_score"

Arguments:

  • objects: [cloud_account_score_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_account_score_on_conflict - upsert condition

Returns: cloud_account_score_mutation_response


insert_cloud_account_score_one

insert a single row into the table: "cloud_account_score"

Arguments:

  • object: cloud_account_score_insert_input! - the row to be inserted
  • on_conflict: cloud_account_score_on_conflict - upsert condition

Returns: cloud_account_score


insert_cloud_account_status_type

insert data into the table: "cloud_account_status_type"

Arguments:

  • objects: [cloud_account_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_account_status_type_on_conflict - upsert condition

Returns: cloud_account_status_type_mutation_response


insert_cloud_account_status_type_one

insert a single row into the table: "cloud_account_status_type"

Arguments:

  • object: cloud_account_status_type_insert_input! - the row to be inserted
  • on_conflict: cloud_account_status_type_on_conflict - upsert condition

Returns: cloud_account_status_type


insert_cloud_account_sync_status_type

insert data into the table: "cloud_account_sync_status_type"

Arguments:

  • objects: [cloud_account_sync_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_account_sync_status_type_on_conflict - upsert condition

Returns: cloud_account_sync_status_type_mutation_response


insert_cloud_account_sync_status_type_one

insert a single row into the table: "cloud_account_sync_status_type"

Arguments:

  • object: cloud_account_sync_status_type_insert_input! - the row to be inserted
  • on_conflict: cloud_account_sync_status_type_on_conflict - upsert condition

Returns: cloud_account_sync_status_type


insert_cloud_accounts

insert data into the table: "cloud_accounts"

Arguments:

  • objects: [cloud_accounts_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_accounts_on_conflict - upsert condition

Returns: cloud_accounts_mutation_response


insert_cloud_accounts_one

insert a single row into the table: "cloud_accounts"

Arguments:

  • object: cloud_accounts_insert_input! - the row to be inserted
  • on_conflict: cloud_accounts_on_conflict - upsert condition

Returns: cloud_accounts


insert_cloud_api_permission_errors

insert data into the table: "cloud_api_permission_errors"

Arguments:

  • objects: [cloud_api_permission_errors_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_api_permission_errors_on_conflict - upsert condition

Returns: cloud_api_permission_errors_mutation_response


insert_cloud_api_permission_errors_one

insert a single row into the table: "cloud_api_permission_errors"

Arguments:

  • object: cloud_api_permission_errors_insert_input! - the row to be inserted
  • on_conflict: cloud_api_permission_errors_on_conflict - upsert condition

Returns: cloud_api_permission_errors


insert_cloud_provider_type

insert data into the table: "cloud_provider_type"

Arguments:

  • objects: [cloud_provider_type_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_provider_type_on_conflict - upsert condition

Returns: cloud_provider_type_mutation_response


insert_cloud_provider_type_one

insert a single row into the table: "cloud_provider_type"

Arguments:

  • object: cloud_provider_type_insert_input! - the row to be inserted
  • on_conflict: cloud_provider_type_on_conflict - upsert condition

Returns: cloud_provider_type


insert_cloud_resource_attributes

insert data into the table: "cloud_resource_attributes"

Arguments:

  • objects: [cloud_resource_attributes_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_resource_attributes_on_conflict - upsert condition

Returns: cloud_resource_attributes_mutation_response


insert_cloud_resource_attributes_one

insert a single row into the table: "cloud_resource_attributes"

Arguments:

  • object: cloud_resource_attributes_insert_input! - the row to be inserted
  • on_conflict: cloud_resource_attributes_on_conflict - upsert condition

Returns: cloud_resource_attributes


insert_cloud_resource_details

insert data into the table: "cloud_resource_details"

Arguments:

  • objects: [cloud_resource_details_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_resource_details_on_conflict - upsert condition

Returns: cloud_resource_details_mutation_response


insert_cloud_resource_details_one

insert a single row into the table: "cloud_resource_details"

Arguments:

  • object: cloud_resource_details_insert_input! - the row to be inserted
  • on_conflict: cloud_resource_details_on_conflict - upsert condition

Returns: cloud_resource_details


insert_cloud_resource_metrics

insert data into the table: "cloud_resource_metrics"

Arguments:

  • objects: [cloud_resource_metrics_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_resource_metrics_on_conflict - upsert condition

Returns: cloud_resource_metrics_mutation_response


insert_cloud_resource_metrics_one

insert a single row into the table: "cloud_resource_metrics"

Arguments:

  • object: cloud_resource_metrics_insert_input! - the row to be inserted
  • on_conflict: cloud_resource_metrics_on_conflict - upsert condition

Returns: cloud_resource_metrics


insert_cloud_resource_status_type

insert data into the table: "cloud_resource_status_type"

Arguments:

  • objects: [cloud_resource_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_resource_status_type_on_conflict - upsert condition

Returns: cloud_resource_status_type_mutation_response


insert_cloud_resource_status_type_one

insert a single row into the table: "cloud_resource_status_type"

Arguments:

  • object: cloud_resource_status_type_insert_input! - the row to be inserted
  • on_conflict: cloud_resource_status_type_on_conflict - upsert condition

Returns: cloud_resource_status_type


insert_cloud_resourses

insert data into the table: "cloud_resourses"

Arguments:

  • objects: [cloud_resourses_insert_input!]! - the rows to be inserted
  • on_conflict: cloud_resourses_on_conflict - upsert condition

Returns: cloud_resourses_mutation_response


insert_cloud_resourses_one

insert a single row into the table: "cloud_resourses"

Arguments:

  • object: cloud_resourses_insert_input! - the row to be inserted
  • on_conflict: cloud_resourses_on_conflict - upsert condition

Returns: cloud_resourses


update_active_resources

update data of the table: "active_resources"

Arguments:

  • _set: active_resources_set_input - sets the columns of the filtered rows to the given values
  • where: active_resources_bool_exp! - filter the rows which have to be updated

Returns: active_resources_mutation_response


update_active_resources_by_pk

update single row of the table: "active_resources"

Arguments:

  • _set: active_resources_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: active_resources_pk_columns_input!

Returns: active_resources


update_active_resources_many

update multiples rows of table: "active_resources"

Arguments:

  • updates: [active_resources_updates!]! - updates to execute, in order

Returns: [active_resources_mutation_response]


update_cloud_account_attrs

update data of the table: "cloud_account_attrs"

Arguments:

  • _set: cloud_account_attrs_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_attrs_bool_exp! - filter the rows which have to be updated

Returns: cloud_account_attrs_mutation_response


update_cloud_account_attrs_by_pk

update single row of the table: "cloud_account_attrs"

Arguments:

  • _set: cloud_account_attrs_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_account_attrs_pk_columns_input!

Returns: cloud_account_attrs


update_cloud_account_attrs_many

update multiples rows of table: "cloud_account_attrs"

Arguments:

  • updates: [cloud_account_attrs_updates!]! - updates to execute, in order

Returns: [cloud_account_attrs_mutation_response]


update_cloud_account_onboarding_errors

update data of the table: "cloud_account_onboarding_errors"

Arguments:

  • _set: cloud_account_onboarding_errors_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_onboarding_errors_bool_exp! - filter the rows which have to be updated

Returns: cloud_account_onboarding_errors_mutation_response


update_cloud_account_onboarding_errors_by_pk

update single row of the table: "cloud_account_onboarding_errors"

Arguments:

  • _set: cloud_account_onboarding_errors_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_account_onboarding_errors_pk_columns_input!

Returns: cloud_account_onboarding_errors


update_cloud_account_onboarding_errors_many

update multiples rows of table: "cloud_account_onboarding_errors"

Arguments:

  • updates: [cloud_account_onboarding_errors_updates!]! - updates to execute, in order

Returns: [cloud_account_onboarding_errors_mutation_response]


update_cloud_account_score

update data of the table: "cloud_account_score"

Arguments:

  • _inc: cloud_account_score_inc_input - increments the numeric columns with given value of the filtered values
  • _set: cloud_account_score_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_score_bool_exp! - filter the rows which have to be updated

Returns: cloud_account_score_mutation_response


update_cloud_account_score_by_pk

update single row of the table: "cloud_account_score"

Arguments:

  • _inc: cloud_account_score_inc_input - increments the numeric columns with given value of the filtered values
  • _set: cloud_account_score_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_account_score_pk_columns_input!

Returns: cloud_account_score


update_cloud_account_score_many

update multiples rows of table: "cloud_account_score"

Arguments:

  • updates: [cloud_account_score_updates!]! - updates to execute, in order

Returns: [cloud_account_score_mutation_response]


update_cloud_account_status_type

update data of the table: "cloud_account_status_type"

Arguments:

  • _set: cloud_account_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_status_type_bool_exp! - filter the rows which have to be updated

Returns: cloud_account_status_type_mutation_response


update_cloud_account_status_type_by_pk

update single row of the table: "cloud_account_status_type"

Arguments:

  • _set: cloud_account_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_account_status_type_pk_columns_input!

Returns: cloud_account_status_type


update_cloud_account_status_type_many

update multiples rows of table: "cloud_account_status_type"

Arguments:

  • updates: [cloud_account_status_type_updates!]! - updates to execute, in order

Returns: [cloud_account_status_type_mutation_response]


update_cloud_account_sync_status_type

update data of the table: "cloud_account_sync_status_type"

Arguments:

  • _set: cloud_account_sync_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_sync_status_type_bool_exp! - filter the rows which have to be updated

Returns: cloud_account_sync_status_type_mutation_response


update_cloud_account_sync_status_type_by_pk

update single row of the table: "cloud_account_sync_status_type"

Arguments:

  • _set: cloud_account_sync_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_account_sync_status_type_pk_columns_input!

Returns: cloud_account_sync_status_type


update_cloud_account_sync_status_type_many

update multiples rows of table: "cloud_account_sync_status_type"

Arguments:

  • updates: [cloud_account_sync_status_type_updates!]! - updates to execute, in order

Returns: [cloud_account_sync_status_type_mutation_response]


update_cloud_accounts

update data of the table: "cloud_accounts"

Arguments:

  • _append: cloud_accounts_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_accounts_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_accounts_delete_elem_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_key: cloud_accounts_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_accounts_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_accounts_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_accounts_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_accounts_bool_exp! - filter the rows which have to be updated

Returns: cloud_accounts_mutation_response


update_cloud_accounts_by_pk

update single row of the table: "cloud_accounts"

Arguments:

  • _append: cloud_accounts_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_accounts_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_accounts_delete_elem_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_key: cloud_accounts_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_accounts_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_accounts_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_accounts_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_accounts_pk_columns_input!

Returns: cloud_accounts


update_cloud_accounts_many

update multiples rows of table: "cloud_accounts"

Arguments:

  • updates: [cloud_accounts_updates!]! - updates to execute, in order

Returns: [cloud_accounts_mutation_response]


update_cloud_api_permission_errors

update data of the table: "cloud_api_permission_errors"

Arguments:

  • _inc: cloud_api_permission_errors_inc_input - increments the numeric columns with given value of the filtered values
  • _set: cloud_api_permission_errors_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_api_permission_errors_bool_exp! - filter the rows which have to be updated

Returns: cloud_api_permission_errors_mutation_response


update_cloud_api_permission_errors_by_pk

update single row of the table: "cloud_api_permission_errors"

Arguments:

  • _inc: cloud_api_permission_errors_inc_input - increments the numeric columns with given value of the filtered values
  • _set: cloud_api_permission_errors_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_api_permission_errors_pk_columns_input!

Returns: cloud_api_permission_errors


update_cloud_api_permission_errors_many

update multiples rows of table: "cloud_api_permission_errors"

Arguments:

  • updates: [cloud_api_permission_errors_updates!]! - updates to execute, in order

Returns: [cloud_api_permission_errors_mutation_response]


update_cloud_provider_type

update data of the table: "cloud_provider_type"

Arguments:

  • _set: cloud_provider_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_provider_type_bool_exp! - filter the rows which have to be updated

Returns: cloud_provider_type_mutation_response


update_cloud_provider_type_by_pk

update single row of the table: "cloud_provider_type"

Arguments:

  • _set: cloud_provider_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_provider_type_pk_columns_input!

Returns: cloud_provider_type


update_cloud_provider_type_many

update multiples rows of table: "cloud_provider_type"

Arguments:

  • updates: [cloud_provider_type_updates!]! - updates to execute, in order

Returns: [cloud_provider_type_mutation_response]


update_cloud_resource_attributes

update data of the table: "cloud_resource_attributes"

Arguments:

  • _set: cloud_resource_attributes_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_attributes_bool_exp! - filter the rows which have to be updated

Returns: cloud_resource_attributes_mutation_response


update_cloud_resource_attributes_by_pk

update single row of the table: "cloud_resource_attributes"

Arguments:

  • _set: cloud_resource_attributes_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_resource_attributes_pk_columns_input!

Returns: cloud_resource_attributes


update_cloud_resource_attributes_many

update multiples rows of table: "cloud_resource_attributes"

Arguments:

  • updates: [cloud_resource_attributes_updates!]! - updates to execute, in order

Returns: [cloud_resource_attributes_mutation_response]


update_cloud_resource_details

update data of the table: "cloud_resource_details"

Arguments:

  • _append: cloud_resource_details_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resource_details_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resource_details_delete_elem_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_key: cloud_resource_details_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_resource_details_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_resource_details_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resource_details_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_details_bool_exp! - filter the rows which have to be updated

Returns: cloud_resource_details_mutation_response


update_cloud_resource_details_by_pk

update single row of the table: "cloud_resource_details"

Arguments:

  • _append: cloud_resource_details_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resource_details_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resource_details_delete_elem_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_key: cloud_resource_details_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_resource_details_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_resource_details_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resource_details_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_resource_details_pk_columns_input!

Returns: cloud_resource_details


update_cloud_resource_details_many

update multiples rows of table: "cloud_resource_details"

Arguments:

  • updates: [cloud_resource_details_updates!]! - updates to execute, in order

Returns: [cloud_resource_details_mutation_response]


update_cloud_resource_metrics

update data of the table: "cloud_resource_metrics"

Arguments:

  • _append: cloud_resource_metrics_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resource_metrics_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resource_metrics_delete_elem_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_key: cloud_resource_metrics_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_resource_metrics_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_resource_metrics_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resource_metrics_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_metrics_bool_exp! - filter the rows which have to be updated

Returns: cloud_resource_metrics_mutation_response


update_cloud_resource_metrics_by_pk

update single row of the table: "cloud_resource_metrics"

Arguments:

  • _append: cloud_resource_metrics_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resource_metrics_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resource_metrics_delete_elem_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_key: cloud_resource_metrics_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_resource_metrics_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_resource_metrics_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resource_metrics_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_resource_metrics_pk_columns_input!

Returns: cloud_resource_metrics


update_cloud_resource_metrics_many

update multiples rows of table: "cloud_resource_metrics"

Arguments:

  • updates: [cloud_resource_metrics_updates!]! - updates to execute, in order

Returns: [cloud_resource_metrics_mutation_response]


update_cloud_resource_status_type

update data of the table: "cloud_resource_status_type"

Arguments:

  • _set: cloud_resource_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_status_type_bool_exp! - filter the rows which have to be updated

Returns: cloud_resource_status_type_mutation_response


update_cloud_resource_status_type_by_pk

update single row of the table: "cloud_resource_status_type"

Arguments:

  • _set: cloud_resource_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_resource_status_type_pk_columns_input!

Returns: cloud_resource_status_type


update_cloud_resource_status_type_many

update multiples rows of table: "cloud_resource_status_type"

Arguments:

  • updates: [cloud_resource_status_type_updates!]! - updates to execute, in order

Returns: [cloud_resource_status_type_mutation_response]


update_cloud_resourses

update data of the table: "cloud_resourses"

Arguments:

  • _append: cloud_resourses_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resourses_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resourses_delete_elem_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_key: cloud_resourses_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: cloud_resourses_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resourses_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resourses_bool_exp! - filter the rows which have to be updated

Returns: cloud_resourses_mutation_response


update_cloud_resourses_by_pk

update single row of the table: "cloud_resourses"

Arguments:

  • _append: cloud_resourses_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resourses_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resourses_delete_elem_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_key: cloud_resourses_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: cloud_resourses_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resourses_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: cloud_resourses_pk_columns_input!

Returns: cloud_resourses


update_cloud_resourses_many

update multiples rows of table: "cloud_resourses"

Arguments:

  • updates: [cloud_resourses_updates!]! - updates to execute, in order

Returns: [cloud_resourses_mutation_response]


Kubernetes

K8s clusters, workloads, pods, nodes, namespaces, and cluster management.

delete_k8s_namespaces

delete data from the table: "k8s_namespaces"

Arguments:

  • where: k8s_namespaces_bool_exp! - filter the rows which have to be deleted

Returns: k8s_namespaces_mutation_response


delete_k8s_namespaces_by_pk

delete single row from the table: "k8s_namespaces"

Arguments:

  • cloud_account_id: String!
  • name: String!
  • tenant_id: String!

Returns: k8s_namespaces


delete_k8s_nodes

delete data from the table: "k8s_nodes"

Arguments:

  • where: k8s_nodes_bool_exp! - filter the rows which have to be deleted

Returns: k8s_nodes_mutation_response


delete_k8s_nodes_by_pk

delete single row from the table: "k8s_nodes"

Arguments:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

Returns: k8s_nodes


delete_k8s_pods

delete data from the table: "k8s_pods"

Arguments:

  • where: k8s_pods_bool_exp! - filter the rows which have to be deleted

Returns: k8s_pods_mutation_response


delete_k8s_pods_by_pk

delete single row from the table: "k8s_pods"

Arguments:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

Returns: k8s_pods


delete_k8s_workloads

delete data from the table: "k8s_workloads"

Arguments:

  • where: k8s_workloads_bool_exp! - filter the rows which have to be deleted

Returns: k8s_workloads_mutation_response


delete_k8s_workloads_by_pk

delete single row from the table: "k8s_workloads"

Arguments:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

Returns: k8s_workloads


insert_k8s_namespaces

insert data into the table: "k8s_namespaces"

Arguments:

  • objects: [k8s_namespaces_insert_input!]! - the rows to be inserted
  • on_conflict: k8s_namespaces_on_conflict - upsert condition

Returns: k8s_namespaces_mutation_response


insert_k8s_namespaces_one

insert a single row into the table: "k8s_namespaces"

Arguments:

  • object: k8s_namespaces_insert_input! - the row to be inserted
  • on_conflict: k8s_namespaces_on_conflict - upsert condition

Returns: k8s_namespaces


insert_k8s_nodes

insert data into the table: "k8s_nodes"

Arguments:

  • objects: [k8s_nodes_insert_input!]! - the rows to be inserted
  • on_conflict: k8s_nodes_on_conflict - upsert condition

Returns: k8s_nodes_mutation_response


insert_k8s_nodes_one

insert a single row into the table: "k8s_nodes"

Arguments:

  • object: k8s_nodes_insert_input! - the row to be inserted
  • on_conflict: k8s_nodes_on_conflict - upsert condition

Returns: k8s_nodes


insert_k8s_pods

insert data into the table: "k8s_pods"

Arguments:

  • objects: [k8s_pods_insert_input!]! - the rows to be inserted
  • on_conflict: k8s_pods_on_conflict - upsert condition

Returns: k8s_pods_mutation_response


insert_k8s_pods_one

insert a single row into the table: "k8s_pods"

Arguments:

  • object: k8s_pods_insert_input! - the row to be inserted
  • on_conflict: k8s_pods_on_conflict - upsert condition

Returns: k8s_pods


insert_k8s_workloads

insert data into the table: "k8s_workloads"

Arguments:

  • objects: [k8s_workloads_insert_input!]! - the rows to be inserted
  • on_conflict: k8s_workloads_on_conflict - upsert condition

Returns: k8s_workloads_mutation_response


insert_k8s_workloads_one

insert a single row into the table: "k8s_workloads"

Arguments:

  • object: k8s_workloads_insert_input! - the row to be inserted
  • on_conflict: k8s_workloads_on_conflict - upsert condition

Returns: k8s_workloads


update_k8s_namespaces

update data of the table: "k8s_namespaces"

Arguments:

  • _inc: k8s_namespaces_inc_input - increments the numeric columns with given value of the filtered values
  • _set: k8s_namespaces_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_namespaces_bool_exp! - filter the rows which have to be updated

Returns: k8s_namespaces_mutation_response


update_k8s_namespaces_by_pk

update single row of the table: "k8s_namespaces"

Arguments:

  • _inc: k8s_namespaces_inc_input - increments the numeric columns with given value of the filtered values
  • _set: k8s_namespaces_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: k8s_namespaces_pk_columns_input!

Returns: k8s_namespaces


update_k8s_namespaces_many

update multiples rows of table: "k8s_namespaces"

Arguments:

  • updates: [k8s_namespaces_updates!]! - updates to execute, in order

Returns: [k8s_namespaces_mutation_response]


update_k8s_nodes

update data of the table: "k8s_nodes"

Arguments:

  • _append: k8s_nodes_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_nodes_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_nodes_delete_elem_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_key: k8s_nodes_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: k8s_nodes_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: k8s_nodes_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_nodes_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_nodes_bool_exp! - filter the rows which have to be updated

Returns: k8s_nodes_mutation_response


update_k8s_nodes_by_pk

update single row of the table: "k8s_nodes"

Arguments:

  • _append: k8s_nodes_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_nodes_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_nodes_delete_elem_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_key: k8s_nodes_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: k8s_nodes_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: k8s_nodes_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_nodes_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: k8s_nodes_pk_columns_input!

Returns: k8s_nodes


update_k8s_nodes_many

update multiples rows of table: "k8s_nodes"

Arguments:

  • updates: [k8s_nodes_updates!]! - updates to execute, in order

Returns: [k8s_nodes_mutation_response]


update_k8s_pods

update data of the table: "k8s_pods"

Arguments:

  • _append: k8s_pods_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_pods_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_pods_delete_elem_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_key: k8s_pods_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: k8s_pods_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_pods_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_pods_bool_exp! - filter the rows which have to be updated

Returns: k8s_pods_mutation_response


update_k8s_pods_by_pk

update single row of the table: "k8s_pods"

Arguments:

  • _append: k8s_pods_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_pods_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_pods_delete_elem_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_key: k8s_pods_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: k8s_pods_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_pods_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: k8s_pods_pk_columns_input!

Returns: k8s_pods


update_k8s_pods_many

update multiples rows of table: "k8s_pods"

Arguments:

  • updates: [k8s_pods_updates!]! - updates to execute, in order

Returns: [k8s_pods_mutation_response]


update_k8s_workloads

update data of the table: "k8s_workloads"

Arguments:

  • _append: k8s_workloads_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_workloads_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_workloads_delete_elem_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_key: k8s_workloads_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: k8s_workloads_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: k8s_workloads_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_workloads_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_workloads_bool_exp! - filter the rows which have to be updated

Returns: k8s_workloads_mutation_response


update_k8s_workloads_by_pk

update single row of the table: "k8s_workloads"

Arguments:

  • _append: k8s_workloads_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_workloads_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_workloads_delete_elem_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_key: k8s_workloads_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: k8s_workloads_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: k8s_workloads_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_workloads_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: k8s_workloads_pk_columns_input!

Returns: k8s_workloads


update_k8s_workloads_many

update multiples rows of table: "k8s_workloads"

Arguments:

  • updates: [k8s_workloads_updates!]! - updates to execute, in order

Returns: [k8s_workloads_mutation_response]


Automation

Auto-pilot policies, playbooks, runbooks, workflows, and optimization rules.

auto_optimize_insert_one

auto pilot single insert

Arguments:

  • arg1: auto_optimize_insert_one!

Returns: auto_optimize_insert_one_output


auto_optimize_skip_execution

to skip auto optimize tasks

Arguments:

  • arg1: auto_optimize_skip_request!

Returns: auto_optimize_skip_response


auto_optimize_update_one

auto optimize single edit

Arguments:

  • arg1: auto_optimize_update_one!

Returns: auto_optimize_insert_one_output


auto_optimize_update_status

action to change status of auto optimize

Arguments:

  • arg1: auto_optimize_update_status_request!

Returns: auto_optimize_update_status_response


auto_pilot_approval_policy_delete

action to delete auto pilot policy for approval

Arguments:

  • arg1: auto_pilot_policy_delete_input!

Returns: auto_pilot_policy_delete_output


auto_runbook_action_delete_one

action to delete runbook action with ID

Arguments:

  • request: auto_runbook_action_delete_one_input!

Returns: auto_runbook_action_delete_one_output


auto_runbook_action_insert_one

Arguments:

  • arg1: auto_runbook_action_insert_one_input!

Returns: auto_runbook_action_insert_one_output


auto_runbook_custom_action_update

action to update custom action in runbook

Arguments:

  • arg1: auto_runbook_custom_action_update_input!

Returns: auto_runbook_custom_action_update_output


auto_runbook_edit_one

Arguments:

  • arg1: auto_runbook_edit_one!

Returns: auto_runbook_insert_one_output


auto_runbook_insert_one

action to insert one auto playbook

Arguments:

  • arg1: auto_runbook_insert_one!

Returns: auto_runbook_insert_one_output


auto_runbook_manually_run

auto runbook manual run

Arguments:

  • runbook_execute_request: auto_runbook_manual_run_request!

Returns: auto_runbook_manual_run_response


auto_runbook_publish_action

to publish runbook action status

Arguments:

  • arg1: auto_runbook_action_publish_input!

Returns: auto_runbook_action_status_output


auto_runbook_skip_execution

Skip RunBook execution

Arguments:

  • arg1: auto_runbook_skip_request!

Returns: auto_runbook_skip_response


auto_runbook_task_change_approval_status

change status for task level runbook approval

Arguments:

  • runbook_task_approval_request: auto_runbook_task_approval_request_body!

Returns: auto_runbook_task_approval_response


auto_runbook_task_manual_run

manual execute for runbook task

Arguments:

  • runbook_task_execute_request: auto_runbook_task_manual_run_request!

Returns: auto_runbook_task_manual_run_response


auto_runbook_update_status

Update runbook status

Arguments:

  • arg1: auto_runbook_update_status_request!

Returns: auto_runbook_update_status_response


autopilot_get_autopilot_for_event

action to get runbooks for event ids

Arguments:

  • arg1: GetAutopilot!

Returns: GetAutopiloteOutput


delete_auto_optimize_resource_map

delete data from the table: "auto_optimize_resource_map"

Arguments:

  • where: auto_optimize_resource_map_bool_exp! - filter the rows which have to be deleted

Returns: auto_optimize_resource_map_mutation_response


delete_auto_optimize_resource_map_by_pk

delete single row from the table: "auto_optimize_resource_map"

Arguments:

  • id: uuid!

Returns: auto_optimize_resource_map


delete_auto_pilot

delete data from the table: "auto_pilot"

Arguments:

  • where: auto_pilot_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_mutation_response


delete_auto_pilot_approval_policy

delete data from the table: "auto_pilot_approval_policy"

Arguments:

  • where: auto_pilot_approval_policy_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_approval_policy_mutation_response


delete_auto_pilot_approval_policy_by_pk

delete single row from the table: "auto_pilot_approval_policy"

Arguments:

  • id: uuid!

Returns: auto_pilot_approval_policy


delete_auto_pilot_approval_status

delete data from the table: "auto_pilot_approval_status"

Arguments:

  • where: auto_pilot_approval_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_approval_status_mutation_response


delete_auto_pilot_approval_status_by_pk

delete single row from the table: "auto_pilot_approval_status"

Arguments:

  • status: String!

Returns: auto_pilot_approval_status


delete_auto_pilot_approvals

delete data from the table: "auto_pilot_approvals"

Arguments:

  • where: auto_pilot_approvals_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_approvals_mutation_response


delete_auto_pilot_approvals_by_pk

delete single row from the table: "auto_pilot_approvals"

Arguments:

  • id: uuid!

Returns: auto_pilot_approvals


delete_auto_pilot_by_pk

delete single row from the table: "auto_pilot"

Arguments:

  • id: uuid!

Returns: auto_pilot


delete_auto_pilot_category

delete data from the table: "auto_pilot_category"

Arguments:

  • where: auto_pilot_category_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_category_mutation_response


delete_auto_pilot_category_by_pk

delete single row from the table: "auto_pilot_category"

Arguments:

  • value: String!

Returns: auto_pilot_category


delete_auto_pilot_execution_status

delete data from the table: "auto_pilot_execution_status"

Arguments:

  • where: auto_pilot_execution_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_execution_status_mutation_response


delete_auto_pilot_execution_status_by_pk

delete single row from the table: "auto_pilot_execution_status"

Arguments:

  • value: String!

Returns: auto_pilot_execution_status


delete_auto_pilot_reviewee

delete data from the table: "auto_pilot_reviewee"

Arguments:

  • where: auto_pilot_reviewee_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_reviewee_mutation_response


delete_auto_pilot_reviewee_by_pk

delete single row from the table: "auto_pilot_reviewee"

Arguments:

  • id: uuid!

Returns: auto_pilot_reviewee


delete_auto_pilot_reviewers

delete data from the table: "auto_pilot_reviewers"

Arguments:

  • where: auto_pilot_reviewers_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_reviewers_mutation_response


delete_auto_pilot_reviewers_by_pk

delete single row from the table: "auto_pilot_reviewers"

Arguments:

  • id: uuid!

Returns: auto_pilot_reviewers


delete_auto_pilot_status

delete data from the table: "auto_pilot_status"

Arguments:

  • where: auto_pilot_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_status_mutation_response


delete_auto_pilot_status_by_pk

delete single row from the table: "auto_pilot_status"

Arguments:

  • value: String!

Returns: auto_pilot_status


delete_auto_pilot_task

delete data from the table: "auto_pilot_task"

Arguments:

  • where: auto_pilot_task_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_task_mutation_response


delete_auto_pilot_task_by_pk

delete single row from the table: "auto_pilot_task"

Arguments:

  • id: uuid!

Returns: auto_pilot_task


delete_auto_pilot_task_status

delete data from the table: "auto_pilot_task_status"

Arguments:

  • where: auto_pilot_task_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_pilot_task_status_mutation_response


delete_auto_pilot_task_status_by_pk

delete single row from the table: "auto_pilot_task_status"

Arguments:

  • value: String!

Returns: auto_pilot_task_status


delete_auto_playbook

delete data from the table: "auto_playbook"

Arguments:

  • where: auto_playbook_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_mutation_response


delete_auto_playbook_actions

delete data from the table: "auto_playbook_actions"

Arguments:

  • where: auto_playbook_actions_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_actions_mutation_response


delete_auto_playbook_actions_by_pk

delete single row from the table: "auto_playbook_actions"

Arguments:

  • id: uuid!

Returns: auto_playbook_actions


delete_auto_playbook_by_pk

delete single row from the table: "auto_playbook"

Arguments:

  • id: uuid!

Returns: auto_playbook


delete_auto_playbook_execution_status

delete data from the table: "auto_playbook_execution_status"

Arguments:

  • where: auto_playbook_execution_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_execution_status_mutation_response


delete_auto_playbook_execution_status_by_pk

delete single row from the table: "auto_playbook_execution_status"

Arguments:

  • values: String!

Returns: auto_playbook_execution_status


delete_auto_playbook_executions

delete data from the table: "auto_playbook_executions"

Arguments:

  • where: auto_playbook_executions_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_executions_mutation_response


delete_auto_playbook_executions_by_pk

delete single row from the table: "auto_playbook_executions"

Arguments:

  • id: uuid!

Returns: auto_playbook_executions


delete_auto_playbook_status

delete data from the table: "auto_playbook_status"

Arguments:

  • where: auto_playbook_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_status_mutation_response


delete_auto_playbook_status_by_pk

delete single row from the table: "auto_playbook_status"

Arguments:

  • value: String!

Returns: auto_playbook_status


delete_auto_playbook_task

delete data from the table: "auto_playbook_task"

Arguments:

  • where: auto_playbook_task_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_task_mutation_response


delete_auto_playbook_task_by_pk

delete single row from the table: "auto_playbook_task"

Arguments:

  • id: uuid!

Returns: auto_playbook_task


delete_auto_playbook_task_status

delete data from the table: "auto_playbook_task_status"

Arguments:

  • where: auto_playbook_task_status_bool_exp! - filter the rows which have to be deleted

Returns: auto_playbook_task_status_mutation_response


delete_auto_playbook_task_status_by_pk

delete single row from the table: "auto_playbook_task_status"

Arguments:

  • value: String!

Returns: auto_playbook_task_status


delete_autopilot_attributes

delete data from the table: "autopilot_attributes"

Arguments:

  • where: autopilot_attributes_bool_exp! - filter the rows which have to be deleted

Returns: autopilot_attributes_mutation_response


delete_autopilot_attributes_by_pk

delete single row from the table: "autopilot_attributes"

Arguments:

  • id: uuid!

Returns: autopilot_attributes


insert_auto_optimize_resource_map

insert data into the table: "auto_optimize_resource_map"

Arguments:

  • objects: [auto_optimize_resource_map_insert_input!]! - the rows to be inserted
  • on_conflict: auto_optimize_resource_map_on_conflict - upsert condition

Returns: auto_optimize_resource_map_mutation_response


insert_auto_optimize_resource_map_one

insert a single row into the table: "auto_optimize_resource_map"

Arguments:

  • object: auto_optimize_resource_map_insert_input! - the row to be inserted
  • on_conflict: auto_optimize_resource_map_on_conflict - upsert condition

Returns: auto_optimize_resource_map


insert_auto_pilot

insert data into the table: "auto_pilot"

Arguments:

  • objects: [auto_pilot_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_on_conflict - upsert condition

Returns: auto_pilot_mutation_response


insert_auto_pilot_approval_policy

insert data into the table: "auto_pilot_approval_policy"

Arguments:

  • objects: [auto_pilot_approval_policy_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_approval_policy_on_conflict - upsert condition

Returns: auto_pilot_approval_policy_mutation_response


insert_auto_pilot_approval_policy_one

insert a single row into the table: "auto_pilot_approval_policy"

Arguments:

  • object: auto_pilot_approval_policy_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_approval_policy_on_conflict - upsert condition

Returns: auto_pilot_approval_policy


insert_auto_pilot_approval_status

insert data into the table: "auto_pilot_approval_status"

Arguments:

  • objects: [auto_pilot_approval_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_approval_status_on_conflict - upsert condition

Returns: auto_pilot_approval_status_mutation_response


insert_auto_pilot_approval_status_one

insert a single row into the table: "auto_pilot_approval_status"

Arguments:

  • object: auto_pilot_approval_status_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_approval_status_on_conflict - upsert condition

Returns: auto_pilot_approval_status


insert_auto_pilot_approvals

insert data into the table: "auto_pilot_approvals"

Arguments:

  • objects: [auto_pilot_approvals_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_approvals_on_conflict - upsert condition

Returns: auto_pilot_approvals_mutation_response


insert_auto_pilot_approvals_one

insert a single row into the table: "auto_pilot_approvals"

Arguments:

  • object: auto_pilot_approvals_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_approvals_on_conflict - upsert condition

Returns: auto_pilot_approvals


insert_auto_pilot_category

insert data into the table: "auto_pilot_category"

Arguments:

  • objects: [auto_pilot_category_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_category_on_conflict - upsert condition

Returns: auto_pilot_category_mutation_response


insert_auto_pilot_category_one

insert a single row into the table: "auto_pilot_category"

Arguments:

  • object: auto_pilot_category_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_category_on_conflict - upsert condition

Returns: auto_pilot_category


insert_auto_pilot_execution_status

insert data into the table: "auto_pilot_execution_status"

Arguments:

  • objects: [auto_pilot_execution_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_execution_status_on_conflict - upsert condition

Returns: auto_pilot_execution_status_mutation_response


insert_auto_pilot_execution_status_one

insert a single row into the table: "auto_pilot_execution_status"

Arguments:

  • object: auto_pilot_execution_status_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_execution_status_on_conflict - upsert condition

Returns: auto_pilot_execution_status


insert_auto_pilot_one

insert a single row into the table: "auto_pilot"

Arguments:

  • object: auto_pilot_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_on_conflict - upsert condition

Returns: auto_pilot


insert_auto_pilot_reviewee

insert data into the table: "auto_pilot_reviewee"

Arguments:

  • objects: [auto_pilot_reviewee_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_reviewee_on_conflict - upsert condition

Returns: auto_pilot_reviewee_mutation_response


insert_auto_pilot_reviewee_one

insert a single row into the table: "auto_pilot_reviewee"

Arguments:

  • object: auto_pilot_reviewee_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_reviewee_on_conflict - upsert condition

Returns: auto_pilot_reviewee


insert_auto_pilot_reviewers

insert data into the table: "auto_pilot_reviewers"

Arguments:

  • objects: [auto_pilot_reviewers_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_reviewers_on_conflict - upsert condition

Returns: auto_pilot_reviewers_mutation_response


insert_auto_pilot_reviewers_one

insert a single row into the table: "auto_pilot_reviewers"

Arguments:

  • object: auto_pilot_reviewers_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_reviewers_on_conflict - upsert condition

Returns: auto_pilot_reviewers


insert_auto_pilot_status

insert data into the table: "auto_pilot_status"

Arguments:

  • objects: [auto_pilot_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_status_on_conflict - upsert condition

Returns: auto_pilot_status_mutation_response


insert_auto_pilot_status_one

insert a single row into the table: "auto_pilot_status"

Arguments:

  • object: auto_pilot_status_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_status_on_conflict - upsert condition

Returns: auto_pilot_status


insert_auto_pilot_task

insert data into the table: "auto_pilot_task"

Arguments:

  • objects: [auto_pilot_task_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_task_on_conflict - upsert condition

Returns: auto_pilot_task_mutation_response


insert_auto_pilot_task_one

insert a single row into the table: "auto_pilot_task"

Arguments:

  • object: auto_pilot_task_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_task_on_conflict - upsert condition

Returns: auto_pilot_task


insert_auto_pilot_task_status

insert data into the table: "auto_pilot_task_status"

Arguments:

  • objects: [auto_pilot_task_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_pilot_task_status_on_conflict - upsert condition

Returns: auto_pilot_task_status_mutation_response


insert_auto_pilot_task_status_one

insert a single row into the table: "auto_pilot_task_status"

Arguments:

  • object: auto_pilot_task_status_insert_input! - the row to be inserted
  • on_conflict: auto_pilot_task_status_on_conflict - upsert condition

Returns: auto_pilot_task_status


insert_auto_playbook

insert data into the table: "auto_playbook"

Arguments:

  • objects: [auto_playbook_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_on_conflict - upsert condition

Returns: auto_playbook_mutation_response


insert_auto_playbook_actions

insert data into the table: "auto_playbook_actions"

Arguments:

  • objects: [auto_playbook_actions_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_actions_on_conflict - upsert condition

Returns: auto_playbook_actions_mutation_response


insert_auto_playbook_actions_one

insert a single row into the table: "auto_playbook_actions"

Arguments:

  • object: auto_playbook_actions_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_actions_on_conflict - upsert condition

Returns: auto_playbook_actions


insert_auto_playbook_execution_status

insert data into the table: "auto_playbook_execution_status"

Arguments:

  • objects: [auto_playbook_execution_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_execution_status_on_conflict - upsert condition

Returns: auto_playbook_execution_status_mutation_response


insert_auto_playbook_execution_status_one

insert a single row into the table: "auto_playbook_execution_status"

Arguments:

  • object: auto_playbook_execution_status_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_execution_status_on_conflict - upsert condition

Returns: auto_playbook_execution_status


insert_auto_playbook_executions

insert data into the table: "auto_playbook_executions"

Arguments:

  • objects: [auto_playbook_executions_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_executions_on_conflict - upsert condition

Returns: auto_playbook_executions_mutation_response


insert_auto_playbook_executions_one

insert a single row into the table: "auto_playbook_executions"

Arguments:

  • object: auto_playbook_executions_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_executions_on_conflict - upsert condition

Returns: auto_playbook_executions


insert_auto_playbook_one

insert a single row into the table: "auto_playbook"

Arguments:

  • object: auto_playbook_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_on_conflict - upsert condition

Returns: auto_playbook


insert_auto_playbook_status

insert data into the table: "auto_playbook_status"

Arguments:

  • objects: [auto_playbook_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_status_on_conflict - upsert condition

Returns: auto_playbook_status_mutation_response


insert_auto_playbook_status_one

insert a single row into the table: "auto_playbook_status"

Arguments:

  • object: auto_playbook_status_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_status_on_conflict - upsert condition

Returns: auto_playbook_status


insert_auto_playbook_task

insert data into the table: "auto_playbook_task"

Arguments:

  • objects: [auto_playbook_task_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_task_on_conflict - upsert condition

Returns: auto_playbook_task_mutation_response


insert_auto_playbook_task_one

insert a single row into the table: "auto_playbook_task"

Arguments:

  • object: auto_playbook_task_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_task_on_conflict - upsert condition

Returns: auto_playbook_task


insert_auto_playbook_task_status

insert data into the table: "auto_playbook_task_status"

Arguments:

  • objects: [auto_playbook_task_status_insert_input!]! - the rows to be inserted
  • on_conflict: auto_playbook_task_status_on_conflict - upsert condition

Returns: auto_playbook_task_status_mutation_response


insert_auto_playbook_task_status_one

insert a single row into the table: "auto_playbook_task_status"

Arguments:

  • object: auto_playbook_task_status_insert_input! - the row to be inserted
  • on_conflict: auto_playbook_task_status_on_conflict - upsert condition

Returns: auto_playbook_task_status


insert_autopilot_attributes

insert data into the table: "autopilot_attributes"

Arguments:

  • objects: [autopilot_attributes_insert_input!]! - the rows to be inserted
  • on_conflict: autopilot_attributes_on_conflict - upsert condition

Returns: autopilot_attributes_mutation_response


insert_autopilot_attributes_one

insert a single row into the table: "autopilot_attributes"

Arguments:

  • object: autopilot_attributes_insert_input! - the row to be inserted
  • on_conflict: autopilot_attributes_on_conflict - upsert condition

Returns: autopilot_attributes


update_auto_optimize_resource_map

update data of the table: "auto_optimize_resource_map"

Arguments:

  • _append: auto_optimize_resource_map_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_optimize_resource_map_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_optimize_resource_map_delete_elem_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_key: auto_optimize_resource_map_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_optimize_resource_map_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_optimize_resource_map_set_input - sets the columns of the filtered rows to the given values
  • where: auto_optimize_resource_map_bool_exp! - filter the rows which have to be updated

Returns: auto_optimize_resource_map_mutation_response


update_auto_optimize_resource_map_by_pk

update single row of the table: "auto_optimize_resource_map"

Arguments:

  • _append: auto_optimize_resource_map_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_optimize_resource_map_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_optimize_resource_map_delete_elem_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_key: auto_optimize_resource_map_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_optimize_resource_map_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_optimize_resource_map_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_optimize_resource_map_pk_columns_input!

Returns: auto_optimize_resource_map


update_auto_optimize_resource_map_many

update multiples rows of table: "auto_optimize_resource_map"

Arguments:

  • updates: [auto_optimize_resource_map_updates!]! - updates to execute, in order

Returns: [auto_optimize_resource_map_mutation_response]


update_auto_pilot

update data of the table: "auto_pilot"

Arguments:

  • _append: auto_pilot_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_delete_elem_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_key: auto_pilot_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_mutation_response


update_auto_pilot_approval_policy

update data of the table: "auto_pilot_approval_policy"

Arguments:

  • _append: auto_pilot_approval_policy_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_approval_policy_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_approval_policy_delete_elem_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_key: auto_pilot_approval_policy_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_approval_policy_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_approval_policy_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_approval_policy_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_approval_policy_mutation_response


update_auto_pilot_approval_policy_by_pk

update single row of the table: "auto_pilot_approval_policy"

Arguments:

  • _append: auto_pilot_approval_policy_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_approval_policy_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_approval_policy_delete_elem_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_key: auto_pilot_approval_policy_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_approval_policy_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_approval_policy_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_approval_policy_pk_columns_input!

Returns: auto_pilot_approval_policy


update_auto_pilot_approval_policy_many

update multiples rows of table: "auto_pilot_approval_policy"

Arguments:

  • updates: [auto_pilot_approval_policy_updates!]! - updates to execute, in order

Returns: [auto_pilot_approval_policy_mutation_response]


update_auto_pilot_approval_status

update data of the table: "auto_pilot_approval_status"

Arguments:

  • _set: auto_pilot_approval_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_approval_status_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_approval_status_mutation_response


update_auto_pilot_approval_status_by_pk

update single row of the table: "auto_pilot_approval_status"

Arguments:

  • _set: auto_pilot_approval_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_approval_status_pk_columns_input!

Returns: auto_pilot_approval_status


update_auto_pilot_approval_status_many

update multiples rows of table: "auto_pilot_approval_status"

Arguments:

  • updates: [auto_pilot_approval_status_updates!]! - updates to execute, in order

Returns: [auto_pilot_approval_status_mutation_response]


update_auto_pilot_approvals

update data of the table: "auto_pilot_approvals"

Arguments:

  • _append: auto_pilot_approvals_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_approvals_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_approvals_delete_elem_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_key: auto_pilot_approvals_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_approvals_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_approvals_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_approvals_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_approvals_mutation_response


update_auto_pilot_approvals_by_pk

update single row of the table: "auto_pilot_approvals"

Arguments:

  • _append: auto_pilot_approvals_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_approvals_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_approvals_delete_elem_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_key: auto_pilot_approvals_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_approvals_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_approvals_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_approvals_pk_columns_input!

Returns: auto_pilot_approvals


update_auto_pilot_approvals_many

update multiples rows of table: "auto_pilot_approvals"

Arguments:

  • updates: [auto_pilot_approvals_updates!]! - updates to execute, in order

Returns: [auto_pilot_approvals_mutation_response]


update_auto_pilot_by_pk

update single row of the table: "auto_pilot"

Arguments:

  • _append: auto_pilot_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_delete_elem_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_key: auto_pilot_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_pk_columns_input!

Returns: auto_pilot


update_auto_pilot_category

update data of the table: "auto_pilot_category"

Arguments:

  • _set: auto_pilot_category_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_category_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_category_mutation_response


update_auto_pilot_category_by_pk

update single row of the table: "auto_pilot_category"

Arguments:

  • _set: auto_pilot_category_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_category_pk_columns_input!

Returns: auto_pilot_category


update_auto_pilot_category_many

update multiples rows of table: "auto_pilot_category"

Arguments:

  • updates: [auto_pilot_category_updates!]! - updates to execute, in order

Returns: [auto_pilot_category_mutation_response]


update_auto_pilot_execution_status

update data of the table: "auto_pilot_execution_status"

Arguments:

  • _set: auto_pilot_execution_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_execution_status_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_execution_status_mutation_response


update_auto_pilot_execution_status_by_pk

update single row of the table: "auto_pilot_execution_status"

Arguments:

  • _set: auto_pilot_execution_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_execution_status_pk_columns_input!

Returns: auto_pilot_execution_status


update_auto_pilot_execution_status_many

update multiples rows of table: "auto_pilot_execution_status"

Arguments:

  • updates: [auto_pilot_execution_status_updates!]! - updates to execute, in order

Returns: [auto_pilot_execution_status_mutation_response]


update_auto_pilot_many

update multiples rows of table: "auto_pilot"

Arguments:

  • updates: [auto_pilot_updates!]! - updates to execute, in order

Returns: [auto_pilot_mutation_response]


update_auto_pilot_policy

update auto pilot approval policy

Arguments:

  • arg1: UpdateApprovalInput!

Returns: UpdateApprovalOutput


update_auto_pilot_reviewee

update data of the table: "auto_pilot_reviewee"

Arguments:

  • _set: auto_pilot_reviewee_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_reviewee_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_reviewee_mutation_response


update_auto_pilot_reviewee_by_pk

update single row of the table: "auto_pilot_reviewee"

Arguments:

  • _set: auto_pilot_reviewee_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_reviewee_pk_columns_input!

Returns: auto_pilot_reviewee


update_auto_pilot_reviewee_many

update multiples rows of table: "auto_pilot_reviewee"

Arguments:

  • updates: [auto_pilot_reviewee_updates!]! - updates to execute, in order

Returns: [auto_pilot_reviewee_mutation_response]


update_auto_pilot_reviewers

update data of the table: "auto_pilot_reviewers"

Arguments:

  • _set: auto_pilot_reviewers_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_reviewers_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_reviewers_mutation_response


update_auto_pilot_reviewers_by_pk

update single row of the table: "auto_pilot_reviewers"

Arguments:

  • _set: auto_pilot_reviewers_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_reviewers_pk_columns_input!

Returns: auto_pilot_reviewers


update_auto_pilot_reviewers_many

update multiples rows of table: "auto_pilot_reviewers"

Arguments:

  • updates: [auto_pilot_reviewers_updates!]! - updates to execute, in order

Returns: [auto_pilot_reviewers_mutation_response]


update_auto_pilot_status

update data of the table: "auto_pilot_status"

Arguments:

  • _set: auto_pilot_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_status_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_status_mutation_response


update_auto_pilot_status_by_pk

update single row of the table: "auto_pilot_status"

Arguments:

  • _set: auto_pilot_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_status_pk_columns_input!

Returns: auto_pilot_status


update_auto_pilot_status_many

update multiples rows of table: "auto_pilot_status"

Arguments:

  • updates: [auto_pilot_status_updates!]! - updates to execute, in order

Returns: [auto_pilot_status_mutation_response]


update_auto_pilot_task

update data of the table: "auto_pilot_task"

Arguments:

  • _append: auto_pilot_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_task_delete_elem_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_key: auto_pilot_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_task_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_task_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_task_mutation_response


update_auto_pilot_task_by_pk

update single row of the table: "auto_pilot_task"

Arguments:

  • _append: auto_pilot_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_task_delete_elem_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_key: auto_pilot_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_task_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_task_pk_columns_input!

Returns: auto_pilot_task


update_auto_pilot_task_many

update multiples rows of table: "auto_pilot_task"

Arguments:

  • updates: [auto_pilot_task_updates!]! - updates to execute, in order

Returns: [auto_pilot_task_mutation_response]


update_auto_pilot_task_status

update data of the table: "auto_pilot_task_status"

Arguments:

  • _set: auto_pilot_task_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_task_status_bool_exp! - filter the rows which have to be updated

Returns: auto_pilot_task_status_mutation_response


update_auto_pilot_task_status_by_pk

update single row of the table: "auto_pilot_task_status"

Arguments:

  • _set: auto_pilot_task_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_pilot_task_status_pk_columns_input!

Returns: auto_pilot_task_status


update_auto_pilot_task_status_many

update multiples rows of table: "auto_pilot_task_status"

Arguments:

  • updates: [auto_pilot_task_status_updates!]! - updates to execute, in order

Returns: [auto_pilot_task_status_mutation_response]


update_auto_playbook

update data of the table: "auto_playbook"

Arguments:

  • _append: auto_playbook_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_delete_elem_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_key: auto_playbook_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_mutation_response


update_auto_playbook_actions

update data of the table: "auto_playbook_actions"

Arguments:

  • _append: auto_playbook_actions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_actions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_actions_delete_elem_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_key: auto_playbook_actions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_actions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_actions_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_actions_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_actions_mutation_response


update_auto_playbook_actions_by_pk

update single row of the table: "auto_playbook_actions"

Arguments:

  • _append: auto_playbook_actions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_actions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_actions_delete_elem_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_key: auto_playbook_actions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_actions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_actions_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_actions_pk_columns_input!

Returns: auto_playbook_actions


update_auto_playbook_actions_many

update multiples rows of table: "auto_playbook_actions"

Arguments:

  • updates: [auto_playbook_actions_updates!]! - updates to execute, in order

Returns: [auto_playbook_actions_mutation_response]


update_auto_playbook_by_pk

update single row of the table: "auto_playbook"

Arguments:

  • _append: auto_playbook_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_delete_elem_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_key: auto_playbook_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_pk_columns_input!

Returns: auto_playbook


update_auto_playbook_execution_status

update data of the table: "auto_playbook_execution_status"

Arguments:

  • _set: auto_playbook_execution_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_execution_status_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_execution_status_mutation_response


update_auto_playbook_execution_status_by_pk

update single row of the table: "auto_playbook_execution_status"

Arguments:

  • _set: auto_playbook_execution_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_execution_status_pk_columns_input!

Returns: auto_playbook_execution_status


update_auto_playbook_execution_status_many

update multiples rows of table: "auto_playbook_execution_status"

Arguments:

  • updates: [auto_playbook_execution_status_updates!]! - updates to execute, in order

Returns: [auto_playbook_execution_status_mutation_response]


update_auto_playbook_executions

update data of the table: "auto_playbook_executions"

Arguments:

  • _append: auto_playbook_executions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_executions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_executions_delete_elem_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_key: auto_playbook_executions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_executions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_executions_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_executions_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_executions_mutation_response


update_auto_playbook_executions_by_pk

update single row of the table: "auto_playbook_executions"

Arguments:

  • _append: auto_playbook_executions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_executions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_executions_delete_elem_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_key: auto_playbook_executions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_executions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_executions_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_executions_pk_columns_input!

Returns: auto_playbook_executions


update_auto_playbook_executions_many

update multiples rows of table: "auto_playbook_executions"

Arguments:

  • updates: [auto_playbook_executions_updates!]! - updates to execute, in order

Returns: [auto_playbook_executions_mutation_response]


update_auto_playbook_many

update multiples rows of table: "auto_playbook"

Arguments:

  • updates: [auto_playbook_updates!]! - updates to execute, in order

Returns: [auto_playbook_mutation_response]


update_auto_playbook_status

update data of the table: "auto_playbook_status"

Arguments:

  • _set: auto_playbook_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_status_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_status_mutation_response


update_auto_playbook_status_by_pk

update single row of the table: "auto_playbook_status"

Arguments:

  • _set: auto_playbook_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_status_pk_columns_input!

Returns: auto_playbook_status


update_auto_playbook_status_many

update multiples rows of table: "auto_playbook_status"

Arguments:

  • updates: [auto_playbook_status_updates!]! - updates to execute, in order

Returns: [auto_playbook_status_mutation_response]


update_auto_playbook_task

update data of the table: "auto_playbook_task"

Arguments:

  • _append: auto_playbook_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_task_delete_elem_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_key: auto_playbook_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_task_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_task_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_task_mutation_response


update_auto_playbook_task_by_pk

update single row of the table: "auto_playbook_task"

Arguments:

  • _append: auto_playbook_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_task_delete_elem_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_key: auto_playbook_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_task_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_task_pk_columns_input!

Returns: auto_playbook_task


update_auto_playbook_task_many

update multiples rows of table: "auto_playbook_task"

Arguments:

  • updates: [auto_playbook_task_updates!]! - updates to execute, in order

Returns: [auto_playbook_task_mutation_response]


update_auto_playbook_task_status

update data of the table: "auto_playbook_task_status"

Arguments:

  • _set: auto_playbook_task_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_task_status_bool_exp! - filter the rows which have to be updated

Returns: auto_playbook_task_status_mutation_response


update_auto_playbook_task_status_by_pk

update single row of the table: "auto_playbook_task_status"

Arguments:

  • _set: auto_playbook_task_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auto_playbook_task_status_pk_columns_input!

Returns: auto_playbook_task_status


update_auto_playbook_task_status_many

update multiples rows of table: "auto_playbook_task_status"

Arguments:

  • updates: [auto_playbook_task_status_updates!]! - updates to execute, in order

Returns: [auto_playbook_task_status_mutation_response]


update_autopilot_attributes

update data of the table: "autopilot_attributes"

Arguments:

  • _set: autopilot_attributes_set_input - sets the columns of the filtered rows to the given values
  • where: autopilot_attributes_bool_exp! - filter the rows which have to be updated

Returns: autopilot_attributes_mutation_response


update_autopilot_attributes_by_pk

update single row of the table: "autopilot_attributes"

Arguments:

  • _set: autopilot_attributes_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: autopilot_attributes_pk_columns_input!

Returns: autopilot_attributes


update_autopilot_attributes_many

update multiples rows of table: "autopilot_attributes"

Arguments:

  • updates: [autopilot_attributes_updates!]! - updates to execute, in order

Returns: [autopilot_attributes_mutation_response]


workflow_create

Arguments:

  • request: WorkflowCreateRequest!

Returns: WorkflowCreateResponse


workflow_delete

Arguments:

  • request: WorkflowDeleteRequest!

Returns: WorkflowDeleteResponse


workflow_pause

Arguments:

  • request: WorkflowGetRequest!

Returns: WorkflowPauseResponse


workflow_resume

Arguments:

  • request: WorkflowGetRequest!

Returns: WorkflowResumeResponse


workflow_retrigger_execution

Arguments:

  • request: WorkflowRetriggerRequest!

Returns: WorkflowRetriggerResponse


workflow_trigger

Arguments:

  • request: WorkflowTriggerRequest!

Returns: WorkflowTriggerResponse


workflow_trigger_dryrun

Arguments:

  • request: WorkflowDryrunRequest!

Returns: WorkflowDryrunResponse


workflow_trigger_task

Arguments:

  • account_id: String!
  • params: jsonb
  • task_type: String!

Returns: jsonb!


workflow_update

Arguments:

  • request: WorkflowUpdateRequest!

Returns: WorkflowUpdateResponse


workflow_validate

Arguments:

  • request: WorkflowCreateRequest!

Returns: WorkflowValidateResponse


Agents

Agent deployment, configuration, playbooks, tasks, and audit logs.

agent_token_create

regenerate agent account token

Arguments:

  • object: AgentRegenerateTokenInput!

Returns: AgentRegenerateTokenOutput


delete_agent

delete data from the table: "agent"

Arguments:

  • where: agent_bool_exp! - filter the rows which have to be deleted

Returns: agent_mutation_response


delete_agent_audit_log

delete data from the table: "agent_audit_log"

Arguments:

  • where: agent_audit_log_bool_exp! - filter the rows which have to be deleted

Returns: agent_audit_log_mutation_response


delete_agent_audit_log_by_pk

delete single row from the table: "agent_audit_log"

Arguments:

  • id: uuid!

Returns: agent_audit_log


delete_agent_by_pk

delete single row from the table: "agent"

Arguments:

  • id: uuid!

Returns: agent


delete_agent_playbook

delete data from the table: "agent_playbook"

Arguments:

  • where: agent_playbook_bool_exp! - filter the rows which have to be deleted

Returns: agent_playbook_mutation_response


delete_agent_playbook_action

delete data from the table: "agent_playbook_action"

Arguments:

  • where: agent_playbook_action_bool_exp! - filter the rows which have to be deleted

Returns: agent_playbook_action_mutation_response


delete_agent_playbook_action_by_pk

delete single row from the table: "agent_playbook_action"

Arguments:

  • name: String!

Returns: agent_playbook_action


delete_agent_playbook_by_pk

delete single row from the table: "agent_playbook"

Arguments:

  • id: uuid!

Returns: agent_playbook


delete_agent_playbook_processor

delete data from the table: "agent_playbook_processor"

Arguments:

  • where: agent_playbook_processor_bool_exp! - filter the rows which have to be deleted

Returns: agent_playbook_processor_mutation_response


delete_agent_playbook_processor_by_pk

delete single row from the table: "agent_playbook_processor"

Arguments:

  • name: String!

Returns: agent_playbook_processor


delete_agent_playbook_source

delete data from the table: "agent_playbook_source"

Arguments:

  • where: agent_playbook_source_bool_exp! - filter the rows which have to be deleted

Returns: agent_playbook_source_mutation_response


delete_agent_playbook_source_by_pk

delete single row from the table: "agent_playbook_source"

Arguments:

  • value: String!

Returns: agent_playbook_source


delete_agent_playbook_trigger

delete data from the table: "agent_playbook_trigger"

Arguments:

  • where: agent_playbook_trigger_bool_exp! - filter the rows which have to be deleted

Returns: agent_playbook_trigger_mutation_response


delete_agent_playbook_trigger_by_pk

delete single row from the table: "agent_playbook_trigger"

Arguments:

  • name: String!

Returns: agent_playbook_trigger


delete_agent_task

delete data from the table: "agent_task"

Arguments:

  • where: agent_task_bool_exp! - filter the rows which have to be deleted

Returns: agent_task_mutation_response


delete_agent_task_by_pk

delete single row from the table: "agent_task"

Arguments:

  • id: uuid!

Returns: agent_task


insert_agent

insert data into the table: "agent"

Arguments:

  • objects: [agent_insert_input!]! - the rows to be inserted
  • on_conflict: agent_on_conflict - upsert condition

Returns: agent_mutation_response


insert_agent_audit_log

insert data into the table: "agent_audit_log"

Arguments:

  • objects: [agent_audit_log_insert_input!]! - the rows to be inserted
  • on_conflict: agent_audit_log_on_conflict - upsert condition

Returns: agent_audit_log_mutation_response


insert_agent_audit_log_one

insert a single row into the table: "agent_audit_log"

Arguments:

  • object: agent_audit_log_insert_input! - the row to be inserted
  • on_conflict: agent_audit_log_on_conflict - upsert condition

Returns: agent_audit_log


insert_agent_one

insert a single row into the table: "agent"

Arguments:

  • object: agent_insert_input! - the row to be inserted
  • on_conflict: agent_on_conflict - upsert condition

Returns: agent


insert_agent_playbook

insert data into the table: "agent_playbook"

Arguments:

  • objects: [agent_playbook_insert_input!]! - the rows to be inserted
  • on_conflict: agent_playbook_on_conflict - upsert condition

Returns: agent_playbook_mutation_response


insert_agent_playbook_action

insert data into the table: "agent_playbook_action"

Arguments:

  • objects: [agent_playbook_action_insert_input!]! - the rows to be inserted
  • on_conflict: agent_playbook_action_on_conflict - upsert condition

Returns: agent_playbook_action_mutation_response


insert_agent_playbook_action_one

insert a single row into the table: "agent_playbook_action"

Arguments:

  • object: agent_playbook_action_insert_input! - the row to be inserted
  • on_conflict: agent_playbook_action_on_conflict - upsert condition

Returns: agent_playbook_action


insert_agent_playbook_one

insert a single row into the table: "agent_playbook"

Arguments:

  • object: agent_playbook_insert_input! - the row to be inserted
  • on_conflict: agent_playbook_on_conflict - upsert condition

Returns: agent_playbook


insert_agent_playbook_processor

insert data into the table: "agent_playbook_processor"

Arguments:

  • objects: [agent_playbook_processor_insert_input!]! - the rows to be inserted
  • on_conflict: agent_playbook_processor_on_conflict - upsert condition

Returns: agent_playbook_processor_mutation_response


insert_agent_playbook_processor_one

insert a single row into the table: "agent_playbook_processor"

Arguments:

  • object: agent_playbook_processor_insert_input! - the row to be inserted
  • on_conflict: agent_playbook_processor_on_conflict - upsert condition

Returns: agent_playbook_processor


insert_agent_playbook_source

insert data into the table: "agent_playbook_source"

Arguments:

  • objects: [agent_playbook_source_insert_input!]! - the rows to be inserted
  • on_conflict: agent_playbook_source_on_conflict - upsert condition

Returns: agent_playbook_source_mutation_response


insert_agent_playbook_source_one

insert a single row into the table: "agent_playbook_source"

Arguments:

  • object: agent_playbook_source_insert_input! - the row to be inserted
  • on_conflict: agent_playbook_source_on_conflict - upsert condition

Returns: agent_playbook_source


insert_agent_playbook_trigger

insert data into the table: "agent_playbook_trigger"

Arguments:

  • objects: [agent_playbook_trigger_insert_input!]! - the rows to be inserted
  • on_conflict: agent_playbook_trigger_on_conflict - upsert condition

Returns: agent_playbook_trigger_mutation_response


insert_agent_playbook_trigger_one

insert a single row into the table: "agent_playbook_trigger"

Arguments:

  • object: agent_playbook_trigger_insert_input! - the row to be inserted
  • on_conflict: agent_playbook_trigger_on_conflict - upsert condition

Returns: agent_playbook_trigger


insert_agent_task

insert data into the table: "agent_task"

Arguments:

  • objects: [agent_task_insert_input!]! - the rows to be inserted
  • on_conflict: agent_task_on_conflict - upsert condition

Returns: agent_task_mutation_response


insert_agent_task_one

insert a single row into the table: "agent_task"

Arguments:

  • object: agent_task_insert_input! - the row to be inserted
  • on_conflict: agent_task_on_conflict - upsert condition

Returns: agent_task


update_agent

update data of the table: "agent"

Arguments:

  • _append: agent_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_delete_elem_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_key: agent_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_set_input - sets the columns of the filtered rows to the given values
  • where: agent_bool_exp! - filter the rows which have to be updated

Returns: agent_mutation_response


update_agent_audit_log

update data of the table: "agent_audit_log"

Arguments:

  • _append: agent_audit_log_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_audit_log_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_audit_log_delete_elem_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_key: agent_audit_log_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: agent_audit_log_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: agent_audit_log_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_audit_log_set_input - sets the columns of the filtered rows to the given values
  • where: agent_audit_log_bool_exp! - filter the rows which have to be updated

Returns: agent_audit_log_mutation_response


update_agent_audit_log_by_pk

update single row of the table: "agent_audit_log"

Arguments:

  • _append: agent_audit_log_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_audit_log_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_audit_log_delete_elem_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_key: agent_audit_log_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: agent_audit_log_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: agent_audit_log_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_audit_log_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_audit_log_pk_columns_input!

Returns: agent_audit_log


update_agent_audit_log_many

update multiples rows of table: "agent_audit_log"

Arguments:

  • updates: [agent_audit_log_updates!]! - updates to execute, in order

Returns: [agent_audit_log_mutation_response]


update_agent_by_pk

update single row of the table: "agent"

Arguments:

  • _append: agent_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_delete_elem_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_key: agent_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_pk_columns_input!

Returns: agent


update_agent_many

update multiples rows of table: "agent"

Arguments:

  • updates: [agent_updates!]! - updates to execute, in order

Returns: [agent_mutation_response]


update_agent_playbook

update data of the table: "agent_playbook"

Arguments:

  • _append: agent_playbook_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_delete_elem_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_key: agent_playbook_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_bool_exp! - filter the rows which have to be updated

Returns: agent_playbook_mutation_response


update_agent_playbook_action

update data of the table: "agent_playbook_action"

Arguments:

  • _append: agent_playbook_action_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_action_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_action_delete_elem_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_key: agent_playbook_action_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_action_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_action_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_action_bool_exp! - filter the rows which have to be updated

Returns: agent_playbook_action_mutation_response


update_agent_playbook_action_by_pk

update single row of the table: "agent_playbook_action"

Arguments:

  • _append: agent_playbook_action_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_action_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_action_delete_elem_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_key: agent_playbook_action_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_action_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_action_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_playbook_action_pk_columns_input!

Returns: agent_playbook_action


update_agent_playbook_action_many

update multiples rows of table: "agent_playbook_action"

Arguments:

  • updates: [agent_playbook_action_updates!]! - updates to execute, in order

Returns: [agent_playbook_action_mutation_response]


update_agent_playbook_by_pk

update single row of the table: "agent_playbook"

Arguments:

  • _append: agent_playbook_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_delete_elem_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_key: agent_playbook_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_playbook_pk_columns_input!

Returns: agent_playbook


update_agent_playbook_many

update multiples rows of table: "agent_playbook"

Arguments:

  • updates: [agent_playbook_updates!]! - updates to execute, in order

Returns: [agent_playbook_mutation_response]


update_agent_playbook_processor

update data of the table: "agent_playbook_processor"

Arguments:

  • _set: agent_playbook_processor_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_processor_bool_exp! - filter the rows which have to be updated

Returns: agent_playbook_processor_mutation_response


update_agent_playbook_processor_by_pk

update single row of the table: "agent_playbook_processor"

Arguments:

  • _set: agent_playbook_processor_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_playbook_processor_pk_columns_input!

Returns: agent_playbook_processor


update_agent_playbook_processor_many

update multiples rows of table: "agent_playbook_processor"

Arguments:

  • updates: [agent_playbook_processor_updates!]! - updates to execute, in order

Returns: [agent_playbook_processor_mutation_response]


update_agent_playbook_source

update data of the table: "agent_playbook_source"

Arguments:

  • _set: agent_playbook_source_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_source_bool_exp! - filter the rows which have to be updated

Returns: agent_playbook_source_mutation_response


update_agent_playbook_source_by_pk

update single row of the table: "agent_playbook_source"

Arguments:

  • _set: agent_playbook_source_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_playbook_source_pk_columns_input!

Returns: agent_playbook_source


update_agent_playbook_source_many

update multiples rows of table: "agent_playbook_source"

Arguments:

  • updates: [agent_playbook_source_updates!]! - updates to execute, in order

Returns: [agent_playbook_source_mutation_response]


update_agent_playbook_trigger

update data of the table: "agent_playbook_trigger"

Arguments:

  • _append: agent_playbook_trigger_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_trigger_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_trigger_delete_elem_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_key: agent_playbook_trigger_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_trigger_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_trigger_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_trigger_bool_exp! - filter the rows which have to be updated

Returns: agent_playbook_trigger_mutation_response


update_agent_playbook_trigger_by_pk

update single row of the table: "agent_playbook_trigger"

Arguments:

  • _append: agent_playbook_trigger_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_trigger_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_trigger_delete_elem_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_key: agent_playbook_trigger_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_trigger_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_trigger_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_playbook_trigger_pk_columns_input!

Returns: agent_playbook_trigger


update_agent_playbook_trigger_many

update multiples rows of table: "agent_playbook_trigger"

Arguments:

  • updates: [agent_playbook_trigger_updates!]! - updates to execute, in order

Returns: [agent_playbook_trigger_mutation_response]


update_agent_task

update data of the table: "agent_task"

Arguments:

  • _append: agent_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_task_delete_elem_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_key: agent_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_task_set_input - sets the columns of the filtered rows to the given values
  • where: agent_task_bool_exp! - filter the rows which have to be updated

Returns: agent_task_mutation_response


update_agent_task_by_pk

update single row of the table: "agent_task"

Arguments:

  • _append: agent_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_task_delete_elem_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_key: agent_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_task_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: agent_task_pk_columns_input!

Returns: agent_task


update_agent_task_many

update multiples rows of table: "agent_task"

Arguments:

  • updates: [agent_task_updates!]! - updates to execute, in order

Returns: [agent_task_mutation_response]


AI & LLM

AI conversations, knowledge bases, RAG, LLM agents, tools, and root cause analysis.

ai_create_agent

Arguments:

  • request: CreateAgentRequest!

Returns: CreateAgentResponse


ai_create_agent_extension

Arguments:

  • request: CreateExtensionAgentRequest!

Returns: CreateAgentExtensionResponse


ai_create_function

Arguments:

  • account_id: String!
  • function: CreateFunctionInput!

Returns: FunctionResponse


ai_create_gc

Create an account-scoped global context file

Arguments:

  • request: CreateGCRequest!

Returns: CreateGCResponse


ai_create_kb

Create an account-scoped knowledge base

Arguments:

  • request: CreateKBRequest!

Returns: CreateKBResponse


ai_create_rag

This action is used to add data to built-in agents

Arguments:

  • request: CreateAgentRagInput!

Returns: CreateAgentRagOutput


ai_create_tool

Arguments:

  • request: CreateToolRequest!

Returns: CreateToolResponse


ai_delete_agent

Arguments:

  • request: DeleteAgentRequest!

Returns: DeleteAgentResponse


ai_delete_function

Arguments:

  • request: AiDeleteFunctionRequest!

Returns: AiDeleteFunctionResponse


ai_delete_gc

Delete a global context

Arguments:

  • request: DeleteGCRequest!

Returns: DeleteGCResponse


ai_delete_kb

Delete a knowledge base

Arguments:

  • request: DeleteKBRequest!

Returns: DeleteKBResponse


ai_delete_llm_conversation_by_id

delete conversation from all tables

Arguments:

  • request: DeleteLlmConversationByIdRequest!

Returns: DeleteLlmConversationByIdOutput


ai_delete_saved_conversation

delete llm conversation

Arguments:

  • request: DeleteLLMConversationRequest!

Returns: DeleteLLMConversationResponse


ai_delete_tool

Arguments:

  • request: DeleteToolRequest!

Returns: DeleteToolResponse


ai_feedback_create

Generate feedback

Arguments:

  • request: AiFeedbackCreateRequest!

Returns: GenerateFeedbackResponse


ai_followup_response

Arguments:

  • request: AIFollowupRequest!

Returns: AIFollowupResponse


ai_generate_es_dsl_query

Arguments:

  • request: AIGetESDslQueryRequest!

Returns: AIGetESDslQueryResponse


ai_generate_loki_query

Arguments:

  • request: AIGetLokiQueryRequest!

Returns: AIGetLokiQueryResponse


ai_generate_prometheus_query

Generate Prometheus Query

Arguments:

  • request: AIGetPrometheusQueryRequest!

Returns: AIGetPrometheusQueryResponse


ai_get_conversation_suggestions

Arguments:

  • request: AIGetConversationSuggestionRequest!

Returns: AIGetConversationSuggestionResponse


ai_get_conversation_usage_metrics

Arguments:

  • request: AIGetConversationUsageMetricsRequest!

Returns: AIGetConversationUsageMetricsResponse


ai_map_kb_to_agent

Map a knowledge base to an agent (many-to-many)

Arguments:

  • request: MapKBToAgentRequest!

Returns: MapKBToAgentResponse


ai_save_conversation

Arguments:

  • request: SaveLLMConversationRequest!

Returns: SaveLLMConversationResponse


ai_stop_investigation

Arguments:

  • request: AIStopInvestigationRequest!

Returns: AIStopInvestigationResponse


ai_submit_client_tool_call_response

Arguments:

  • request: AISubmitClientToolCallRequest!

Returns: AISubmitClientToolCallResponse


ai_trigger_investigation

Arguments:

  • request: AITriggerInvestigationRequest!

Returns: AITriggerInvestigationResponse


ai_unmap_kb_from_agent

Remove agent mapping from a knowledge base

Arguments:

  • request: UnmapKBFromAgentRequest!

Returns: UnmapKBFromAgentResponse


ai_update_agent

Changes the status of agent

Arguments:

  • request: UpdateAgentRequest!

Returns: UpdateAgentResponse


ai_update_agent_extension

Arguments:

  • request: UpdateAgentExtensionRequest!

Returns: UpdateAgentExtensionResponse


ai_update_function

Arguments:

  • account_id: String!
  • function: UpdateFunctionInput!
  • function_id: String!

Returns: FunctionUpdateResponse


ai_update_gc

Update a global context

Arguments:

  • request: UpdateGCRequest!

Returns: UpdateGCResponse


ai_update_kb

Update a knowledge base

Arguments:

  • request: UpdateKBRequest!

Returns: UpdateKBResponse


ai_update_tool

Arguments:

  • request: UpdateToolRequest!

Returns: UpdateToolResponse


delete_knowledge_base

delete data from the table: "knowledge_base"

Arguments:

  • where: knowledge_base_bool_exp! - filter the rows which have to be deleted

Returns: knowledge_base_mutation_response


delete_knowledge_base_by_pk

delete single row from the table: "knowledge_base"

Arguments:

  • id: uuid!

Returns: knowledge_base


delete_knowledge_graph_edge

delete data from the table: "knowledge_graph_edge"

Arguments:

  • where: knowledge_graph_edge_bool_exp! - filter the rows which have to be deleted

Returns: knowledge_graph_edge_mutation_response


delete_knowledge_graph_edge_by_pk

delete single row from the table: "knowledge_graph_edge"

Arguments:

  • id: uuid!

Returns: knowledge_graph_edge


delete_knowledge_graph_metadata

delete data from the table: "knowledge_graph_metadata"

Arguments:

  • where: knowledge_graph_metadata_bool_exp! - filter the rows which have to be deleted

Returns: knowledge_graph_metadata_mutation_response


delete_knowledge_graph_metadata_by_pk

delete single row from the table: "knowledge_graph_metadata"

Arguments:

  • id: uuid!

Returns: knowledge_graph_metadata


delete_knowledge_graph_node

delete data from the table: "knowledge_graph_node"

Arguments:

  • where: knowledge_graph_node_bool_exp! - filter the rows which have to be deleted

Returns: knowledge_graph_node_mutation_response


delete_knowledge_graph_node_by_pk

delete single row from the table: "knowledge_graph_node"

Arguments:

  • id: uuid!

Returns: knowledge_graph_node


delete_knowledge_graph_relationship_types

delete data from the table: "knowledge_graph_relationship_types"

Arguments:

  • where: knowledge_graph_relationship_types_bool_exp! - filter the rows which have to be deleted

Returns: knowledge_graph_relationship_types_mutation_response


delete_knowledge_graph_relationship_types_by_pk

delete single row from the table: "knowledge_graph_relationship_types"

Arguments:

  • name: String!

Returns: knowledge_graph_relationship_types


delete_knowledge_graph_tenant_filters

delete data from the table: "knowledge_graph_tenant_filters"

Arguments:

  • where: knowledge_graph_tenant_filters_bool_exp! - filter the rows which have to be deleted

Returns: knowledge_graph_tenant_filters_mutation_response


delete_knowledge_graph_tenant_filters_by_pk

delete single row from the table: "knowledge_graph_tenant_filters"

Arguments:

  • id: uuid!

Returns: knowledge_graph_tenant_filters


delete_llm_agents

delete data from the table: "llm_agents"

Arguments:

  • where: llm_agents_bool_exp! - filter the rows which have to be deleted

Returns: llm_agents_mutation_response


delete_llm_agents_by_pk

delete single row from the table: "llm_agents"

Arguments:

  • id: uuid!

Returns: llm_agents


delete_llm_agents_installation

delete data from the table: "llm_agents_installation"

Arguments:

  • where: llm_agents_installation_bool_exp! - filter the rows which have to be deleted

Returns: llm_agents_installation_mutation_response


delete_llm_agents_installation_by_pk

delete single row from the table: "llm_agents_installation"

Arguments:

  • id: uuid!

Returns: llm_agents_installation


delete_llm_conversation_agent

delete data from the table: "llm_conversation_agent"

Arguments:

  • where: llm_conversation_agent_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_agent_mutation_response


delete_llm_conversation_agent_by_pk

delete single row from the table: "llm_conversation_agent"

Arguments:

  • id: uuid!

Returns: llm_conversation_agent


delete_llm_conversation_agent_critiques

delete data from the table: "llm_conversation_agent_critiques"

Arguments:

  • where: llm_conversation_agent_critiques_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_agent_critiques_mutation_response


delete_llm_conversation_agent_critiques_by_pk

delete single row from the table: "llm_conversation_agent_critiques"

Arguments:

  • id: uuid!

Returns: llm_conversation_agent_critiques


delete_llm_conversation_feedback

delete data from the table: "llm_conversation_feedback"

Arguments:

  • where: llm_conversation_feedback_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_feedback_mutation_response


delete_llm_conversation_feedback_by_pk

delete single row from the table: "llm_conversation_feedback"

Arguments:

  • id: Int!

Returns: llm_conversation_feedback


delete_llm_conversation_history

delete data from the table: "llm_conversation_history"

Arguments:

  • where: llm_conversation_history_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_history_mutation_response


delete_llm_conversation_history_by_pk

delete single row from the table: "llm_conversation_history"

Arguments:

  • id: uuid!

Returns: llm_conversation_history


delete_llm_conversation_messages

delete data from the table: "llm_conversation_messages"

Arguments:

  • where: llm_conversation_messages_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_messages_mutation_response


delete_llm_conversation_messages_by_pk

delete single row from the table: "llm_conversation_messages"

Arguments:

  • id: uuid!

Returns: llm_conversation_messages


delete_llm_conversation_saved

delete data from the table: "llm_conversation_saved"

Arguments:

  • where: llm_conversation_saved_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_saved_mutation_response


delete_llm_conversation_saved_by_pk

delete single row from the table: "llm_conversation_saved"

Arguments:

  • id: uuid!

Returns: llm_conversation_saved


delete_llm_conversation_tool_calls

delete data from the table: "llm_conversation_tool_calls"

Arguments:

  • where: llm_conversation_tool_calls_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversation_tool_calls_mutation_response


delete_llm_conversation_tool_calls_by_pk

delete single row from the table: "llm_conversation_tool_calls"

Arguments:

  • id: uuid!

Returns: llm_conversation_tool_calls


delete_llm_conversations

delete data from the table: "llm_conversations"

Arguments:

  • where: llm_conversations_bool_exp! - filter the rows which have to be deleted

Returns: llm_conversations_mutation_response


delete_llm_conversations_by_pk

delete single row from the table: "llm_conversations"

Arguments:

  • id: uuid!

Returns: llm_conversations


delete_llm_functions

delete data from the table: "llm_functions"

Arguments:

  • where: llm_functions_bool_exp! - filter the rows which have to be deleted

Returns: llm_functions_mutation_response


delete_llm_functions_by_pk

delete single row from the table: "llm_functions"

Arguments:

  • id: uuid!

Returns: llm_functions


delete_llm_model_pricing

delete data from the table: "llm_model_pricing"

Arguments:

  • where: llm_model_pricing_bool_exp! - filter the rows which have to be deleted

Returns: llm_model_pricing_mutation_response


delete_llm_model_pricing_by_pk

delete single row from the table: "llm_model_pricing"

Arguments:

  • id: uuid!

Returns: llm_model_pricing


delete_llm_rag_audit

delete data from the table: "llm_rag_audit"

Arguments:

  • where: llm_rag_audit_bool_exp! - filter the rows which have to be deleted

Returns: llm_rag_audit_mutation_response


delete_llm_rag_audit_by_pk

delete single row from the table: "llm_rag_audit"

Arguments:

  • id: uuid!

Returns: llm_rag_audit


delete_llm_rags

delete data from the table: "llm_rags"

Arguments:

  • where: llm_rags_bool_exp! - filter the rows which have to be deleted

Returns: llm_rags_mutation_response


delete_llm_rags_by_pk

delete single row from the table: "llm_rags"

Arguments:

  • id: uuid!

Returns: llm_rags


insert_knowledge_base

insert data into the table: "knowledge_base"

Arguments:

  • objects: [knowledge_base_insert_input!]! - the rows to be inserted
  • on_conflict: knowledge_base_on_conflict - upsert condition

Returns: knowledge_base_mutation_response


insert_knowledge_base_one

insert a single row into the table: "knowledge_base"

Arguments:

  • object: knowledge_base_insert_input! - the row to be inserted
  • on_conflict: knowledge_base_on_conflict - upsert condition

Returns: knowledge_base


insert_knowledge_graph_edge

insert data into the table: "knowledge_graph_edge"

Arguments:

  • objects: [knowledge_graph_edge_insert_input!]! - the rows to be inserted
  • on_conflict: knowledge_graph_edge_on_conflict - upsert condition

Returns: knowledge_graph_edge_mutation_response


insert_knowledge_graph_edge_one

insert a single row into the table: "knowledge_graph_edge"

Arguments:

  • object: knowledge_graph_edge_insert_input! - the row to be inserted
  • on_conflict: knowledge_graph_edge_on_conflict - upsert condition

Returns: knowledge_graph_edge


insert_knowledge_graph_metadata

insert data into the table: "knowledge_graph_metadata"

Arguments:

  • objects: [knowledge_graph_metadata_insert_input!]! - the rows to be inserted
  • on_conflict: knowledge_graph_metadata_on_conflict - upsert condition

Returns: knowledge_graph_metadata_mutation_response


insert_knowledge_graph_metadata_one

insert a single row into the table: "knowledge_graph_metadata"

Arguments:

  • object: knowledge_graph_metadata_insert_input! - the row to be inserted
  • on_conflict: knowledge_graph_metadata_on_conflict - upsert condition

Returns: knowledge_graph_metadata


insert_knowledge_graph_node

insert data into the table: "knowledge_graph_node"

Arguments:

  • objects: [knowledge_graph_node_insert_input!]! - the rows to be inserted
  • on_conflict: knowledge_graph_node_on_conflict - upsert condition

Returns: knowledge_graph_node_mutation_response


insert_knowledge_graph_node_one

insert a single row into the table: "knowledge_graph_node"

Arguments:

  • object: knowledge_graph_node_insert_input! - the row to be inserted
  • on_conflict: knowledge_graph_node_on_conflict - upsert condition

Returns: knowledge_graph_node


insert_knowledge_graph_relationship_types

insert data into the table: "knowledge_graph_relationship_types"

Arguments:

  • objects: [knowledge_graph_relationship_types_insert_input!]! - the rows to be inserted
  • on_conflict: knowledge_graph_relationship_types_on_conflict - upsert condition

Returns: knowledge_graph_relationship_types_mutation_response


insert_knowledge_graph_relationship_types_one

insert a single row into the table: "knowledge_graph_relationship_types"

Arguments:

  • object: knowledge_graph_relationship_types_insert_input! - the row to be inserted
  • on_conflict: knowledge_graph_relationship_types_on_conflict - upsert condition

Returns: knowledge_graph_relationship_types


insert_knowledge_graph_tenant_filters

insert data into the table: "knowledge_graph_tenant_filters"

Arguments:

  • objects: [knowledge_graph_tenant_filters_insert_input!]! - the rows to be inserted
  • on_conflict: knowledge_graph_tenant_filters_on_conflict - upsert condition

Returns: knowledge_graph_tenant_filters_mutation_response


insert_knowledge_graph_tenant_filters_one

insert a single row into the table: "knowledge_graph_tenant_filters"

Arguments:

  • object: knowledge_graph_tenant_filters_insert_input! - the row to be inserted
  • on_conflict: knowledge_graph_tenant_filters_on_conflict - upsert condition

Returns: knowledge_graph_tenant_filters


insert_llm_agents

insert data into the table: "llm_agents"

Arguments:

  • objects: [llm_agents_insert_input!]! - the rows to be inserted
  • on_conflict: llm_agents_on_conflict - upsert condition

Returns: llm_agents_mutation_response


insert_llm_agents_installation

insert data into the table: "llm_agents_installation"

Arguments:

  • objects: [llm_agents_installation_insert_input!]! - the rows to be inserted
  • on_conflict: llm_agents_installation_on_conflict - upsert condition

Returns: llm_agents_installation_mutation_response


insert_llm_agents_installation_one

insert a single row into the table: "llm_agents_installation"

Arguments:

  • object: llm_agents_installation_insert_input! - the row to be inserted
  • on_conflict: llm_agents_installation_on_conflict - upsert condition

Returns: llm_agents_installation


insert_llm_agents_one

insert a single row into the table: "llm_agents"

Arguments:

  • object: llm_agents_insert_input! - the row to be inserted
  • on_conflict: llm_agents_on_conflict - upsert condition

Returns: llm_agents


insert_llm_conversation_agent

insert data into the table: "llm_conversation_agent"

Arguments:

  • objects: [llm_conversation_agent_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_agent_on_conflict - upsert condition

Returns: llm_conversation_agent_mutation_response


insert_llm_conversation_agent_critiques

insert data into the table: "llm_conversation_agent_critiques"

Arguments:

  • objects: [llm_conversation_agent_critiques_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_agent_critiques_on_conflict - upsert condition

Returns: llm_conversation_agent_critiques_mutation_response


insert_llm_conversation_agent_critiques_one

insert a single row into the table: "llm_conversation_agent_critiques"

Arguments:

  • object: llm_conversation_agent_critiques_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_agent_critiques_on_conflict - upsert condition

Returns: llm_conversation_agent_critiques


insert_llm_conversation_agent_one

insert a single row into the table: "llm_conversation_agent"

Arguments:

  • object: llm_conversation_agent_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_agent_on_conflict - upsert condition

Returns: llm_conversation_agent


insert_llm_conversation_feedback

insert data into the table: "llm_conversation_feedback"

Arguments:

  • objects: [llm_conversation_feedback_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_feedback_on_conflict - upsert condition

Returns: llm_conversation_feedback_mutation_response


insert_llm_conversation_feedback_one

insert a single row into the table: "llm_conversation_feedback"

Arguments:

  • object: llm_conversation_feedback_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_feedback_on_conflict - upsert condition

Returns: llm_conversation_feedback


insert_llm_conversation_history

insert data into the table: "llm_conversation_history"

Arguments:

  • objects: [llm_conversation_history_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_history_on_conflict - upsert condition

Returns: llm_conversation_history_mutation_response


insert_llm_conversation_history_one

insert a single row into the table: "llm_conversation_history"

Arguments:

  • object: llm_conversation_history_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_history_on_conflict - upsert condition

Returns: llm_conversation_history


insert_llm_conversation_messages

insert data into the table: "llm_conversation_messages"

Arguments:

  • objects: [llm_conversation_messages_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_messages_on_conflict - upsert condition

Returns: llm_conversation_messages_mutation_response


insert_llm_conversation_messages_one

insert a single row into the table: "llm_conversation_messages"

Arguments:

  • object: llm_conversation_messages_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_messages_on_conflict - upsert condition

Returns: llm_conversation_messages


insert_llm_conversation_saved

insert data into the table: "llm_conversation_saved"

Arguments:

  • objects: [llm_conversation_saved_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_saved_on_conflict - upsert condition

Returns: llm_conversation_saved_mutation_response


insert_llm_conversation_saved_one

insert a single row into the table: "llm_conversation_saved"

Arguments:

  • object: llm_conversation_saved_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_saved_on_conflict - upsert condition

Returns: llm_conversation_saved


insert_llm_conversation_tool_calls

insert data into the table: "llm_conversation_tool_calls"

Arguments:

  • objects: [llm_conversation_tool_calls_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversation_tool_calls_on_conflict - upsert condition

Returns: llm_conversation_tool_calls_mutation_response


insert_llm_conversation_tool_calls_one

insert a single row into the table: "llm_conversation_tool_calls"

Arguments:

  • object: llm_conversation_tool_calls_insert_input! - the row to be inserted
  • on_conflict: llm_conversation_tool_calls_on_conflict - upsert condition

Returns: llm_conversation_tool_calls


insert_llm_conversations

insert data into the table: "llm_conversations"

Arguments:

  • objects: [llm_conversations_insert_input!]! - the rows to be inserted
  • on_conflict: llm_conversations_on_conflict - upsert condition

Returns: llm_conversations_mutation_response


insert_llm_conversations_one

insert a single row into the table: "llm_conversations"

Arguments:

  • object: llm_conversations_insert_input! - the row to be inserted
  • on_conflict: llm_conversations_on_conflict - upsert condition

Returns: llm_conversations


insert_llm_functions

insert data into the table: "llm_functions"

Arguments:

  • objects: [llm_functions_insert_input!]! - the rows to be inserted
  • on_conflict: llm_functions_on_conflict - upsert condition

Returns: llm_functions_mutation_response


insert_llm_functions_one

insert a single row into the table: "llm_functions"

Arguments:

  • object: llm_functions_insert_input! - the row to be inserted
  • on_conflict: llm_functions_on_conflict - upsert condition

Returns: llm_functions


insert_llm_model_pricing

insert data into the table: "llm_model_pricing"

Arguments:

  • objects: [llm_model_pricing_insert_input!]! - the rows to be inserted
  • on_conflict: llm_model_pricing_on_conflict - upsert condition

Returns: llm_model_pricing_mutation_response


insert_llm_model_pricing_one

insert a single row into the table: "llm_model_pricing"

Arguments:

  • object: llm_model_pricing_insert_input! - the row to be inserted
  • on_conflict: llm_model_pricing_on_conflict - upsert condition

Returns: llm_model_pricing


insert_llm_rag_audit

insert data into the table: "llm_rag_audit"

Arguments:

  • objects: [llm_rag_audit_insert_input!]! - the rows to be inserted
  • on_conflict: llm_rag_audit_on_conflict - upsert condition

Returns: llm_rag_audit_mutation_response


insert_llm_rag_audit_one

insert a single row into the table: "llm_rag_audit"

Arguments:

  • object: llm_rag_audit_insert_input! - the row to be inserted
  • on_conflict: llm_rag_audit_on_conflict - upsert condition

Returns: llm_rag_audit


insert_llm_rags

insert data into the table: "llm_rags"

Arguments:

  • objects: [llm_rags_insert_input!]! - the rows to be inserted
  • on_conflict: llm_rags_on_conflict - upsert condition

Returns: llm_rags_mutation_response


insert_llm_rags_one

insert a single row into the table: "llm_rags"

Arguments:

  • object: llm_rags_insert_input! - the row to be inserted
  • on_conflict: llm_rags_on_conflict - upsert condition

Returns: llm_rags


kg_get_complete_graph

get knowledge graph for tenant

Arguments:

  • request: kg_get_complete_graph_input!

Returns: kg_get_complete_graph_output


update_knowledge_base

update data of the table: "knowledge_base"

Arguments:

  • _set: knowledge_base_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_base_bool_exp! - filter the rows which have to be updated

Returns: knowledge_base_mutation_response


update_knowledge_base_by_pk

update single row of the table: "knowledge_base"

Arguments:

  • _set: knowledge_base_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: knowledge_base_pk_columns_input!

Returns: knowledge_base


update_knowledge_base_many

update multiples rows of table: "knowledge_base"

Arguments:

  • updates: [knowledge_base_updates!]! - updates to execute, in order

Returns: [knowledge_base_mutation_response]


update_knowledge_graph_edge

update data of the table: "knowledge_graph_edge"

Arguments:

  • _append: knowledge_graph_edge_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_edge_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_edge_delete_elem_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_key: knowledge_graph_edge_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: knowledge_graph_edge_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_edge_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_edge_bool_exp! - filter the rows which have to be updated

Returns: knowledge_graph_edge_mutation_response


update_knowledge_graph_edge_by_pk

update single row of the table: "knowledge_graph_edge"

Arguments:

  • _append: knowledge_graph_edge_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_edge_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_edge_delete_elem_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_key: knowledge_graph_edge_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: knowledge_graph_edge_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_edge_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: knowledge_graph_edge_pk_columns_input!

Returns: knowledge_graph_edge


update_knowledge_graph_edge_many

update multiples rows of table: "knowledge_graph_edge"

Arguments:

  • updates: [knowledge_graph_edge_updates!]! - updates to execute, in order

Returns: [knowledge_graph_edge_mutation_response]


update_knowledge_graph_metadata

update data of the table: "knowledge_graph_metadata"

Arguments:

  • _append: knowledge_graph_metadata_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_metadata_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_metadata_delete_elem_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_key: knowledge_graph_metadata_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: knowledge_graph_metadata_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_metadata_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_metadata_bool_exp! - filter the rows which have to be updated

Returns: knowledge_graph_metadata_mutation_response


update_knowledge_graph_metadata_by_pk

update single row of the table: "knowledge_graph_metadata"

Arguments:

  • _append: knowledge_graph_metadata_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_metadata_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_metadata_delete_elem_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_key: knowledge_graph_metadata_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: knowledge_graph_metadata_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_metadata_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: knowledge_graph_metadata_pk_columns_input!

Returns: knowledge_graph_metadata


update_knowledge_graph_metadata_many

update multiples rows of table: "knowledge_graph_metadata"

Arguments:

  • updates: [knowledge_graph_metadata_updates!]! - updates to execute, in order

Returns: [knowledge_graph_metadata_mutation_response]


update_knowledge_graph_node

update data of the table: "knowledge_graph_node"

Arguments:

  • _append: knowledge_graph_node_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_node_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_node_delete_elem_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_key: knowledge_graph_node_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: knowledge_graph_node_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: knowledge_graph_node_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_node_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_node_bool_exp! - filter the rows which have to be updated

Returns: knowledge_graph_node_mutation_response


update_knowledge_graph_node_by_pk

update single row of the table: "knowledge_graph_node"

Arguments:

  • _append: knowledge_graph_node_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_node_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_node_delete_elem_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_key: knowledge_graph_node_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: knowledge_graph_node_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: knowledge_graph_node_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_node_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: knowledge_graph_node_pk_columns_input!

Returns: knowledge_graph_node


update_knowledge_graph_node_many

update multiples rows of table: "knowledge_graph_node"

Arguments:

  • updates: [knowledge_graph_node_updates!]! - updates to execute, in order

Returns: [knowledge_graph_node_mutation_response]


update_knowledge_graph_relationship_types

update data of the table: "knowledge_graph_relationship_types"

Arguments:

  • _set: knowledge_graph_relationship_types_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_relationship_types_bool_exp! - filter the rows which have to be updated

Returns: knowledge_graph_relationship_types_mutation_response


update_knowledge_graph_relationship_types_by_pk

update single row of the table: "knowledge_graph_relationship_types"

Arguments:

  • _set: knowledge_graph_relationship_types_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: knowledge_graph_relationship_types_pk_columns_input!

Returns: knowledge_graph_relationship_types


update_knowledge_graph_relationship_types_many

update multiples rows of table: "knowledge_graph_relationship_types"

Arguments:

  • updates: [knowledge_graph_relationship_types_updates!]! - updates to execute, in order

Returns: [knowledge_graph_relationship_types_mutation_response]


update_knowledge_graph_tenant_filters

update data of the table: "knowledge_graph_tenant_filters"

Arguments:

  • _append: knowledge_graph_tenant_filters_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_tenant_filters_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_tenant_filters_delete_elem_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_key: knowledge_graph_tenant_filters_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: knowledge_graph_tenant_filters_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: knowledge_graph_tenant_filters_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_tenant_filters_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_tenant_filters_bool_exp! - filter the rows which have to be updated

Returns: knowledge_graph_tenant_filters_mutation_response


update_knowledge_graph_tenant_filters_by_pk

update single row of the table: "knowledge_graph_tenant_filters"

Arguments:

  • _append: knowledge_graph_tenant_filters_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_tenant_filters_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_tenant_filters_delete_elem_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_key: knowledge_graph_tenant_filters_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: knowledge_graph_tenant_filters_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: knowledge_graph_tenant_filters_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_tenant_filters_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: knowledge_graph_tenant_filters_pk_columns_input!

Returns: knowledge_graph_tenant_filters


update_knowledge_graph_tenant_filters_many

update multiples rows of table: "knowledge_graph_tenant_filters"

Arguments:

  • updates: [knowledge_graph_tenant_filters_updates!]! - updates to execute, in order

Returns: [knowledge_graph_tenant_filters_mutation_response]


update_llm_agents

update data of the table: "llm_agents"

Arguments:

  • _set: llm_agents_set_input - sets the columns of the filtered rows to the given values
  • where: llm_agents_bool_exp! - filter the rows which have to be updated

Returns: llm_agents_mutation_response


update_llm_agents_by_pk

update single row of the table: "llm_agents"

Arguments:

  • _set: llm_agents_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_agents_pk_columns_input!

Returns: llm_agents


update_llm_agents_installation

update data of the table: "llm_agents_installation"

Arguments:

  • _set: llm_agents_installation_set_input - sets the columns of the filtered rows to the given values
  • where: llm_agents_installation_bool_exp! - filter the rows which have to be updated

Returns: llm_agents_installation_mutation_response


update_llm_agents_installation_by_pk

update single row of the table: "llm_agents_installation"

Arguments:

  • _set: llm_agents_installation_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_agents_installation_pk_columns_input!

Returns: llm_agents_installation


update_llm_agents_installation_many

update multiples rows of table: "llm_agents_installation"

Arguments:

  • updates: [llm_agents_installation_updates!]! - updates to execute, in order

Returns: [llm_agents_installation_mutation_response]


update_llm_agents_many

update multiples rows of table: "llm_agents"

Arguments:

  • updates: [llm_agents_updates!]! - updates to execute, in order

Returns: [llm_agents_mutation_response]


update_llm_conversation_agent

update data of the table: "llm_conversation_agent"

Arguments:

  • _inc: llm_conversation_agent_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_conversation_agent_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_agent_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_agent_mutation_response


update_llm_conversation_agent_by_pk

update single row of the table: "llm_conversation_agent"

Arguments:

  • _inc: llm_conversation_agent_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_conversation_agent_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_agent_pk_columns_input!

Returns: llm_conversation_agent


update_llm_conversation_agent_critiques

update data of the table: "llm_conversation_agent_critiques"

Arguments:

  • _set: llm_conversation_agent_critiques_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_agent_critiques_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_agent_critiques_mutation_response


update_llm_conversation_agent_critiques_by_pk

update single row of the table: "llm_conversation_agent_critiques"

Arguments:

  • _set: llm_conversation_agent_critiques_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_agent_critiques_pk_columns_input!

Returns: llm_conversation_agent_critiques


update_llm_conversation_agent_critiques_many

update multiples rows of table: "llm_conversation_agent_critiques"

Arguments:

  • updates: [llm_conversation_agent_critiques_updates!]! - updates to execute, in order

Returns: [llm_conversation_agent_critiques_mutation_response]


update_llm_conversation_agent_many

update multiples rows of table: "llm_conversation_agent"

Arguments:

  • updates: [llm_conversation_agent_updates!]! - updates to execute, in order

Returns: [llm_conversation_agent_mutation_response]


update_llm_conversation_feedback

update data of the table: "llm_conversation_feedback"

Arguments:

  • _inc: llm_conversation_feedback_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_conversation_feedback_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_feedback_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_feedback_mutation_response


update_llm_conversation_feedback_by_pk

update single row of the table: "llm_conversation_feedback"

Arguments:

  • _inc: llm_conversation_feedback_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_conversation_feedback_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_feedback_pk_columns_input!

Returns: llm_conversation_feedback


update_llm_conversation_feedback_many

update multiples rows of table: "llm_conversation_feedback"

Arguments:

  • updates: [llm_conversation_feedback_updates!]! - updates to execute, in order

Returns: [llm_conversation_feedback_mutation_response]


update_llm_conversation_history

update data of the table: "llm_conversation_history"

Arguments:

  • _set: llm_conversation_history_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_history_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_history_mutation_response


update_llm_conversation_history_by_pk

update single row of the table: "llm_conversation_history"

Arguments:

  • _set: llm_conversation_history_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_history_pk_columns_input!

Returns: llm_conversation_history


update_llm_conversation_history_many

update multiples rows of table: "llm_conversation_history"

Arguments:

  • updates: [llm_conversation_history_updates!]! - updates to execute, in order

Returns: [llm_conversation_history_mutation_response]


update_llm_conversation_messages

update data of the table: "llm_conversation_messages"

Arguments:

  • _append: llm_conversation_messages_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_conversation_messages_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_conversation_messages_delete_elem_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_key: llm_conversation_messages_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_conversation_messages_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_conversation_messages_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_conversation_messages_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_messages_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_messages_mutation_response


update_llm_conversation_messages_by_pk

update single row of the table: "llm_conversation_messages"

Arguments:

  • _append: llm_conversation_messages_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_conversation_messages_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_conversation_messages_delete_elem_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_key: llm_conversation_messages_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_conversation_messages_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_conversation_messages_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_conversation_messages_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_messages_pk_columns_input!

Returns: llm_conversation_messages


update_llm_conversation_messages_many

update multiples rows of table: "llm_conversation_messages"

Arguments:

  • updates: [llm_conversation_messages_updates!]! - updates to execute, in order

Returns: [llm_conversation_messages_mutation_response]


update_llm_conversation_saved

update data of the table: "llm_conversation_saved"

Arguments:

  • _set: llm_conversation_saved_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_saved_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_saved_mutation_response


update_llm_conversation_saved_by_pk

update single row of the table: "llm_conversation_saved"

Arguments:

  • _set: llm_conversation_saved_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_saved_pk_columns_input!

Returns: llm_conversation_saved


update_llm_conversation_saved_many

update multiples rows of table: "llm_conversation_saved"

Arguments:

  • updates: [llm_conversation_saved_updates!]! - updates to execute, in order

Returns: [llm_conversation_saved_mutation_response]


update_llm_conversation_tool_calls

update data of the table: "llm_conversation_tool_calls"

Arguments:

  • _set: llm_conversation_tool_calls_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_tool_calls_bool_exp! - filter the rows which have to be updated

Returns: llm_conversation_tool_calls_mutation_response


update_llm_conversation_tool_calls_by_pk

update single row of the table: "llm_conversation_tool_calls"

Arguments:

  • _set: llm_conversation_tool_calls_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversation_tool_calls_pk_columns_input!

Returns: llm_conversation_tool_calls


update_llm_conversation_tool_calls_many

update multiples rows of table: "llm_conversation_tool_calls"

Arguments:

  • updates: [llm_conversation_tool_calls_updates!]! - updates to execute, in order

Returns: [llm_conversation_tool_calls_mutation_response]


update_llm_conversations

update data of the table: "llm_conversations"

Arguments:

  • _set: llm_conversations_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversations_bool_exp! - filter the rows which have to be updated

Returns: llm_conversations_mutation_response


update_llm_conversations_by_pk

update single row of the table: "llm_conversations"

Arguments:

  • _set: llm_conversations_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_conversations_pk_columns_input!

Returns: llm_conversations


update_llm_conversations_many

update multiples rows of table: "llm_conversations"

Arguments:

  • updates: [llm_conversations_updates!]! - updates to execute, in order

Returns: [llm_conversations_mutation_response]


update_llm_functions

update data of the table: "llm_functions"

Arguments:

  • _append: llm_functions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_functions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_functions_delete_elem_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_key: llm_functions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_functions_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_functions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_functions_set_input - sets the columns of the filtered rows to the given values
  • where: llm_functions_bool_exp! - filter the rows which have to be updated

Returns: llm_functions_mutation_response


update_llm_functions_by_pk

update single row of the table: "llm_functions"

Arguments:

  • _append: llm_functions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_functions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_functions_delete_elem_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_key: llm_functions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_functions_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_functions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_functions_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_functions_pk_columns_input!

Returns: llm_functions


update_llm_functions_many

update multiples rows of table: "llm_functions"

Arguments:

  • updates: [llm_functions_updates!]! - updates to execute, in order

Returns: [llm_functions_mutation_response]


update_llm_model_pricing

update data of the table: "llm_model_pricing"

Arguments:

  • _inc: llm_model_pricing_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_model_pricing_set_input - sets the columns of the filtered rows to the given values
  • where: llm_model_pricing_bool_exp! - filter the rows which have to be updated

Returns: llm_model_pricing_mutation_response


update_llm_model_pricing_by_pk

update single row of the table: "llm_model_pricing"

Arguments:

  • _inc: llm_model_pricing_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_model_pricing_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_model_pricing_pk_columns_input!

Returns: llm_model_pricing


update_llm_model_pricing_many

update multiples rows of table: "llm_model_pricing"

Arguments:

  • updates: [llm_model_pricing_updates!]! - updates to execute, in order

Returns: [llm_model_pricing_mutation_response]


update_llm_rag_audit

update data of the table: "llm_rag_audit"

Arguments:

  • _append: llm_rag_audit_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_rag_audit_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_rag_audit_delete_elem_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_key: llm_rag_audit_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_rag_audit_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_rag_audit_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_rag_audit_set_input - sets the columns of the filtered rows to the given values
  • where: llm_rag_audit_bool_exp! - filter the rows which have to be updated

Returns: llm_rag_audit_mutation_response


update_llm_rag_audit_by_pk

update single row of the table: "llm_rag_audit"

Arguments:

  • _append: llm_rag_audit_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_rag_audit_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_rag_audit_delete_elem_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_key: llm_rag_audit_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_rag_audit_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_rag_audit_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_rag_audit_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_rag_audit_pk_columns_input!

Returns: llm_rag_audit


update_llm_rag_audit_many

update multiples rows of table: "llm_rag_audit"

Arguments:

  • updates: [llm_rag_audit_updates!]! - updates to execute, in order

Returns: [llm_rag_audit_mutation_response]


update_llm_rags

update data of the table: "llm_rags"

Arguments:

  • _set: llm_rags_set_input - sets the columns of the filtered rows to the given values
  • where: llm_rags_bool_exp! - filter the rows which have to be updated

Returns: llm_rags_mutation_response


update_llm_rags_by_pk

update single row of the table: "llm_rags"

Arguments:

  • _set: llm_rags_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: llm_rags_pk_columns_input!

Returns: llm_rags


update_llm_rags_many

update multiples rows of table: "llm_rags"

Arguments:

  • updates: [llm_rags_updates!]! - updates to execute, in order

Returns: [llm_rags_mutation_response]


Observability

Logs, metrics, traces, application profiles, and service maps.

application_deployment_compare

Arguments:

  • request: ApplicationDeploymentCompareRequest!

Returns: ApplicationDeploymentCompareOutput


application_get_profile

Arguments:

  • request: ApplicationProfileGetRequest!

Returns: ApplicationProfileDataResponse


application_metrics

Arguments:

  • request: ApplicationMetricsRequest!

Returns: ApplicationMetricsOutput


application_profile

Arguments:

  • request: ApplicationProfileRequest!

Returns: ApplicationProfileDataResponse


application_profile_convert

pprof profile

Arguments:

  • request: ApplicationProfileConvertRequest!

Returns: ApplicationProfileConvertDataResponse


delete_application_group

delete data from the table: "application_group"

Arguments:

  • where: application_group_bool_exp! - filter the rows which have to be deleted

Returns: application_group_mutation_response


delete_application_group_by_pk

delete single row from the table: "application_group"

Arguments:

  • id: uuid!

Returns: application_group


delete_application_group_mapping

delete data from the table: "application_group_mapping"

Arguments:

  • where: application_group_mapping_bool_exp! - filter the rows which have to be deleted

Returns: application_group_mapping_mutation_response


delete_application_group_mapping_by_pk

delete single row from the table: "application_group_mapping"

Arguments:

  • id: uuid!

Returns: application_group_mapping


delete_application_profile

delete data from the table: "application_profile"

Arguments:

  • where: application_profile_bool_exp! - filter the rows which have to be deleted

Returns: application_profile_mutation_response


delete_application_profile_by_pk

delete single row from the table: "application_profile"

Arguments:

  • id: uuid!

Returns: application_profile


delete_metrics_summary

delete data from the table: "metrics_summary"

Arguments:

  • where: metrics_summary_bool_exp! - filter the rows which have to be deleted

Returns: metrics_summary_mutation_response


delete_metrics_summary_by_pk

delete single row from the table: "metrics_summary"

Arguments:

  • id: uuid!

Returns: metrics_summary


insert_application_group

insert data into the table: "application_group"

Arguments:

  • objects: [application_group_insert_input!]! - the rows to be inserted
  • on_conflict: application_group_on_conflict - upsert condition

Returns: application_group_mutation_response


insert_application_group_mapping

insert data into the table: "application_group_mapping"

Arguments:

  • objects: [application_group_mapping_insert_input!]! - the rows to be inserted
  • on_conflict: application_group_mapping_on_conflict - upsert condition

Returns: application_group_mapping_mutation_response


insert_application_group_mapping_one

insert a single row into the table: "application_group_mapping"

Arguments:

  • object: application_group_mapping_insert_input! - the row to be inserted
  • on_conflict: application_group_mapping_on_conflict - upsert condition

Returns: application_group_mapping


insert_application_group_one

insert a single row into the table: "application_group"

Arguments:

  • object: application_group_insert_input! - the row to be inserted
  • on_conflict: application_group_on_conflict - upsert condition

Returns: application_group


insert_application_profile

insert data into the table: "application_profile"

Arguments:

  • objects: [application_profile_insert_input!]! - the rows to be inserted
  • on_conflict: application_profile_on_conflict - upsert condition

Returns: application_profile_mutation_response


insert_application_profile_one

insert a single row into the table: "application_profile"

Arguments:

  • object: application_profile_insert_input! - the row to be inserted
  • on_conflict: application_profile_on_conflict - upsert condition

Returns: application_profile


insert_metrics_summary

insert data into the table: "metrics_summary"

Arguments:

  • objects: [metrics_summary_insert_input!]! - the rows to be inserted
  • on_conflict: metrics_summary_on_conflict - upsert condition

Returns: metrics_summary_mutation_response


insert_metrics_summary_one

insert a single row into the table: "metrics_summary"

Arguments:

  • object: metrics_summary_insert_input! - the row to be inserted
  • on_conflict: metrics_summary_on_conflict - upsert condition

Returns: metrics_summary


logs_get_query

logs_get_query

Arguments:

  • request: FetchLogQueryRequest!

Returns: FetchLogQueryOutput


traces_service_map

Arguments:

  • request: TraceServiceMapRequest!

Returns: ServiceMapResponse


update_application_group

update data of the table: "application_group"

Arguments:

  • _set: application_group_set_input - sets the columns of the filtered rows to the given values
  • where: application_group_bool_exp! - filter the rows which have to be updated

Returns: application_group_mutation_response


update_application_group_by_pk

update single row of the table: "application_group"

Arguments:

  • _set: application_group_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: application_group_pk_columns_input!

Returns: application_group


update_application_group_many

update multiples rows of table: "application_group"

Arguments:

  • updates: [application_group_updates!]! - updates to execute, in order

Returns: [application_group_mutation_response]


update_application_group_mapping

update data of the table: "application_group_mapping"

Arguments:

  • _set: application_group_mapping_set_input - sets the columns of the filtered rows to the given values
  • where: application_group_mapping_bool_exp! - filter the rows which have to be updated

Returns: application_group_mapping_mutation_response


update_application_group_mapping_by_pk

update single row of the table: "application_group_mapping"

Arguments:

  • _set: application_group_mapping_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: application_group_mapping_pk_columns_input!

Returns: application_group_mapping


update_application_group_mapping_many

update multiples rows of table: "application_group_mapping"

Arguments:

  • updates: [application_group_mapping_updates!]! - updates to execute, in order

Returns: [application_group_mapping_mutation_response]


update_application_profile

update data of the table: "application_profile"

Arguments:

  • _append: application_profile_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: application_profile_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: application_profile_delete_elem_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_key: application_profile_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: application_profile_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: application_profile_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: application_profile_set_input - sets the columns of the filtered rows to the given values
  • where: application_profile_bool_exp! - filter the rows which have to be updated

Returns: application_profile_mutation_response


update_application_profile_by_pk

update single row of the table: "application_profile"

Arguments:

  • _append: application_profile_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: application_profile_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: application_profile_delete_elem_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_key: application_profile_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: application_profile_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: application_profile_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: application_profile_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: application_profile_pk_columns_input!

Returns: application_profile


update_application_profile_many

update multiples rows of table: "application_profile"

Arguments:

  • updates: [application_profile_updates!]! - updates to execute, in order

Returns: [application_profile_mutation_response]


update_metrics_summary

update data of the table: "metrics_summary"

Arguments:

  • _inc: metrics_summary_inc_input - increments the numeric columns with given value of the filtered values
  • _set: metrics_summary_set_input - sets the columns of the filtered rows to the given values
  • where: metrics_summary_bool_exp! - filter the rows which have to be updated

Returns: metrics_summary_mutation_response


update_metrics_summary_by_pk

update single row of the table: "metrics_summary"

Arguments:

  • _inc: metrics_summary_inc_input - increments the numeric columns with given value of the filtered values
  • _set: metrics_summary_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: metrics_summary_pk_columns_input!

Returns: metrics_summary


update_metrics_summary_many

update multiples rows of table: "metrics_summary"

Arguments:

  • updates: [metrics_summary_updates!]! - updates to execute, in order

Returns: [metrics_summary_mutation_response]


Compliance & Security

Compliance standards, security checks, findings, and alertmanager configurations.

alertmanager_create_rule

insert alert rule

Arguments:

  • request: AlertRule!

Returns: AlertRuleResponse


alertmanager_disable_rule

disable alert rule

Arguments:

  • request: DisableAlertRule!

Returns: AlertRuleResponse


alertmanager_list_actions

Arguments:

  • request: AlertActionListRequest!

Returns: AlertAction


alertmanager_update_rule

update alert rule

Arguments:

  • request: UpdateAlertRule!

Returns: AlertRuleResponse


security_scan_image

Arguments:

  • object: security_scan_image_input!

Returns: security_scan_image_output


Tickets

Ticket creation, management, and integrations with external issue trackers.

delete_ticket_severity_type

delete data from the table: "ticket_severity_type"

Arguments:

  • where: ticket_severity_type_bool_exp! - filter the rows which have to be deleted

Returns: ticket_severity_type_mutation_response


delete_ticket_severity_type_by_pk

delete single row from the table: "ticket_severity_type"

Arguments:

  • value: String!

Returns: ticket_severity_type


delete_ticket_source_type

delete data from the table: "ticket_source_type"

Arguments:

  • where: ticket_source_type_bool_exp! - filter the rows which have to be deleted

Returns: ticket_source_type_mutation_response


delete_ticket_source_type_by_pk

delete single row from the table: "ticket_source_type"

Arguments:

  • value: String!

Returns: ticket_source_type


delete_ticket_tool_types

delete data from the table: "ticket_tool_types"

Arguments:

  • where: ticket_tool_types_bool_exp! - filter the rows which have to be deleted

Returns: ticket_tool_types_mutation_response


delete_ticket_tool_types_by_pk

delete single row from the table: "ticket_tool_types"

Arguments:

  • value: String!

Returns: ticket_tool_types


delete_tickets

delete data from the table: "tickets"

Arguments:

  • where: tickets_bool_exp! - filter the rows which have to be deleted

Returns: tickets_mutation_response


delete_tickets_by_pk

delete single row from the table: "tickets"

Arguments:

  • id: uuid!

Returns: tickets


insert_ticket_severity_type

insert data into the table: "ticket_severity_type"

Arguments:

  • objects: [ticket_severity_type_insert_input!]! - the rows to be inserted
  • on_conflict: ticket_severity_type_on_conflict - upsert condition

Returns: ticket_severity_type_mutation_response


insert_ticket_severity_type_one

insert a single row into the table: "ticket_severity_type"

Arguments:

  • object: ticket_severity_type_insert_input! - the row to be inserted
  • on_conflict: ticket_severity_type_on_conflict - upsert condition

Returns: ticket_severity_type


insert_ticket_source_type

insert data into the table: "ticket_source_type"

Arguments:

  • objects: [ticket_source_type_insert_input!]! - the rows to be inserted
  • on_conflict: ticket_source_type_on_conflict - upsert condition

Returns: ticket_source_type_mutation_response


insert_ticket_source_type_one

insert a single row into the table: "ticket_source_type"

Arguments:

  • object: ticket_source_type_insert_input! - the row to be inserted
  • on_conflict: ticket_source_type_on_conflict - upsert condition

Returns: ticket_source_type


insert_ticket_tool_types

insert data into the table: "ticket_tool_types"

Arguments:

  • objects: [ticket_tool_types_insert_input!]! - the rows to be inserted
  • on_conflict: ticket_tool_types_on_conflict - upsert condition

Returns: ticket_tool_types_mutation_response


insert_ticket_tool_types_one

insert a single row into the table: "ticket_tool_types"

Arguments:

  • object: ticket_tool_types_insert_input! - the row to be inserted
  • on_conflict: ticket_tool_types_on_conflict - upsert condition

Returns: ticket_tool_types


insert_tickets

insert data into the table: "tickets"

Arguments:

  • objects: [tickets_insert_input!]! - the rows to be inserted
  • on_conflict: tickets_on_conflict - upsert condition

Returns: tickets_mutation_response


insert_tickets_one

insert a single row into the table: "tickets"

Arguments:

  • object: tickets_insert_input! - the row to be inserted
  • on_conflict: tickets_on_conflict - upsert condition

Returns: tickets


ticket_add_comment

Arguments:

  • object: TicketAddCommentObjectInput!

Returns: TicketComments!


ticket_integration_create_config

Arguments:

  • object: ticket_integration_create_config_input!

Returns: ticket_integration_create_config_output!


tickets_insert_one

Arguments:

  • object: tickets_insert_one_input!

Returns: tickets_insert_one_output!


update_ticket_severity_type

update data of the table: "ticket_severity_type"

Arguments:

  • _set: ticket_severity_type_set_input - sets the columns of the filtered rows to the given values
  • where: ticket_severity_type_bool_exp! - filter the rows which have to be updated

Returns: ticket_severity_type_mutation_response


update_ticket_severity_type_by_pk

update single row of the table: "ticket_severity_type"

Arguments:

  • _set: ticket_severity_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: ticket_severity_type_pk_columns_input!

Returns: ticket_severity_type


update_ticket_severity_type_many

update multiples rows of table: "ticket_severity_type"

Arguments:

  • updates: [ticket_severity_type_updates!]! - updates to execute, in order

Returns: [ticket_severity_type_mutation_response]


update_ticket_source_type

update data of the table: "ticket_source_type"

Arguments:

  • _set: ticket_source_type_set_input - sets the columns of the filtered rows to the given values
  • where: ticket_source_type_bool_exp! - filter the rows which have to be updated

Returns: ticket_source_type_mutation_response


update_ticket_source_type_by_pk

update single row of the table: "ticket_source_type"

Arguments:

  • _set: ticket_source_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: ticket_source_type_pk_columns_input!

Returns: ticket_source_type


update_ticket_source_type_many

update multiples rows of table: "ticket_source_type"

Arguments:

  • updates: [ticket_source_type_updates!]! - updates to execute, in order

Returns: [ticket_source_type_mutation_response]


update_ticket_tool_types

update data of the table: "ticket_tool_types"

Arguments:

  • _set: ticket_tool_types_set_input - sets the columns of the filtered rows to the given values
  • where: ticket_tool_types_bool_exp! - filter the rows which have to be updated

Returns: ticket_tool_types_mutation_response


update_ticket_tool_types_by_pk

update single row of the table: "ticket_tool_types"

Arguments:

  • _set: ticket_tool_types_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: ticket_tool_types_pk_columns_input!

Returns: ticket_tool_types


update_ticket_tool_types_many

update multiples rows of table: "ticket_tool_types"

Arguments:

  • updates: [ticket_tool_types_updates!]! - updates to execute, in order

Returns: [ticket_tool_types_mutation_response]


update_tickets

update data of the table: "tickets"

Arguments:

  • _set: tickets_set_input - sets the columns of the filtered rows to the given values
  • where: tickets_bool_exp! - filter the rows which have to be updated

Returns: tickets_mutation_response


update_tickets_by_pk

update single row of the table: "tickets"

Arguments:

  • _set: tickets_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: tickets_pk_columns_input!

Returns: tickets


update_tickets_many

update multiples rows of table: "tickets"

Arguments:

  • updates: [tickets_updates!]! - updates to execute, in order

Returns: [tickets_mutation_response]


Notifications

Notification channels, delivery rules, and user notification preferences.

delete_messaging_platforms

delete data from the table: "messaging_platforms"

Arguments:

  • where: messaging_platforms_bool_exp! - filter the rows which have to be deleted

Returns: messaging_platforms_mutation_response


delete_messaging_platforms_by_pk

delete single row from the table: "messaging_platforms"

Arguments:

  • id: uuid!

Returns: messaging_platforms


delete_messaging_platforms_type

delete data from the table: "messaging_platforms_type"

Arguments:

  • where: messaging_platforms_type_bool_exp! - filter the rows which have to be deleted

Returns: messaging_platforms_type_mutation_response


delete_messaging_platforms_type_by_pk

delete single row from the table: "messaging_platforms_type"

Arguments:

  • value: String!

Returns: messaging_platforms_type


delete_notification_channel_account_mappings

delete data from the table: "notification_channel_account_mappings"

Arguments:

  • where: notification_channel_account_mappings_bool_exp! - filter the rows which have to be deleted

Returns: notification_channel_account_mappings_mutation_response


delete_notification_channel_account_mappings_by_pk

delete single row from the table: "notification_channel_account_mappings"

Arguments:

  • id: uuid!

Returns: notification_channel_account_mappings


delete_notification_platform_types

delete data from the table: "notification_platform_types"

Arguments:

  • where: notification_platform_types_bool_exp! - filter the rows which have to be deleted

Returns: notification_platform_types_mutation_response


delete_notification_platform_types_by_pk

delete single row from the table: "notification_platform_types"

Arguments:

  • value: String!

Returns: notification_platform_types


delete_notification_rule_mappings

delete data from the table: "notification_rule_mappings"

Arguments:

  • where: notification_rule_mappings_bool_exp! - filter the rows which have to be deleted

Returns: notification_rule_mappings_mutation_response


delete_notification_rule_mappings_by_pk

delete single row from the table: "notification_rule_mappings"

Arguments:

  • id: uuid!

Returns: notification_rule_mappings


delete_notification_rules

delete data from the table: "notification_rules"

Arguments:

  • where: notification_rules_bool_exp! - filter the rows which have to be deleted

Returns: notification_rules_mutation_response


delete_notification_rules_by_pk

delete single row from the table: "notification_rules"

Arguments:

  • id: uuid!

Returns: notification_rules


delete_notification_severity_type

delete data from the table: "notification_severity_type"

Arguments:

  • where: notification_severity_type_bool_exp! - filter the rows which have to be deleted

Returns: notification_severity_type_mutation_response


delete_notification_severity_type_by_pk

delete single row from the table: "notification_severity_type"

Arguments:

  • value: String!

Returns: notification_severity_type


delete_notification_source_type

delete data from the table: "notification_source_type"

Arguments:

  • where: notification_source_type_bool_exp! - filter the rows which have to be deleted

Returns: notification_source_type_mutation_response


delete_notification_source_type_by_pk

delete single row from the table: "notification_source_type"

Arguments:

  • value: String!

Returns: notification_source_type


delete_notification_user

delete data from the table: "notification_user"

Arguments:

  • where: notification_user_bool_exp! - filter the rows which have to be deleted

Returns: notification_user_mutation_response


delete_notification_user_by_pk

delete single row from the table: "notification_user"

Arguments:

  • id: uuid!

Returns: notification_user


delete_notification_user_status_type

delete data from the table: "notification_user_status_type"

Arguments:

  • where: notification_user_status_type_bool_exp! - filter the rows which have to be deleted

Returns: notification_user_status_type_mutation_response


delete_notification_user_status_type_by_pk

delete single row from the table: "notification_user_status_type"

Arguments:

  • value: String!

Returns: notification_user_status_type


delete_notifications

delete data from the table: "notifications"

Arguments:

  • where: notifications_bool_exp! - filter the rows which have to be deleted

Returns: notifications_mutation_response


delete_notifications_by_pk

delete single row from the table: "notifications"

Arguments:

  • id: uuid!

Returns: notifications


delete_notifications_delivery_mode_type

delete data from the table: "notifications_delivery_mode_type"

Arguments:

  • where: notifications_delivery_mode_type_bool_exp! - filter the rows which have to be deleted

Returns: notifications_delivery_mode_type_mutation_response


delete_notifications_delivery_mode_type_by_pk

delete single row from the table: "notifications_delivery_mode_type"

Arguments:

  • value: String!

Returns: notifications_delivery_mode_type


delete_notifications_frequency_type

delete data from the table: "notifications_frequency_type"

Arguments:

  • where: notifications_frequency_type_bool_exp! - filter the rows which have to be deleted

Returns: notifications_frequency_type_mutation_response


delete_notifications_frequency_type_by_pk

delete single row from the table: "notifications_frequency_type"

Arguments:

  • value: String!

Returns: notifications_frequency_type


insert_messaging_platforms

insert data into the table: "messaging_platforms"

Arguments:

  • objects: [messaging_platforms_insert_input!]! - the rows to be inserted
  • on_conflict: messaging_platforms_on_conflict - upsert condition

Returns: messaging_platforms_mutation_response


insert_messaging_platforms_one

insert a single row into the table: "messaging_platforms"

Arguments:

  • object: messaging_platforms_insert_input! - the row to be inserted
  • on_conflict: messaging_platforms_on_conflict - upsert condition

Returns: messaging_platforms


insert_messaging_platforms_type

insert data into the table: "messaging_platforms_type"

Arguments:

  • objects: [messaging_platforms_type_insert_input!]! - the rows to be inserted
  • on_conflict: messaging_platforms_type_on_conflict - upsert condition

Returns: messaging_platforms_type_mutation_response


insert_messaging_platforms_type_one

insert a single row into the table: "messaging_platforms_type"

Arguments:

  • object: messaging_platforms_type_insert_input! - the row to be inserted
  • on_conflict: messaging_platforms_type_on_conflict - upsert condition

Returns: messaging_platforms_type


insert_notification_channel_account_mappings

insert data into the table: "notification_channel_account_mappings"

Arguments:

  • objects: [notification_channel_account_mappings_insert_input!]! - the rows to be inserted
  • on_conflict: notification_channel_account_mappings_on_conflict - upsert condition

Returns: notification_channel_account_mappings_mutation_response


insert_notification_channel_account_mappings_one

insert a single row into the table: "notification_channel_account_mappings"

Arguments:

  • object: notification_channel_account_mappings_insert_input! - the row to be inserted
  • on_conflict: notification_channel_account_mappings_on_conflict - upsert condition

Returns: notification_channel_account_mappings


insert_notification_platform_types

insert data into the table: "notification_platform_types"

Arguments:

  • objects: [notification_platform_types_insert_input!]! - the rows to be inserted
  • on_conflict: notification_platform_types_on_conflict - upsert condition

Returns: notification_platform_types_mutation_response


insert_notification_platform_types_one

insert a single row into the table: "notification_platform_types"

Arguments:

  • object: notification_platform_types_insert_input! - the row to be inserted
  • on_conflict: notification_platform_types_on_conflict - upsert condition

Returns: notification_platform_types


insert_notification_rule_mappings

insert data into the table: "notification_rule_mappings"

Arguments:

  • objects: [notification_rule_mappings_insert_input!]! - the rows to be inserted
  • on_conflict: notification_rule_mappings_on_conflict - upsert condition

Returns: notification_rule_mappings_mutation_response


insert_notification_rule_mappings_one

insert a single row into the table: "notification_rule_mappings"

Arguments:

  • object: notification_rule_mappings_insert_input! - the row to be inserted
  • on_conflict: notification_rule_mappings_on_conflict - upsert condition

Returns: notification_rule_mappings


insert_notification_rules

insert data into the table: "notification_rules"

Arguments:

  • objects: [notification_rules_insert_input!]! - the rows to be inserted
  • on_conflict: notification_rules_on_conflict - upsert condition

Returns: notification_rules_mutation_response


insert_notification_rules_one

insert a single row into the table: "notification_rules"

Arguments:

  • object: notification_rules_insert_input! - the row to be inserted
  • on_conflict: notification_rules_on_conflict - upsert condition

Returns: notification_rules


insert_notification_severity_type

insert data into the table: "notification_severity_type"

Arguments:

  • objects: [notification_severity_type_insert_input!]! - the rows to be inserted
  • on_conflict: notification_severity_type_on_conflict - upsert condition

Returns: notification_severity_type_mutation_response


insert_notification_severity_type_one

insert a single row into the table: "notification_severity_type"

Arguments:

  • object: notification_severity_type_insert_input! - the row to be inserted
  • on_conflict: notification_severity_type_on_conflict - upsert condition

Returns: notification_severity_type


insert_notification_source_type

insert data into the table: "notification_source_type"

Arguments:

  • objects: [notification_source_type_insert_input!]! - the rows to be inserted
  • on_conflict: notification_source_type_on_conflict - upsert condition

Returns: notification_source_type_mutation_response


insert_notification_source_type_one

insert a single row into the table: "notification_source_type"

Arguments:

  • object: notification_source_type_insert_input! - the row to be inserted
  • on_conflict: notification_source_type_on_conflict - upsert condition

Returns: notification_source_type


insert_notification_user

insert data into the table: "notification_user"

Arguments:

  • objects: [notification_user_insert_input!]! - the rows to be inserted
  • on_conflict: notification_user_on_conflict - upsert condition

Returns: notification_user_mutation_response


insert_notification_user_one

insert a single row into the table: "notification_user"

Arguments:

  • object: notification_user_insert_input! - the row to be inserted
  • on_conflict: notification_user_on_conflict - upsert condition

Returns: notification_user


insert_notification_user_status_type

insert data into the table: "notification_user_status_type"

Arguments:

  • objects: [notification_user_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: notification_user_status_type_on_conflict - upsert condition

Returns: notification_user_status_type_mutation_response


insert_notification_user_status_type_one

insert a single row into the table: "notification_user_status_type"

Arguments:

  • object: notification_user_status_type_insert_input! - the row to be inserted
  • on_conflict: notification_user_status_type_on_conflict - upsert condition

Returns: notification_user_status_type


insert_notifications

insert data into the table: "notifications"

Arguments:

  • objects: [notifications_insert_input!]! - the rows to be inserted
  • on_conflict: notifications_on_conflict - upsert condition

Returns: notifications_mutation_response


insert_notifications_delivery_mode_type

insert data into the table: "notifications_delivery_mode_type"

Arguments:

  • objects: [notifications_delivery_mode_type_insert_input!]! - the rows to be inserted
  • on_conflict: notifications_delivery_mode_type_on_conflict - upsert condition

Returns: notifications_delivery_mode_type_mutation_response


insert_notifications_delivery_mode_type_one

insert a single row into the table: "notifications_delivery_mode_type"

Arguments:

  • object: notifications_delivery_mode_type_insert_input! - the row to be inserted
  • on_conflict: notifications_delivery_mode_type_on_conflict - upsert condition

Returns: notifications_delivery_mode_type


insert_notifications_frequency_type

insert data into the table: "notifications_frequency_type"

Arguments:

  • objects: [notifications_frequency_type_insert_input!]! - the rows to be inserted
  • on_conflict: notifications_frequency_type_on_conflict - upsert condition

Returns: notifications_frequency_type_mutation_response


insert_notifications_frequency_type_one

insert a single row into the table: "notifications_frequency_type"

Arguments:

  • object: notifications_frequency_type_insert_input! - the row to be inserted
  • on_conflict: notifications_frequency_type_on_conflict - upsert condition

Returns: notifications_frequency_type


insert_notifications_one

insert a single row into the table: "notifications"

Arguments:

  • object: notifications_insert_input! - the row to be inserted
  • on_conflict: notifications_on_conflict - upsert condition

Returns: notifications


notification_rule_upsert_one

Arguments:

  • rule: notification_rule_upsert_input!

Returns: notification_rule_mapping_output


update_messaging_platforms

update data of the table: "messaging_platforms"

Arguments:

  • _set: messaging_platforms_set_input - sets the columns of the filtered rows to the given values
  • where: messaging_platforms_bool_exp! - filter the rows which have to be updated

Returns: messaging_platforms_mutation_response


update_messaging_platforms_by_pk

update single row of the table: "messaging_platforms"

Arguments:

  • _set: messaging_platforms_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: messaging_platforms_pk_columns_input!

Returns: messaging_platforms


update_messaging_platforms_many

update multiples rows of table: "messaging_platforms"

Arguments:

  • updates: [messaging_platforms_updates!]! - updates to execute, in order

Returns: [messaging_platforms_mutation_response]


update_messaging_platforms_type

update data of the table: "messaging_platforms_type"

Arguments:

  • _set: messaging_platforms_type_set_input - sets the columns of the filtered rows to the given values
  • where: messaging_platforms_type_bool_exp! - filter the rows which have to be updated

Returns: messaging_platforms_type_mutation_response


update_messaging_platforms_type_by_pk

update single row of the table: "messaging_platforms_type"

Arguments:

  • _set: messaging_platforms_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: messaging_platforms_type_pk_columns_input!

Returns: messaging_platforms_type


update_messaging_platforms_type_many

update multiples rows of table: "messaging_platforms_type"

Arguments:

  • updates: [messaging_platforms_type_updates!]! - updates to execute, in order

Returns: [messaging_platforms_type_mutation_response]


update_notification_channel_account_mappings

update data of the table: "notification_channel_account_mappings"

Arguments:

  • _set: notification_channel_account_mappings_set_input - sets the columns of the filtered rows to the given values
  • where: notification_channel_account_mappings_bool_exp! - filter the rows which have to be updated

Returns: notification_channel_account_mappings_mutation_response


update_notification_channel_account_mappings_by_pk

update single row of the table: "notification_channel_account_mappings"

Arguments:

  • _set: notification_channel_account_mappings_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_channel_account_mappings_pk_columns_input!

Returns: notification_channel_account_mappings


update_notification_channel_account_mappings_many

update multiples rows of table: "notification_channel_account_mappings"

Arguments:

  • updates: [notification_channel_account_mappings_updates!]! - updates to execute, in order

Returns: [notification_channel_account_mappings_mutation_response]


update_notification_platform_types

update data of the table: "notification_platform_types"

Arguments:

  • _set: notification_platform_types_set_input - sets the columns of the filtered rows to the given values
  • where: notification_platform_types_bool_exp! - filter the rows which have to be updated

Returns: notification_platform_types_mutation_response


update_notification_platform_types_by_pk

update single row of the table: "notification_platform_types"

Arguments:

  • _set: notification_platform_types_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_platform_types_pk_columns_input!

Returns: notification_platform_types


update_notification_platform_types_many

update multiples rows of table: "notification_platform_types"

Arguments:

  • updates: [notification_platform_types_updates!]! - updates to execute, in order

Returns: [notification_platform_types_mutation_response]


update_notification_rule_mappings

update data of the table: "notification_rule_mappings"

Arguments:

  • _set: notification_rule_mappings_set_input - sets the columns of the filtered rows to the given values
  • where: notification_rule_mappings_bool_exp! - filter the rows which have to be updated

Returns: notification_rule_mappings_mutation_response


update_notification_rule_mappings_by_pk

update single row of the table: "notification_rule_mappings"

Arguments:

  • _set: notification_rule_mappings_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_rule_mappings_pk_columns_input!

Returns: notification_rule_mappings


update_notification_rule_mappings_many

update multiples rows of table: "notification_rule_mappings"

Arguments:

  • updates: [notification_rule_mappings_updates!]! - updates to execute, in order

Returns: [notification_rule_mappings_mutation_response]


update_notification_rules

update data of the table: "notification_rules"

Arguments:

  • _set: notification_rules_set_input - sets the columns of the filtered rows to the given values
  • where: notification_rules_bool_exp! - filter the rows which have to be updated

Returns: notification_rules_mutation_response


update_notification_rules_by_pk

update single row of the table: "notification_rules"

Arguments:

  • _set: notification_rules_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_rules_pk_columns_input!

Returns: notification_rules


update_notification_rules_many

update multiples rows of table: "notification_rules"

Arguments:

  • updates: [notification_rules_updates!]! - updates to execute, in order

Returns: [notification_rules_mutation_response]


update_notification_severity_type

update data of the table: "notification_severity_type"

Arguments:

  • _set: notification_severity_type_set_input - sets the columns of the filtered rows to the given values
  • where: notification_severity_type_bool_exp! - filter the rows which have to be updated

Returns: notification_severity_type_mutation_response


update_notification_severity_type_by_pk

update single row of the table: "notification_severity_type"

Arguments:

  • _set: notification_severity_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_severity_type_pk_columns_input!

Returns: notification_severity_type


update_notification_severity_type_many

update multiples rows of table: "notification_severity_type"

Arguments:

  • updates: [notification_severity_type_updates!]! - updates to execute, in order

Returns: [notification_severity_type_mutation_response]


update_notification_source_type

update data of the table: "notification_source_type"

Arguments:

  • _set: notification_source_type_set_input - sets the columns of the filtered rows to the given values
  • where: notification_source_type_bool_exp! - filter the rows which have to be updated

Returns: notification_source_type_mutation_response


update_notification_source_type_by_pk

update single row of the table: "notification_source_type"

Arguments:

  • _set: notification_source_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_source_type_pk_columns_input!

Returns: notification_source_type


update_notification_source_type_many

update multiples rows of table: "notification_source_type"

Arguments:

  • updates: [notification_source_type_updates!]! - updates to execute, in order

Returns: [notification_source_type_mutation_response]


update_notification_user

update data of the table: "notification_user"

Arguments:

  • _set: notification_user_set_input - sets the columns of the filtered rows to the given values
  • where: notification_user_bool_exp! - filter the rows which have to be updated

Returns: notification_user_mutation_response


update_notification_user_by_pk

update single row of the table: "notification_user"

Arguments:

  • _set: notification_user_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_user_pk_columns_input!

Returns: notification_user


update_notification_user_many

update multiples rows of table: "notification_user"

Arguments:

  • updates: [notification_user_updates!]! - updates to execute, in order

Returns: [notification_user_mutation_response]


update_notification_user_status_type

update data of the table: "notification_user_status_type"

Arguments:

  • _set: notification_user_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: notification_user_status_type_bool_exp! - filter the rows which have to be updated

Returns: notification_user_status_type_mutation_response


update_notification_user_status_type_by_pk

update single row of the table: "notification_user_status_type"

Arguments:

  • _set: notification_user_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notification_user_status_type_pk_columns_input!

Returns: notification_user_status_type


update_notification_user_status_type_many

update multiples rows of table: "notification_user_status_type"

Arguments:

  • updates: [notification_user_status_type_updates!]! - updates to execute, in order

Returns: [notification_user_status_type_mutation_response]


update_notifications

update data of the table: "notifications"

Arguments:

  • _set: notifications_set_input - sets the columns of the filtered rows to the given values
  • where: notifications_bool_exp! - filter the rows which have to be updated

Returns: notifications_mutation_response


update_notifications_by_pk

update single row of the table: "notifications"

Arguments:

  • _set: notifications_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notifications_pk_columns_input!

Returns: notifications


update_notifications_delivery_mode_type

update data of the table: "notifications_delivery_mode_type"

Arguments:

  • _set: notifications_delivery_mode_type_set_input - sets the columns of the filtered rows to the given values
  • where: notifications_delivery_mode_type_bool_exp! - filter the rows which have to be updated

Returns: notifications_delivery_mode_type_mutation_response


update_notifications_delivery_mode_type_by_pk

update single row of the table: "notifications_delivery_mode_type"

Arguments:

  • _set: notifications_delivery_mode_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notifications_delivery_mode_type_pk_columns_input!

Returns: notifications_delivery_mode_type


update_notifications_delivery_mode_type_many

update multiples rows of table: "notifications_delivery_mode_type"

Arguments:

  • updates: [notifications_delivery_mode_type_updates!]! - updates to execute, in order

Returns: [notifications_delivery_mode_type_mutation_response]


update_notifications_frequency_type

update data of the table: "notifications_frequency_type"

Arguments:

  • _set: notifications_frequency_type_set_input - sets the columns of the filtered rows to the given values
  • where: notifications_frequency_type_bool_exp! - filter the rows which have to be updated

Returns: notifications_frequency_type_mutation_response


update_notifications_frequency_type_by_pk

update single row of the table: "notifications_frequency_type"

Arguments:

  • _set: notifications_frequency_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: notifications_frequency_type_pk_columns_input!

Returns: notifications_frequency_type


update_notifications_frequency_type_many

update multiples rows of table: "notifications_frequency_type"

Arguments:

  • updates: [notifications_frequency_type_updates!]! - updates to execute, in order

Returns: [notifications_frequency_type_mutation_response]


update_notifications_many

update multiples rows of table: "notifications"

Arguments:

  • updates: [notifications_updates!]! - updates to execute, in order

Returns: [notifications_mutation_response]


Organization & Users

Users, tenants, business units, roles, groups, projects, and authentication.

auth_account_group_roles_upsert_one

Arguments:

  • role: auth_account_group_roles_upsert_one_input!

Returns: auth_account_group_roles_upsert_one_output


auth_account_user_roles_upsert_one

Arguments:

  • role: auth_account_user_roles_upsert_one_input!

Returns: auth_account_user_roles_upsert_one_output


auth_k8saccount_namespace_group_roles_upsert_one

Arguments:

  • role: auth_k8saccount_namespace_group_roles_upsert_one_input!

Returns: auth_k8saccount_namespace_group_roles_upsert_one_output


auth_k8saccount_namespace_user_roles_upsert_one

Arguments:

  • role: auth_k8saccount_user_roles_upsert_one_input!

Returns: auth_k8saccount_namespace_user_roles_upsert_one_output


auth_tenant_group_roles_upsert_one

Arguments:

  • role: auth_tenant_group_roles_upsert_one_input!

Returns: auth_tenant_group_roles_upsert_one_output


auth_tenant_user_roles_upsert_one

Arguments:

  • role: auth_tenant_user_roles_upsert_one_input!

Returns: auth_tenant_user_roles_upsert_one_output


delete_auth_provider_type

delete data from the table: "auth_provider_type"

Arguments:

  • where: auth_provider_type_bool_exp! - filter the rows which have to be deleted

Returns: auth_provider_type_mutation_response


delete_auth_provider_type_by_pk

delete single row from the table: "auth_provider_type"

Arguments:

  • value: String!

Returns: auth_provider_type


delete_auth_type

delete data from the table: "auth_type"

Arguments:

  • where: auth_type_bool_exp! - filter the rows which have to be deleted

Returns: auth_type_mutation_response


delete_auth_type_by_pk

delete single row from the table: "auth_type"

Arguments:

  • value: String!

Returns: auth_type


delete_business_unit

delete data from the table: "business_unit"

Arguments:

  • where: business_unit_bool_exp! - filter the rows which have to be deleted

Returns: business_unit_mutation_response


delete_business_unit_by_pk

delete single row from the table: "business_unit"

Arguments:

  • id: uuid!

Returns: business_unit


delete_businessunit_users

delete data from the table: "businessunit_users"

Arguments:

  • where: businessunit_users_bool_exp! - filter the rows which have to be deleted

Returns: businessunit_users_mutation_response


delete_businessunit_users_by_pk

delete single row from the table: "businessunit_users"

Arguments:

  • id: uuid!

Returns: businessunit_users


delete_project_accounts

delete data from the table: "project_accounts"

Arguments:

  • where: project_accounts_bool_exp! - filter the rows which have to be deleted

Returns: project_accounts_mutation_response


delete_project_accounts_by_pk

delete single row from the table: "project_accounts"

Arguments:

  • id: uuid!

Returns: project_accounts


delete_project_category_type

delete data from the table: "project_category_type"

Arguments:

  • where: project_category_type_bool_exp! - filter the rows which have to be deleted

Returns: project_category_type_mutation_response


delete_project_category_type_by_pk

delete single row from the table: "project_category_type"

Arguments:

  • value: String!

Returns: project_category_type


delete_project_cloud_resources

delete data from the table: "project_cloud_resources"

Arguments:

  • where: project_cloud_resources_bool_exp! - filter the rows which have to be deleted

Returns: project_cloud_resources_mutation_response


delete_project_cloud_resources_by_pk

delete single row from the table: "project_cloud_resources"

Arguments:

  • id: uuid!

Returns: project_cloud_resources


delete_project_fundings

delete data from the table: "project_fundings"

Arguments:

  • where: project_fundings_bool_exp! - filter the rows which have to be deleted

Returns: project_fundings_mutation_response


delete_project_fundings_by_pk

delete single row from the table: "project_fundings"

Arguments:

  • id: uuid!

Returns: project_fundings


delete_project_users

delete data from the table: "project_users"

Arguments:

  • where: project_users_bool_exp! - filter the rows which have to be deleted

Returns: project_users_mutation_response


delete_project_users_by_pk

delete single row from the table: "project_users"

Arguments:

  • id: uuid!

Returns: project_users


delete_roles

delete data from the table: "roles"

Arguments:

  • where: roles_bool_exp! - filter the rows which have to be deleted

Returns: roles_mutation_response


delete_roles_by_pk

delete single row from the table: "roles"

Arguments:

  • value: citext!

Returns: roles


delete_tenant

delete data from the table: "tenant"

Arguments:

  • where: tenant_bool_exp! - filter the rows which have to be deleted

Returns: tenant_mutation_response


delete_tenant_attrs

delete data from the table: "tenant_attrs"

Arguments:

  • where: tenant_attrs_bool_exp! - filter the rows which have to be deleted

Returns: tenant_attrs_mutation_response


delete_tenant_attrs_by_pk

delete single row from the table: "tenant_attrs"

Arguments:

  • id: uuid!

Returns: tenant_attrs


delete_tenant_by_pk

delete single row from the table: "tenant"

Arguments:

  • id: uuid!

Returns: tenant


delete_tenant_onboarding

delete data from the table: "tenant_onboarding"

Arguments:

  • where: tenant_onboarding_bool_exp! - filter the rows which have to be deleted

Returns: tenant_onboarding_mutation_response


delete_tenant_onboarding_by_pk

delete single row from the table: "tenant_onboarding"

Arguments:

  • id: uuid!

Returns: tenant_onboarding


delete_tenant_type

delete data from the table: "tenant_type"

Arguments:

  • where: tenant_type_bool_exp! - filter the rows which have to be deleted

Returns: tenant_type_mutation_response


delete_tenant_type_by_pk

delete single row from the table: "tenant_type"

Arguments:

  • value: String!

Returns: tenant_type


delete_tenant_users

delete data from the table: "tenant_users"

Arguments:

  • where: tenant_users_bool_exp! - filter the rows which have to be deleted

Returns: tenant_users_mutation_response


delete_tenant_users_by_pk

delete single row from the table: "tenant_users"

Arguments:

  • id: uuid!

Returns: tenant_users


delete_user_attrs

delete data from the table: "user_attrs"

Arguments:

  • where: user_attrs_bool_exp! - filter the rows which have to be deleted

Returns: user_attrs_mutation_response


delete_user_attrs_by_pk

delete single row from the table: "user_attrs"

Arguments:

  • id: uuid!

Returns: user_attrs


delete_user_auths

delete data from the table: "user_auths"

Arguments:

  • where: user_auths_bool_exp! - filter the rows which have to be deleted

Returns: user_auths_mutation_response


delete_user_auths_by_pk

delete single row from the table: "user_auths"

Arguments:

  • id: uuid!

Returns: user_auths


delete_user_groups

delete data from the table: "user_groups"

Arguments:

  • where: user_groups_bool_exp! - filter the rows which have to be deleted

Returns: user_groups_mutation_response


delete_user_groups_by_pk

delete single row from the table: "user_groups"

Arguments:

  • id: uuid!

Returns: user_groups


delete_user_history

delete data from the table: "user_history"

Arguments:

  • where: user_history_bool_exp! - filter the rows which have to be deleted

Returns: user_history_mutation_response


delete_user_history_by_pk

delete single row from the table: "user_history"

Arguments:

  • id: uuid!

Returns: user_history


delete_user_roles

delete data from the table: "user_roles"

Arguments:

  • where: user_roles_bool_exp! - filter the rows which have to be deleted

Returns: user_roles_mutation_response


delete_user_roles_by_pk

delete single row from the table: "user_roles"

Arguments:

  • id: uuid!

Returns: user_roles


delete_user_status_type

delete data from the table: "user_status_type"

Arguments:

  • where: user_status_type_bool_exp! - filter the rows which have to be deleted

Returns: user_status_type_mutation_response


delete_user_status_type_by_pk

delete single row from the table: "user_status_type"

Arguments:

  • value: String!

Returns: user_status_type


delete_usergroup_users

delete data from the table: "usergroup_users"

Arguments:

  • where: usergroup_users_bool_exp! - filter the rows which have to be deleted

Returns: usergroup_users_mutation_response


delete_usergroup_users_by_pk

delete single row from the table: "usergroup_users"

Arguments:

  • id: uuid!

Returns: usergroup_users


delete_users

delete data from the table: "users"

Arguments:

  • where: users_bool_exp! - filter the rows which have to be deleted

Returns: users_mutation_response


delete_users_by_pk

delete single row from the table: "users"

Arguments:

  • id: uuid!

Returns: users


insert_auth_provider_type

insert data into the table: "auth_provider_type"

Arguments:

  • objects: [auth_provider_type_insert_input!]! - the rows to be inserted
  • on_conflict: auth_provider_type_on_conflict - upsert condition

Returns: auth_provider_type_mutation_response


insert_auth_provider_type_one

insert a single row into the table: "auth_provider_type"

Arguments:

  • object: auth_provider_type_insert_input! - the row to be inserted
  • on_conflict: auth_provider_type_on_conflict - upsert condition

Returns: auth_provider_type


insert_auth_type

insert data into the table: "auth_type"

Arguments:

  • objects: [auth_type_insert_input!]! - the rows to be inserted
  • on_conflict: auth_type_on_conflict - upsert condition

Returns: auth_type_mutation_response


insert_auth_type_one

insert a single row into the table: "auth_type"

Arguments:

  • object: auth_type_insert_input! - the row to be inserted
  • on_conflict: auth_type_on_conflict - upsert condition

Returns: auth_type


insert_business_unit

insert data into the table: "business_unit"

Arguments:

  • objects: [business_unit_insert_input!]! - the rows to be inserted
  • on_conflict: business_unit_on_conflict - upsert condition

Returns: business_unit_mutation_response


insert_business_unit_one

insert a single row into the table: "business_unit"

Arguments:

  • object: business_unit_insert_input! - the row to be inserted
  • on_conflict: business_unit_on_conflict - upsert condition

Returns: business_unit


insert_businessunit_users

insert data into the table: "businessunit_users"

Arguments:

  • objects: [businessunit_users_insert_input!]! - the rows to be inserted
  • on_conflict: businessunit_users_on_conflict - upsert condition

Returns: businessunit_users_mutation_response


insert_businessunit_users_one

insert a single row into the table: "businessunit_users"

Arguments:

  • object: businessunit_users_insert_input! - the row to be inserted
  • on_conflict: businessunit_users_on_conflict - upsert condition

Returns: businessunit_users


insert_project_accounts

insert data into the table: "project_accounts"

Arguments:

  • objects: [project_accounts_insert_input!]! - the rows to be inserted
  • on_conflict: project_accounts_on_conflict - upsert condition

Returns: project_accounts_mutation_response


insert_project_accounts_one

insert a single row into the table: "project_accounts"

Arguments:

  • object: project_accounts_insert_input! - the row to be inserted
  • on_conflict: project_accounts_on_conflict - upsert condition

Returns: project_accounts


insert_project_category_type

insert data into the table: "project_category_type"

Arguments:

  • objects: [project_category_type_insert_input!]! - the rows to be inserted
  • on_conflict: project_category_type_on_conflict - upsert condition

Returns: project_category_type_mutation_response


insert_project_category_type_one

insert a single row into the table: "project_category_type"

Arguments:

  • object: project_category_type_insert_input! - the row to be inserted
  • on_conflict: project_category_type_on_conflict - upsert condition

Returns: project_category_type


insert_project_cloud_resources

insert data into the table: "project_cloud_resources"

Arguments:

  • objects: [project_cloud_resources_insert_input!]! - the rows to be inserted
  • on_conflict: project_cloud_resources_on_conflict - upsert condition

Returns: project_cloud_resources_mutation_response


insert_project_cloud_resources_one

insert a single row into the table: "project_cloud_resources"

Arguments:

  • object: project_cloud_resources_insert_input! - the row to be inserted
  • on_conflict: project_cloud_resources_on_conflict - upsert condition

Returns: project_cloud_resources


insert_project_fundings

insert data into the table: "project_fundings"

Arguments:

  • objects: [project_fundings_insert_input!]! - the rows to be inserted
  • on_conflict: project_fundings_on_conflict - upsert condition

Returns: project_fundings_mutation_response


insert_project_fundings_one

insert a single row into the table: "project_fundings"

Arguments:

  • object: project_fundings_insert_input! - the row to be inserted
  • on_conflict: project_fundings_on_conflict - upsert condition

Returns: project_fundings


insert_project_users

insert data into the table: "project_users"

Arguments:

  • objects: [project_users_insert_input!]! - the rows to be inserted
  • on_conflict: project_users_on_conflict - upsert condition

Returns: project_users_mutation_response


insert_project_users_one

insert a single row into the table: "project_users"

Arguments:

  • object: project_users_insert_input! - the row to be inserted
  • on_conflict: project_users_on_conflict - upsert condition

Returns: project_users


insert_roles

insert data into the table: "roles"

Arguments:

  • objects: [roles_insert_input!]! - the rows to be inserted
  • on_conflict: roles_on_conflict - upsert condition

Returns: roles_mutation_response


insert_roles_one

insert a single row into the table: "roles"

Arguments:

  • object: roles_insert_input! - the row to be inserted
  • on_conflict: roles_on_conflict - upsert condition

Returns: roles


insert_tenant

insert data into the table: "tenant"

Arguments:

  • objects: [tenant_insert_input!]! - the rows to be inserted
  • on_conflict: tenant_on_conflict - upsert condition

Returns: tenant_mutation_response


insert_tenant_attrs

insert data into the table: "tenant_attrs"

Arguments:

  • objects: [tenant_attrs_insert_input!]! - the rows to be inserted
  • on_conflict: tenant_attrs_on_conflict - upsert condition

Returns: tenant_attrs_mutation_response


insert_tenant_attrs_one

insert a single row into the table: "tenant_attrs"

Arguments:

  • object: tenant_attrs_insert_input! - the row to be inserted
  • on_conflict: tenant_attrs_on_conflict - upsert condition

Returns: tenant_attrs


insert_tenant_onboarding

insert data into the table: "tenant_onboarding"

Arguments:

  • objects: [tenant_onboarding_insert_input!]! - the rows to be inserted
  • on_conflict: tenant_onboarding_on_conflict - upsert condition

Returns: tenant_onboarding_mutation_response


insert_tenant_onboarding_one

insert a single row into the table: "tenant_onboarding"

Arguments:

  • object: tenant_onboarding_insert_input! - the row to be inserted
  • on_conflict: tenant_onboarding_on_conflict - upsert condition

Returns: tenant_onboarding


insert_tenant_one

insert a single row into the table: "tenant"

Arguments:

  • object: tenant_insert_input! - the row to be inserted
  • on_conflict: tenant_on_conflict - upsert condition

Returns: tenant


insert_tenant_type

insert data into the table: "tenant_type"

Arguments:

  • objects: [tenant_type_insert_input!]! - the rows to be inserted
  • on_conflict: tenant_type_on_conflict - upsert condition

Returns: tenant_type_mutation_response


insert_tenant_type_one

insert a single row into the table: "tenant_type"

Arguments:

  • object: tenant_type_insert_input! - the row to be inserted
  • on_conflict: tenant_type_on_conflict - upsert condition

Returns: tenant_type


insert_tenant_users

insert data into the table: "tenant_users"

Arguments:

  • objects: [tenant_users_insert_input!]! - the rows to be inserted
  • on_conflict: tenant_users_on_conflict - upsert condition

Returns: tenant_users_mutation_response


insert_tenant_users_one

insert a single row into the table: "tenant_users"

Arguments:

  • object: tenant_users_insert_input! - the row to be inserted
  • on_conflict: tenant_users_on_conflict - upsert condition

Returns: tenant_users


insert_user_attrs

insert data into the table: "user_attrs"

Arguments:

  • objects: [user_attrs_insert_input!]! - the rows to be inserted
  • on_conflict: user_attrs_on_conflict - upsert condition

Returns: user_attrs_mutation_response


insert_user_attrs_one

insert a single row into the table: "user_attrs"

Arguments:

  • object: user_attrs_insert_input! - the row to be inserted
  • on_conflict: user_attrs_on_conflict - upsert condition

Returns: user_attrs


insert_user_auths

insert data into the table: "user_auths"

Arguments:

  • objects: [user_auths_insert_input!]! - the rows to be inserted
  • on_conflict: user_auths_on_conflict - upsert condition

Returns: user_auths_mutation_response


insert_user_auths_one

insert a single row into the table: "user_auths"

Arguments:

  • object: user_auths_insert_input! - the row to be inserted
  • on_conflict: user_auths_on_conflict - upsert condition

Returns: user_auths


insert_user_groups

insert data into the table: "user_groups"

Arguments:

  • objects: [user_groups_insert_input!]! - the rows to be inserted
  • on_conflict: user_groups_on_conflict - upsert condition

Returns: user_groups_mutation_response


insert_user_groups_one

insert a single row into the table: "user_groups"

Arguments:

  • object: user_groups_insert_input! - the row to be inserted
  • on_conflict: user_groups_on_conflict - upsert condition

Returns: user_groups


insert_user_history

insert data into the table: "user_history"

Arguments:

  • objects: [user_history_insert_input!]! - the rows to be inserted
  • on_conflict: user_history_on_conflict - upsert condition

Returns: user_history_mutation_response


insert_user_history_one

insert a single row into the table: "user_history"

Arguments:

  • object: user_history_insert_input! - the row to be inserted
  • on_conflict: user_history_on_conflict - upsert condition

Returns: user_history


insert_user_roles

insert data into the table: "user_roles"

Arguments:

  • objects: [user_roles_insert_input!]! - the rows to be inserted
  • on_conflict: user_roles_on_conflict - upsert condition

Returns: user_roles_mutation_response


insert_user_roles_one

insert a single row into the table: "user_roles"

Arguments:

  • object: user_roles_insert_input! - the row to be inserted
  • on_conflict: user_roles_on_conflict - upsert condition

Returns: user_roles


insert_user_status_type

insert data into the table: "user_status_type"

Arguments:

  • objects: [user_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: user_status_type_on_conflict - upsert condition

Returns: user_status_type_mutation_response


insert_user_status_type_one

insert a single row into the table: "user_status_type"

Arguments:

  • object: user_status_type_insert_input! - the row to be inserted
  • on_conflict: user_status_type_on_conflict - upsert condition

Returns: user_status_type


insert_usergroup_users

insert data into the table: "usergroup_users"

Arguments:

  • objects: [usergroup_users_insert_input!]! - the rows to be inserted
  • on_conflict: usergroup_users_on_conflict - upsert condition

Returns: usergroup_users_mutation_response


insert_usergroup_users_one

insert a single row into the table: "usergroup_users"

Arguments:

  • object: usergroup_users_insert_input! - the row to be inserted
  • on_conflict: usergroup_users_on_conflict - upsert condition

Returns: usergroup_users


insert_users

insert data into the table: "users"

Arguments:

  • objects: [users_insert_input!]! - the rows to be inserted
  • on_conflict: users_on_conflict - upsert condition

Returns: users_mutation_response


insert_users_one

insert a single row into the table: "users"

Arguments:

  • object: users_insert_input! - the row to be inserted
  • on_conflict: users_on_conflict - upsert condition

Returns: users


tenant_attribute_upsert

upsert tenant attributes

Arguments:

  • object: [TenantAttributeRequest!]!

Returns: [TenantAttributeResponse!]!


tenant_insert_one

Arguments:

  • tenant: tenant_insert_one_input!

Returns: tenant_insert_one_output


update_auth_provider_type

update data of the table: "auth_provider_type"

Arguments:

  • _set: auth_provider_type_set_input - sets the columns of the filtered rows to the given values
  • where: auth_provider_type_bool_exp! - filter the rows which have to be updated

Returns: auth_provider_type_mutation_response


update_auth_provider_type_by_pk

update single row of the table: "auth_provider_type"

Arguments:

  • _set: auth_provider_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auth_provider_type_pk_columns_input!

Returns: auth_provider_type


update_auth_provider_type_many

update multiples rows of table: "auth_provider_type"

Arguments:

  • updates: [auth_provider_type_updates!]! - updates to execute, in order

Returns: [auth_provider_type_mutation_response]


update_auth_type

update data of the table: "auth_type"

Arguments:

  • _set: auth_type_set_input - sets the columns of the filtered rows to the given values
  • where: auth_type_bool_exp! - filter the rows which have to be updated

Returns: auth_type_mutation_response


update_auth_type_by_pk

update single row of the table: "auth_type"

Arguments:

  • _set: auth_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: auth_type_pk_columns_input!

Returns: auth_type


update_auth_type_many

update multiples rows of table: "auth_type"

Arguments:

  • updates: [auth_type_updates!]! - updates to execute, in order

Returns: [auth_type_mutation_response]


update_business_unit

update data of the table: "business_unit"

Arguments:

  • _set: business_unit_set_input - sets the columns of the filtered rows to the given values
  • where: business_unit_bool_exp! - filter the rows which have to be updated

Returns: business_unit_mutation_response


update_business_unit_by_pk

update single row of the table: "business_unit"

Arguments:

  • _set: business_unit_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: business_unit_pk_columns_input!

Returns: business_unit


update_business_unit_many

update multiples rows of table: "business_unit"

Arguments:

  • updates: [business_unit_updates!]! - updates to execute, in order

Returns: [business_unit_mutation_response]


update_businessunit_users

update data of the table: "businessunit_users"

Arguments:

  • _set: businessunit_users_set_input - sets the columns of the filtered rows to the given values
  • where: businessunit_users_bool_exp! - filter the rows which have to be updated

Returns: businessunit_users_mutation_response


update_businessunit_users_by_pk

update single row of the table: "businessunit_users"

Arguments:

  • _set: businessunit_users_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: businessunit_users_pk_columns_input!

Returns: businessunit_users


update_businessunit_users_many

update multiples rows of table: "businessunit_users"

Arguments:

  • updates: [businessunit_users_updates!]! - updates to execute, in order

Returns: [businessunit_users_mutation_response]


update_project_accounts

update data of the table: "project_accounts"

Arguments:

  • _inc: project_accounts_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_accounts_set_input - sets the columns of the filtered rows to the given values
  • where: project_accounts_bool_exp! - filter the rows which have to be updated

Returns: project_accounts_mutation_response


update_project_accounts_by_pk

update single row of the table: "project_accounts"

Arguments:

  • _inc: project_accounts_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_accounts_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: project_accounts_pk_columns_input!

Returns: project_accounts


update_project_accounts_many

update multiples rows of table: "project_accounts"

Arguments:

  • updates: [project_accounts_updates!]! - updates to execute, in order

Returns: [project_accounts_mutation_response]


update_project_category_type

update data of the table: "project_category_type"

Arguments:

  • _set: project_category_type_set_input - sets the columns of the filtered rows to the given values
  • where: project_category_type_bool_exp! - filter the rows which have to be updated

Returns: project_category_type_mutation_response


update_project_category_type_by_pk

update single row of the table: "project_category_type"

Arguments:

  • _set: project_category_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: project_category_type_pk_columns_input!

Returns: project_category_type


update_project_category_type_many

update multiples rows of table: "project_category_type"

Arguments:

  • updates: [project_category_type_updates!]! - updates to execute, in order

Returns: [project_category_type_mutation_response]


update_project_cloud_resources

update data of the table: "project_cloud_resources"

Arguments:

  • _inc: project_cloud_resources_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_cloud_resources_set_input - sets the columns of the filtered rows to the given values
  • where: project_cloud_resources_bool_exp! - filter the rows which have to be updated

Returns: project_cloud_resources_mutation_response


update_project_cloud_resources_by_pk

update single row of the table: "project_cloud_resources"

Arguments:

  • _inc: project_cloud_resources_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_cloud_resources_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: project_cloud_resources_pk_columns_input!

Returns: project_cloud_resources


update_project_cloud_resources_many

update multiples rows of table: "project_cloud_resources"

Arguments:

  • updates: [project_cloud_resources_updates!]! - updates to execute, in order

Returns: [project_cloud_resources_mutation_response]


update_project_fundings

update data of the table: "project_fundings"

Arguments:

  • _inc: project_fundings_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_fundings_set_input - sets the columns of the filtered rows to the given values
  • where: project_fundings_bool_exp! - filter the rows which have to be updated

Returns: project_fundings_mutation_response


update_project_fundings_by_pk

update single row of the table: "project_fundings"

Arguments:

  • _inc: project_fundings_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_fundings_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: project_fundings_pk_columns_input!

Returns: project_fundings


update_project_fundings_many

update multiples rows of table: "project_fundings"

Arguments:

  • updates: [project_fundings_updates!]! - updates to execute, in order

Returns: [project_fundings_mutation_response]


update_project_users

update data of the table: "project_users"

Arguments:

  • _set: project_users_set_input - sets the columns of the filtered rows to the given values
  • where: project_users_bool_exp! - filter the rows which have to be updated

Returns: project_users_mutation_response


update_project_users_by_pk

update single row of the table: "project_users"

Arguments:

  • _set: project_users_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: project_users_pk_columns_input!

Returns: project_users


update_project_users_many

update multiples rows of table: "project_users"

Arguments:

  • updates: [project_users_updates!]! - updates to execute, in order

Returns: [project_users_mutation_response]


update_roles

update data of the table: "roles"

Arguments:

  • _set: roles_set_input - sets the columns of the filtered rows to the given values
  • where: roles_bool_exp! - filter the rows which have to be updated

Returns: roles_mutation_response


update_roles_by_pk

update single row of the table: "roles"

Arguments:

  • _set: roles_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: roles_pk_columns_input!

Returns: roles


update_roles_many

update multiples rows of table: "roles"

Arguments:

  • updates: [roles_updates!]! - updates to execute, in order

Returns: [roles_mutation_response]


update_tenant

update data of the table: "tenant"

Arguments:

  • _set: tenant_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_bool_exp! - filter the rows which have to be updated

Returns: tenant_mutation_response


update_tenant_attrs

update data of the table: "tenant_attrs"

Arguments:

  • _set: tenant_attrs_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_attrs_bool_exp! - filter the rows which have to be updated

Returns: tenant_attrs_mutation_response


update_tenant_attrs_by_pk

update single row of the table: "tenant_attrs"

Arguments:

  • _set: tenant_attrs_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: tenant_attrs_pk_columns_input!

Returns: tenant_attrs


update_tenant_attrs_many

update multiples rows of table: "tenant_attrs"

Arguments:

  • updates: [tenant_attrs_updates!]! - updates to execute, in order

Returns: [tenant_attrs_mutation_response]


update_tenant_by_pk

update single row of the table: "tenant"

Arguments:

  • _set: tenant_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: tenant_pk_columns_input!

Returns: tenant


update_tenant_many

update multiples rows of table: "tenant"

Arguments:

  • updates: [tenant_updates!]! - updates to execute, in order

Returns: [tenant_mutation_response]


update_tenant_onboarding

update data of the table: "tenant_onboarding"

Arguments:

  • _set: tenant_onboarding_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_onboarding_bool_exp! - filter the rows which have to be updated

Returns: tenant_onboarding_mutation_response


update_tenant_onboarding_by_pk

update single row of the table: "tenant_onboarding"

Arguments:

  • _set: tenant_onboarding_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: tenant_onboarding_pk_columns_input!

Returns: tenant_onboarding


update_tenant_onboarding_many

update multiples rows of table: "tenant_onboarding"

Arguments:

  • updates: [tenant_onboarding_updates!]! - updates to execute, in order

Returns: [tenant_onboarding_mutation_response]


update_tenant_type

update data of the table: "tenant_type"

Arguments:

  • _set: tenant_type_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_type_bool_exp! - filter the rows which have to be updated

Returns: tenant_type_mutation_response


update_tenant_type_by_pk

update single row of the table: "tenant_type"

Arguments:

  • _set: tenant_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: tenant_type_pk_columns_input!

Returns: tenant_type


update_tenant_type_many

update multiples rows of table: "tenant_type"

Arguments:

  • updates: [tenant_type_updates!]! - updates to execute, in order

Returns: [tenant_type_mutation_response]


update_tenant_users

update data of the table: "tenant_users"

Arguments:

  • _set: tenant_users_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_users_bool_exp! - filter the rows which have to be updated

Returns: tenant_users_mutation_response


update_tenant_users_by_pk

update single row of the table: "tenant_users"

Arguments:

  • _set: tenant_users_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: tenant_users_pk_columns_input!

Returns: tenant_users


update_tenant_users_many

update multiples rows of table: "tenant_users"

Arguments:

  • updates: [tenant_users_updates!]! - updates to execute, in order

Returns: [tenant_users_mutation_response]


update_user_attrs

update data of the table: "user_attrs"

Arguments:

  • _set: user_attrs_set_input - sets the columns of the filtered rows to the given values
  • where: user_attrs_bool_exp! - filter the rows which have to be updated

Returns: user_attrs_mutation_response


update_user_attrs_by_pk

update single row of the table: "user_attrs"

Arguments:

  • _set: user_attrs_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: user_attrs_pk_columns_input!

Returns: user_attrs


update_user_attrs_many

update multiples rows of table: "user_attrs"

Arguments:

  • updates: [user_attrs_updates!]! - updates to execute, in order

Returns: [user_attrs_mutation_response]


update_user_auths

update data of the table: "user_auths"

Arguments:

  • _set: user_auths_set_input - sets the columns of the filtered rows to the given values
  • where: user_auths_bool_exp! - filter the rows which have to be updated

Returns: user_auths_mutation_response


update_user_auths_by_pk

update single row of the table: "user_auths"

Arguments:

  • _set: user_auths_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: user_auths_pk_columns_input!

Returns: user_auths


update_user_auths_many

update multiples rows of table: "user_auths"

Arguments:

  • updates: [user_auths_updates!]! - updates to execute, in order

Returns: [user_auths_mutation_response]


update_user_groups

update data of the table: "user_groups"

Arguments:

  • _set: user_groups_set_input - sets the columns of the filtered rows to the given values
  • where: user_groups_bool_exp! - filter the rows which have to be updated

Returns: user_groups_mutation_response


update_user_groups_by_pk

update single row of the table: "user_groups"

Arguments:

  • _set: user_groups_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: user_groups_pk_columns_input!

Returns: user_groups


update_user_groups_many

update multiples rows of table: "user_groups"

Arguments:

  • updates: [user_groups_updates!]! - updates to execute, in order

Returns: [user_groups_mutation_response]


update_user_history

update data of the table: "user_history"

Arguments:

  • _append: user_history_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: user_history_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: user_history_delete_elem_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_key: user_history_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: user_history_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: user_history_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: user_history_set_input - sets the columns of the filtered rows to the given values
  • where: user_history_bool_exp! - filter the rows which have to be updated

Returns: user_history_mutation_response


update_user_history_by_pk

update single row of the table: "user_history"

Arguments:

  • _append: user_history_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: user_history_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: user_history_delete_elem_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_key: user_history_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: user_history_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: user_history_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: user_history_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: user_history_pk_columns_input!

Returns: user_history


update_user_history_many

update multiples rows of table: "user_history"

Arguments:

  • updates: [user_history_updates!]! - updates to execute, in order

Returns: [user_history_mutation_response]


update_user_roles

update data of the table: "user_roles"

Arguments:

  • _set: user_roles_set_input - sets the columns of the filtered rows to the given values
  • where: user_roles_bool_exp! - filter the rows which have to be updated

Returns: user_roles_mutation_response


update_user_roles_by_pk

update single row of the table: "user_roles"

Arguments:

  • _set: user_roles_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: user_roles_pk_columns_input!

Returns: user_roles


update_user_roles_many

update multiples rows of table: "user_roles"

Arguments:

  • updates: [user_roles_updates!]! - updates to execute, in order

Returns: [user_roles_mutation_response]


update_user_status_type

update data of the table: "user_status_type"

Arguments:

  • _set: user_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: user_status_type_bool_exp! - filter the rows which have to be updated

Returns: user_status_type_mutation_response


update_user_status_type_by_pk

update single row of the table: "user_status_type"

Arguments:

  • _set: user_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: user_status_type_pk_columns_input!

Returns: user_status_type


update_user_status_type_many

update multiples rows of table: "user_status_type"

Arguments:

  • updates: [user_status_type_updates!]! - updates to execute, in order

Returns: [user_status_type_mutation_response]


update_usergroup_users

update data of the table: "usergroup_users"

Arguments:

  • _set: usergroup_users_set_input - sets the columns of the filtered rows to the given values
  • where: usergroup_users_bool_exp! - filter the rows which have to be updated

Returns: usergroup_users_mutation_response


update_usergroup_users_by_pk

update single row of the table: "usergroup_users"

Arguments:

  • _set: usergroup_users_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: usergroup_users_pk_columns_input!

Returns: usergroup_users


update_usergroup_users_many

update multiples rows of table: "usergroup_users"

Arguments:

  • updates: [usergroup_users_updates!]! - updates to execute, in order

Returns: [usergroup_users_mutation_response]


update_users

update data of the table: "users"

Arguments:

  • _set: users_set_input - sets the columns of the filtered rows to the given values
  • where: users_bool_exp! - filter the rows which have to be updated

Returns: users_mutation_response


update_users_by_pk

update single row of the table: "users"

Arguments:

  • _set: users_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: users_pk_columns_input!

Returns: users


update_users_many

update multiples rows of table: "users"

Arguments:

  • updates: [users_updates!]! - updates to execute, in order

Returns: [users_mutation_response]


user_history

Arguments:

  • request: UserHistoryInput!

Returns: UserHistoryOutput


users_create_token

Arguments:

  • user: UserTokenCreateRequest

Returns: UserTokenCreateResponse


users_delete_one

Arguments:

  • user: DeleteByPkRequest

Returns: DeleteByPkResponse


users_delete_token

Arguments:

  • user: UserTokenDeleteRequest

Returns: UserTokenDeleteResponse


users_insert_one

Arguments:

  • user: users_insert_one_input!

Returns: users_insert_one_output


Integrations

Third-party integrations: Slack, MS Teams, Jira, and custom connectors.

delete_integration_categories

delete data from the table: "integration_categories"

Arguments:

  • where: integration_categories_bool_exp! - filter the rows which have to be deleted

Returns: integration_categories_mutation_response


delete_integration_categories_by_pk

delete single row from the table: "integration_categories"

Arguments:

  • value: String!

Returns: integration_categories


delete_integration_config_values

delete data from the table: "integration_config_values"

Arguments:

  • where: integration_config_values_bool_exp! - filter the rows which have to be deleted

Returns: integration_config_values_mutation_response


delete_integration_config_values_by_pk

delete single row from the table: "integration_config_values"

Arguments:

  • id: uuid!

Returns: integration_config_values


delete_integration_sources

delete data from the table: "integration_sources"

Arguments:

  • where: integration_sources_bool_exp! - filter the rows which have to be deleted

Returns: integration_sources_mutation_response


delete_integration_sources_by_pk

delete single row from the table: "integration_sources"

Arguments:

  • value: String!

Returns: integration_sources


delete_integration_statuses

delete data from the table: "integration_statuses"

Arguments:

  • where: integration_statuses_bool_exp! - filter the rows which have to be deleted

Returns: integration_statuses_mutation_response


delete_integration_statuses_by_pk

delete single row from the table: "integration_statuses"

Arguments:

  • value: String!

Returns: integration_statuses


delete_integration_types

delete data from the table: "integration_types"

Arguments:

  • where: integration_types_bool_exp! - filter the rows which have to be deleted

Returns: integration_types_mutation_response


delete_integration_types_by_pk

delete single row from the table: "integration_types"

Arguments:

  • name: String!

Returns: integration_types


delete_integrations

delete data from the table: "integrations"

Arguments:

  • where: integrations_bool_exp! - filter the rows which have to be deleted

Returns: integrations_mutation_response


delete_integrations_by_pk

delete single row from the table: "integrations"

Arguments:

  • id: uuid!

Returns: integrations


delete_integrations_cloud_accounts

delete data from the table: "integrations_cloud_accounts"

Arguments:

  • where: integrations_cloud_accounts_bool_exp! - filter the rows which have to be deleted

Returns: integrations_cloud_accounts_mutation_response


delete_integrations_cloud_accounts_by_pk

delete single row from the table: "integrations_cloud_accounts"

Arguments:

  • id: uuid!

Returns: integrations_cloud_accounts


delete_jira_configurations

delete data from the table: "jira_configurations"

Arguments:

  • where: jira_configurations_bool_exp! - filter the rows which have to be deleted

Returns: jira_configurations_mutation_response


delete_jira_configurations_by_pk

delete single row from the table: "jira_configurations"

Arguments:

  • id: uuid!

Returns: jira_configurations


delete_ms_teams_channels

delete data from the table: "ms_teams_channels"

Arguments:

  • where: ms_teams_channels_bool_exp! - filter the rows which have to be deleted

Returns: ms_teams_channels_mutation_response


delete_ms_teams_channels_by_pk

delete single row from the table: "ms_teams_channels"

Arguments:

  • id: uuid!

Returns: ms_teams_channels


delete_slack_bots

delete data from the table: "slack_bots"

Arguments:

  • where: slack_bots_bool_exp! - filter the rows which have to be deleted

Returns: slack_bots_mutation_response


delete_slack_bots_by_pk

delete single row from the table: "slack_bots"

Arguments:

  • id: uuid!

Returns: slack_bots


delete_slack_oauth_states

delete data from the table: "slack_oauth_states"

Arguments:

  • where: slack_oauth_states_bool_exp! - filter the rows which have to be deleted

Returns: slack_oauth_states_mutation_response


delete_slack_oauth_states_by_pk

delete single row from the table: "slack_oauth_states"

Arguments:

  • id: uuid!

Returns: slack_oauth_states


insert_integration_categories

insert data into the table: "integration_categories"

Arguments:

  • objects: [integration_categories_insert_input!]! - the rows to be inserted
  • on_conflict: integration_categories_on_conflict - upsert condition

Returns: integration_categories_mutation_response


insert_integration_categories_one

insert a single row into the table: "integration_categories"

Arguments:

  • object: integration_categories_insert_input! - the row to be inserted
  • on_conflict: integration_categories_on_conflict - upsert condition

Returns: integration_categories


insert_integration_config_values

insert data into the table: "integration_config_values"

Arguments:

  • objects: [integration_config_values_insert_input!]! - the rows to be inserted
  • on_conflict: integration_config_values_on_conflict - upsert condition

Returns: integration_config_values_mutation_response


insert_integration_config_values_one

insert a single row into the table: "integration_config_values"

Arguments:

  • object: integration_config_values_insert_input! - the row to be inserted
  • on_conflict: integration_config_values_on_conflict - upsert condition

Returns: integration_config_values


insert_integration_sources

insert data into the table: "integration_sources"

Arguments:

  • objects: [integration_sources_insert_input!]! - the rows to be inserted
  • on_conflict: integration_sources_on_conflict - upsert condition

Returns: integration_sources_mutation_response


insert_integration_sources_one

insert a single row into the table: "integration_sources"

Arguments:

  • object: integration_sources_insert_input! - the row to be inserted
  • on_conflict: integration_sources_on_conflict - upsert condition

Returns: integration_sources


insert_integration_statuses

insert data into the table: "integration_statuses"

Arguments:

  • objects: [integration_statuses_insert_input!]! - the rows to be inserted
  • on_conflict: integration_statuses_on_conflict - upsert condition

Returns: integration_statuses_mutation_response


insert_integration_statuses_one

insert a single row into the table: "integration_statuses"

Arguments:

  • object: integration_statuses_insert_input! - the row to be inserted
  • on_conflict: integration_statuses_on_conflict - upsert condition

Returns: integration_statuses


insert_integration_types

insert data into the table: "integration_types"

Arguments:

  • objects: [integration_types_insert_input!]! - the rows to be inserted
  • on_conflict: integration_types_on_conflict - upsert condition

Returns: integration_types_mutation_response


insert_integration_types_one

insert a single row into the table: "integration_types"

Arguments:

  • object: integration_types_insert_input! - the row to be inserted
  • on_conflict: integration_types_on_conflict - upsert condition

Returns: integration_types


insert_integrations

insert data into the table: "integrations"

Arguments:

  • objects: [integrations_insert_input!]! - the rows to be inserted
  • on_conflict: integrations_on_conflict - upsert condition

Returns: integrations_mutation_response


insert_integrations_cloud_accounts

insert data into the table: "integrations_cloud_accounts"

Arguments:

  • objects: [integrations_cloud_accounts_insert_input!]! - the rows to be inserted
  • on_conflict: integrations_cloud_accounts_on_conflict - upsert condition

Returns: integrations_cloud_accounts_mutation_response


insert_integrations_cloud_accounts_one

insert a single row into the table: "integrations_cloud_accounts"

Arguments:

  • object: integrations_cloud_accounts_insert_input! - the row to be inserted
  • on_conflict: integrations_cloud_accounts_on_conflict - upsert condition

Returns: integrations_cloud_accounts


insert_integrations_one

insert a single row into the table: "integrations"

Arguments:

  • object: integrations_insert_input! - the row to be inserted
  • on_conflict: integrations_on_conflict - upsert condition

Returns: integrations


insert_jira_configurations

insert data into the table: "jira_configurations"

Arguments:

  • objects: [jira_configurations_insert_input!]! - the rows to be inserted
  • on_conflict: jira_configurations_on_conflict - upsert condition

Returns: jira_configurations_mutation_response


insert_jira_configurations_one

insert a single row into the table: "jira_configurations"

Arguments:

  • object: jira_configurations_insert_input! - the row to be inserted
  • on_conflict: jira_configurations_on_conflict - upsert condition

Returns: jira_configurations


insert_ms_teams_channels

insert data into the table: "ms_teams_channels"

Arguments:

  • objects: [ms_teams_channels_insert_input!]! - the rows to be inserted
  • on_conflict: ms_teams_channels_on_conflict - upsert condition

Returns: ms_teams_channels_mutation_response


insert_ms_teams_channels_one

insert a single row into the table: "ms_teams_channels"

Arguments:

  • object: ms_teams_channels_insert_input! - the row to be inserted
  • on_conflict: ms_teams_channels_on_conflict - upsert condition

Returns: ms_teams_channels


insert_slack_bots

insert data into the table: "slack_bots"

Arguments:

  • objects: [slack_bots_insert_input!]! - the rows to be inserted
  • on_conflict: slack_bots_on_conflict - upsert condition

Returns: slack_bots_mutation_response


insert_slack_bots_one

insert a single row into the table: "slack_bots"

Arguments:

  • object: slack_bots_insert_input! - the row to be inserted
  • on_conflict: slack_bots_on_conflict - upsert condition

Returns: slack_bots


insert_slack_oauth_states

insert data into the table: "slack_oauth_states"

Arguments:

  • objects: [slack_oauth_states_insert_input!]! - the rows to be inserted
  • on_conflict: slack_oauth_states_on_conflict - upsert condition

Returns: slack_oauth_states_mutation_response


insert_slack_oauth_states_one

insert a single row into the table: "slack_oauth_states"

Arguments:

  • object: slack_oauth_states_insert_input! - the row to be inserted
  • on_conflict: slack_oauth_states_on_conflict - upsert condition

Returns: slack_oauth_states


integrations_create_config

Arguments:

  • request: CreateIntegrationConfigRequest!

Returns: CreateIntegrationConfigResponse


integrations_delete_config

Arguments:

  • request: DeleteIntegrationConfigRequest!

Returns: DeleteIntegrationConfigResponse


integrations_update_status

Arguments:

  • request: DeleteIntegrationConfigRequest!

Returns: DeleteIntegrationConfigResponse


update_integration_categories

update data of the table: "integration_categories"

Arguments:

  • _set: integration_categories_set_input - sets the columns of the filtered rows to the given values
  • where: integration_categories_bool_exp! - filter the rows which have to be updated

Returns: integration_categories_mutation_response


update_integration_categories_by_pk

update single row of the table: "integration_categories"

Arguments:

  • _set: integration_categories_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integration_categories_pk_columns_input!

Returns: integration_categories


update_integration_categories_many

update multiples rows of table: "integration_categories"

Arguments:

  • updates: [integration_categories_updates!]! - updates to execute, in order

Returns: [integration_categories_mutation_response]


update_integration_config_values

update data of the table: "integration_config_values"

Arguments:

  • _set: integration_config_values_set_input - sets the columns of the filtered rows to the given values
  • where: integration_config_values_bool_exp! - filter the rows which have to be updated

Returns: integration_config_values_mutation_response


update_integration_config_values_by_pk

update single row of the table: "integration_config_values"

Arguments:

  • _set: integration_config_values_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integration_config_values_pk_columns_input!

Returns: integration_config_values


update_integration_config_values_many

update multiples rows of table: "integration_config_values"

Arguments:

  • updates: [integration_config_values_updates!]! - updates to execute, in order

Returns: [integration_config_values_mutation_response]


update_integration_sources

update data of the table: "integration_sources"

Arguments:

  • _set: integration_sources_set_input - sets the columns of the filtered rows to the given values
  • where: integration_sources_bool_exp! - filter the rows which have to be updated

Returns: integration_sources_mutation_response


update_integration_sources_by_pk

update single row of the table: "integration_sources"

Arguments:

  • _set: integration_sources_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integration_sources_pk_columns_input!

Returns: integration_sources


update_integration_sources_many

update multiples rows of table: "integration_sources"

Arguments:

  • updates: [integration_sources_updates!]! - updates to execute, in order

Returns: [integration_sources_mutation_response]


update_integration_statuses

update data of the table: "integration_statuses"

Arguments:

  • _set: integration_statuses_set_input - sets the columns of the filtered rows to the given values
  • where: integration_statuses_bool_exp! - filter the rows which have to be updated

Returns: integration_statuses_mutation_response


update_integration_statuses_by_pk

update single row of the table: "integration_statuses"

Arguments:

  • _set: integration_statuses_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integration_statuses_pk_columns_input!

Returns: integration_statuses


update_integration_statuses_many

update multiples rows of table: "integration_statuses"

Arguments:

  • updates: [integration_statuses_updates!]! - updates to execute, in order

Returns: [integration_statuses_mutation_response]


update_integration_types

update data of the table: "integration_types"

Arguments:

  • _set: integration_types_set_input - sets the columns of the filtered rows to the given values
  • where: integration_types_bool_exp! - filter the rows which have to be updated

Returns: integration_types_mutation_response


update_integration_types_by_pk

update single row of the table: "integration_types"

Arguments:

  • _set: integration_types_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integration_types_pk_columns_input!

Returns: integration_types


update_integration_types_many

update multiples rows of table: "integration_types"

Arguments:

  • updates: [integration_types_updates!]! - updates to execute, in order

Returns: [integration_types_mutation_response]


update_integrations

update data of the table: "integrations"

Arguments:

  • _set: integrations_set_input - sets the columns of the filtered rows to the given values
  • where: integrations_bool_exp! - filter the rows which have to be updated

Returns: integrations_mutation_response


update_integrations_by_pk

update single row of the table: "integrations"

Arguments:

  • _set: integrations_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integrations_pk_columns_input!

Returns: integrations


update_integrations_cloud_accounts

update data of the table: "integrations_cloud_accounts"

Arguments:

  • _set: integrations_cloud_accounts_set_input - sets the columns of the filtered rows to the given values
  • where: integrations_cloud_accounts_bool_exp! - filter the rows which have to be updated

Returns: integrations_cloud_accounts_mutation_response


update_integrations_cloud_accounts_by_pk

update single row of the table: "integrations_cloud_accounts"

Arguments:

  • _set: integrations_cloud_accounts_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: integrations_cloud_accounts_pk_columns_input!

Returns: integrations_cloud_accounts


update_integrations_cloud_accounts_many

update multiples rows of table: "integrations_cloud_accounts"

Arguments:

  • updates: [integrations_cloud_accounts_updates!]! - updates to execute, in order

Returns: [integrations_cloud_accounts_mutation_response]


update_integrations_many

update multiples rows of table: "integrations"

Arguments:

  • updates: [integrations_updates!]! - updates to execute, in order

Returns: [integrations_mutation_response]


update_jira_configurations

update data of the table: "jira_configurations"

Arguments:

  • _set: jira_configurations_set_input - sets the columns of the filtered rows to the given values
  • where: jira_configurations_bool_exp! - filter the rows which have to be updated

Returns: jira_configurations_mutation_response


update_jira_configurations_by_pk

update single row of the table: "jira_configurations"

Arguments:

  • _set: jira_configurations_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: jira_configurations_pk_columns_input!

Returns: jira_configurations


update_jira_configurations_many

update multiples rows of table: "jira_configurations"

Arguments:

  • updates: [jira_configurations_updates!]! - updates to execute, in order

Returns: [jira_configurations_mutation_response]


update_ms_teams_channels

update data of the table: "ms_teams_channels"

Arguments:

  • _set: ms_teams_channels_set_input - sets the columns of the filtered rows to the given values
  • where: ms_teams_channels_bool_exp! - filter the rows which have to be updated

Returns: ms_teams_channels_mutation_response


update_ms_teams_channels_by_pk

update single row of the table: "ms_teams_channels"

Arguments:

  • _set: ms_teams_channels_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: ms_teams_channels_pk_columns_input!

Returns: ms_teams_channels


update_ms_teams_channels_many

update multiples rows of table: "ms_teams_channels"

Arguments:

  • updates: [ms_teams_channels_updates!]! - updates to execute, in order

Returns: [ms_teams_channels_mutation_response]


update_slack_bots

update data of the table: "slack_bots"

Arguments:

  • _set: slack_bots_set_input - sets the columns of the filtered rows to the given values
  • where: slack_bots_bool_exp! - filter the rows which have to be updated

Returns: slack_bots_mutation_response


update_slack_bots_by_pk

update single row of the table: "slack_bots"

Arguments:

  • _set: slack_bots_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: slack_bots_pk_columns_input!

Returns: slack_bots


update_slack_bots_many

update multiples rows of table: "slack_bots"

Arguments:

  • updates: [slack_bots_updates!]! - updates to execute, in order

Returns: [slack_bots_mutation_response]


update_slack_oauth_states

update data of the table: "slack_oauth_states"

Arguments:

  • _set: slack_oauth_states_set_input - sets the columns of the filtered rows to the given values
  • where: slack_oauth_states_bool_exp! - filter the rows which have to be updated

Returns: slack_oauth_states_mutation_response


update_slack_oauth_states_by_pk

update single row of the table: "slack_oauth_states"

Arguments:

  • _set: slack_oauth_states_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: slack_oauth_states_pk_columns_input!

Returns: slack_oauth_states


update_slack_oauth_states_many

update multiples rows of table: "slack_oauth_states"

Arguments:

  • updates: [slack_oauth_states_updates!]! - updates to execute, in order

Returns: [slack_oauth_states_mutation_response]


Configuration

Feature flags, SLO targets, system configuration, and upgrade management.

config_delete

Arguments:

  • request: ConfigDeleteInput!

Returns: ConfigDeleteOutput


config_get

Arguments:

  • request: GetConfigInput!

Returns: GetConfigResponse


config_list

Arguments:

  • request: ConfigListRequest!

Returns: [Config]


config_save

Arguments:

  • request: ConfigSaveInput!

Returns: ConfigSaveOutput


delete_configuration_store

delete data from the table: "configuration_store"

Arguments:

  • where: configuration_store_bool_exp! - filter the rows which have to be deleted

Returns: configuration_store_mutation_response


delete_configuration_store_by_pk

delete single row from the table: "configuration_store"

Arguments:

  • id: uuid!

Returns: configuration_store


delete_etl_jobs

delete data from the table: "etl_jobs"

Arguments:

  • where: etl_jobs_bool_exp! - filter the rows which have to be deleted

Returns: etl_jobs_mutation_response


delete_etl_jobs_by_pk

delete single row from the table: "etl_jobs"

Arguments:

  • id: uuid!

Returns: etl_jobs


delete_feature

delete data from the table: "feature"

Arguments:

  • where: feature_bool_exp! - filter the rows which have to be deleted

Returns: feature_mutation_response


delete_feature_by_pk

delete single row from the table: "feature"

Arguments:

  • value: String!

Returns: feature


delete_feature_flag

delete data from the table: "feature_flag"

Arguments:

  • where: feature_flag_bool_exp! - filter the rows which have to be deleted

Returns: feature_flag_mutation_response


delete_feature_flag_by_pk

delete single row from the table: "feature_flag"

Arguments:

  • id: uuid!

Returns: feature_flag


delete_slo_config

delete data from the table: "slo_config"

Arguments:

  • where: slo_config_bool_exp! - filter the rows which have to be deleted

Returns: slo_config_mutation_response


delete_slo_config_by_pk

delete single row from the table: "slo_config"

Arguments:

  • id: uuid!

Returns: slo_config


delete_slo_report

delete data from the table: "slo_report"

Arguments:

  • where: slo_report_bool_exp! - filter the rows which have to be deleted

Returns: slo_report_mutation_response


delete_slo_report_by_pk

delete single row from the table: "slo_report"

Arguments:

  • id: uuid!

Returns: slo_report


delete_slo_status

delete data from the table: "slo_status"

Arguments:

  • where: slo_status_bool_exp! - filter the rows which have to be deleted

Returns: slo_status_mutation_response


delete_slo_status_by_pk

delete single row from the table: "slo_status"

Arguments:

  • value: String!

Returns: slo_status


delete_upgrade_plan

delete data from the table: "upgrade_plan"

Arguments:

  • where: upgrade_plan_bool_exp! - filter the rows which have to be deleted

Returns: upgrade_plan_mutation_response


delete_upgrade_plan_audit

delete data from the table: "upgrade_plan_audit"

Arguments:

  • where: upgrade_plan_audit_bool_exp! - filter the rows which have to be deleted

Returns: upgrade_plan_audit_mutation_response


delete_upgrade_plan_audit_by_pk

delete single row from the table: "upgrade_plan_audit"

Arguments:

  • id: uuid!

Returns: upgrade_plan_audit


delete_upgrade_plan_by_pk

delete single row from the table: "upgrade_plan"

Arguments:

  • id: uuid!

Returns: upgrade_plan


delete_upgrade_plan_status_type

delete data from the table: "upgrade_plan_status_type"

Arguments:

  • where: upgrade_plan_status_type_bool_exp! - filter the rows which have to be deleted

Returns: upgrade_plan_status_type_mutation_response


delete_upgrade_plan_status_type_by_pk

delete single row from the table: "upgrade_plan_status_type"

Arguments:

  • value: String!

Returns: upgrade_plan_status_type


delete_upgrade_plan_steps

delete data from the table: "upgrade_plan_steps"

Arguments:

  • where: upgrade_plan_steps_bool_exp! - filter the rows which have to be deleted

Returns: upgrade_plan_steps_mutation_response


delete_upgrade_plan_steps_by_pk

delete single row from the table: "upgrade_plan_steps"

Arguments:

  • id: uuid!

Returns: upgrade_plan_steps


delete_upgrade_plan_tasks

delete data from the table: "upgrade_plan_tasks"

Arguments:

  • where: upgrade_plan_tasks_bool_exp! - filter the rows which have to be deleted

Returns: upgrade_plan_tasks_mutation_response


delete_upgrade_plan_tasks_by_pk

delete single row from the table: "upgrade_plan_tasks"

Arguments:

  • id: uuid!

Returns: upgrade_plan_tasks


insert_configuration_store

insert data into the table: "configuration_store"

Arguments:

  • objects: [configuration_store_insert_input!]! - the rows to be inserted
  • on_conflict: configuration_store_on_conflict - upsert condition

Returns: configuration_store_mutation_response


insert_configuration_store_one

insert a single row into the table: "configuration_store"

Arguments:

  • object: configuration_store_insert_input! - the row to be inserted
  • on_conflict: configuration_store_on_conflict - upsert condition

Returns: configuration_store


insert_etl_jobs

insert data into the table: "etl_jobs"

Arguments:

  • objects: [etl_jobs_insert_input!]! - the rows to be inserted
  • on_conflict: etl_jobs_on_conflict - upsert condition

Returns: etl_jobs_mutation_response


insert_etl_jobs_one

insert a single row into the table: "etl_jobs"

Arguments:

  • object: etl_jobs_insert_input! - the row to be inserted
  • on_conflict: etl_jobs_on_conflict - upsert condition

Returns: etl_jobs


insert_feature

insert data into the table: "feature"

Arguments:

  • objects: [feature_insert_input!]! - the rows to be inserted
  • on_conflict: feature_on_conflict - upsert condition

Returns: feature_mutation_response


insert_feature_flag

insert data into the table: "feature_flag"

Arguments:

  • objects: [feature_flag_insert_input!]! - the rows to be inserted
  • on_conflict: feature_flag_on_conflict - upsert condition

Returns: feature_flag_mutation_response


insert_feature_flag_one

insert a single row into the table: "feature_flag"

Arguments:

  • object: feature_flag_insert_input! - the row to be inserted
  • on_conflict: feature_flag_on_conflict - upsert condition

Returns: feature_flag


insert_feature_one

insert a single row into the table: "feature"

Arguments:

  • object: feature_insert_input! - the row to be inserted
  • on_conflict: feature_on_conflict - upsert condition

Returns: feature


insert_slo_config

insert data into the table: "slo_config"

Arguments:

  • objects: [slo_config_insert_input!]! - the rows to be inserted
  • on_conflict: slo_config_on_conflict - upsert condition

Returns: slo_config_mutation_response


insert_slo_config_one

insert a single row into the table: "slo_config"

Arguments:

  • object: slo_config_insert_input! - the row to be inserted
  • on_conflict: slo_config_on_conflict - upsert condition

Returns: slo_config


insert_slo_report

insert data into the table: "slo_report"

Arguments:

  • objects: [slo_report_insert_input!]! - the rows to be inserted
  • on_conflict: slo_report_on_conflict - upsert condition

Returns: slo_report_mutation_response


insert_slo_report_one

insert a single row into the table: "slo_report"

Arguments:

  • object: slo_report_insert_input! - the row to be inserted
  • on_conflict: slo_report_on_conflict - upsert condition

Returns: slo_report


insert_slo_status

insert data into the table: "slo_status"

Arguments:

  • objects: [slo_status_insert_input!]! - the rows to be inserted
  • on_conflict: slo_status_on_conflict - upsert condition

Returns: slo_status_mutation_response


insert_slo_status_one

insert a single row into the table: "slo_status"

Arguments:

  • object: slo_status_insert_input! - the row to be inserted
  • on_conflict: slo_status_on_conflict - upsert condition

Returns: slo_status


insert_upgrade_plan

insert data into the table: "upgrade_plan"

Arguments:

  • objects: [upgrade_plan_insert_input!]! - the rows to be inserted
  • on_conflict: upgrade_plan_on_conflict - upsert condition

Returns: upgrade_plan_mutation_response


insert_upgrade_plan_audit

insert data into the table: "upgrade_plan_audit"

Arguments:

  • objects: [upgrade_plan_audit_insert_input!]! - the rows to be inserted
  • on_conflict: upgrade_plan_audit_on_conflict - upsert condition

Returns: upgrade_plan_audit_mutation_response


insert_upgrade_plan_audit_one

insert a single row into the table: "upgrade_plan_audit"

Arguments:

  • object: upgrade_plan_audit_insert_input! - the row to be inserted
  • on_conflict: upgrade_plan_audit_on_conflict - upsert condition

Returns: upgrade_plan_audit


insert_upgrade_plan_one

insert a single row into the table: "upgrade_plan"

Arguments:

  • object: upgrade_plan_insert_input! - the row to be inserted
  • on_conflict: upgrade_plan_on_conflict - upsert condition

Returns: upgrade_plan


insert_upgrade_plan_status_type

insert data into the table: "upgrade_plan_status_type"

Arguments:

  • objects: [upgrade_plan_status_type_insert_input!]! - the rows to be inserted
  • on_conflict: upgrade_plan_status_type_on_conflict - upsert condition

Returns: upgrade_plan_status_type_mutation_response


insert_upgrade_plan_status_type_one

insert a single row into the table: "upgrade_plan_status_type"

Arguments:

  • object: upgrade_plan_status_type_insert_input! - the row to be inserted
  • on_conflict: upgrade_plan_status_type_on_conflict - upsert condition

Returns: upgrade_plan_status_type


insert_upgrade_plan_steps

insert data into the table: "upgrade_plan_steps"

Arguments:

  • objects: [upgrade_plan_steps_insert_input!]! - the rows to be inserted
  • on_conflict: upgrade_plan_steps_on_conflict - upsert condition

Returns: upgrade_plan_steps_mutation_response


insert_upgrade_plan_steps_one

insert a single row into the table: "upgrade_plan_steps"

Arguments:

  • object: upgrade_plan_steps_insert_input! - the row to be inserted
  • on_conflict: upgrade_plan_steps_on_conflict - upsert condition

Returns: upgrade_plan_steps


insert_upgrade_plan_tasks

insert data into the table: "upgrade_plan_tasks"

Arguments:

  • objects: [upgrade_plan_tasks_insert_input!]! - the rows to be inserted
  • on_conflict: upgrade_plan_tasks_on_conflict - upsert condition

Returns: upgrade_plan_tasks_mutation_response


insert_upgrade_plan_tasks_one

insert a single row into the table: "upgrade_plan_tasks"

Arguments:

  • object: upgrade_plan_tasks_insert_input! - the row to be inserted
  • on_conflict: upgrade_plan_tasks_on_conflict - upsert condition

Returns: upgrade_plan_tasks


slo_config_create

Arguments:

  • request: SLOCreateRequest!

Returns: SLOResponse


slo_config_list

Arguments:

  • request: SLOListRequest!

Returns: SLOConfigListResponse


slo_config_update

Arguments:

  • request: SLOUpdateRequest!

Returns: SLOUpdateConfigResponse


update_configuration_store

update data of the table: "configuration_store"

Arguments:

  • _set: configuration_store_set_input - sets the columns of the filtered rows to the given values
  • where: configuration_store_bool_exp! - filter the rows which have to be updated

Returns: configuration_store_mutation_response


update_configuration_store_by_pk

update single row of the table: "configuration_store"

Arguments:

  • _set: configuration_store_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: configuration_store_pk_columns_input!

Returns: configuration_store


update_configuration_store_many

update multiples rows of table: "configuration_store"

Arguments:

  • updates: [configuration_store_updates!]! - updates to execute, in order

Returns: [configuration_store_mutation_response]


update_etl_jobs

update data of the table: "etl_jobs"

Arguments:

  • _append: etl_jobs_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: etl_jobs_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: etl_jobs_delete_elem_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_key: etl_jobs_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: etl_jobs_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: etl_jobs_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: etl_jobs_set_input - sets the columns of the filtered rows to the given values
  • where: etl_jobs_bool_exp! - filter the rows which have to be updated

Returns: etl_jobs_mutation_response


update_etl_jobs_by_pk

update single row of the table: "etl_jobs"

Arguments:

  • _append: etl_jobs_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: etl_jobs_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: etl_jobs_delete_elem_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_key: etl_jobs_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: etl_jobs_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: etl_jobs_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: etl_jobs_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: etl_jobs_pk_columns_input!

Returns: etl_jobs


update_etl_jobs_many

update multiples rows of table: "etl_jobs"

Arguments:

  • updates: [etl_jobs_updates!]! - updates to execute, in order

Returns: [etl_jobs_mutation_response]


update_feature

update data of the table: "feature"

Arguments:

  • _set: feature_set_input - sets the columns of the filtered rows to the given values
  • where: feature_bool_exp! - filter the rows which have to be updated

Returns: feature_mutation_response


update_feature_by_pk

update single row of the table: "feature"

Arguments:

  • _set: feature_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: feature_pk_columns_input!

Returns: feature


update_feature_flag

update data of the table: "feature_flag"

Arguments:

  • _set: feature_flag_set_input - sets the columns of the filtered rows to the given values
  • where: feature_flag_bool_exp! - filter the rows which have to be updated

Returns: feature_flag_mutation_response


update_feature_flag_by_pk

update single row of the table: "feature_flag"

Arguments:

  • _set: feature_flag_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: feature_flag_pk_columns_input!

Returns: feature_flag


update_feature_flag_many

update multiples rows of table: "feature_flag"

Arguments:

  • updates: [feature_flag_updates!]! - updates to execute, in order

Returns: [feature_flag_mutation_response]


update_feature_many

update multiples rows of table: "feature"

Arguments:

  • updates: [feature_updates!]! - updates to execute, in order

Returns: [feature_mutation_response]


update_slo_config

update data of the table: "slo_config"

Arguments:

  • _inc: slo_config_inc_input - increments the numeric columns with given value of the filtered values
  • _set: slo_config_set_input - sets the columns of the filtered rows to the given values
  • where: slo_config_bool_exp! - filter the rows which have to be updated

Returns: slo_config_mutation_response


update_slo_config_by_pk

update single row of the table: "slo_config"

Arguments:

  • _inc: slo_config_inc_input - increments the numeric columns with given value of the filtered values
  • _set: slo_config_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: slo_config_pk_columns_input!

Returns: slo_config


update_slo_config_many

update multiples rows of table: "slo_config"

Arguments:

  • updates: [slo_config_updates!]! - updates to execute, in order

Returns: [slo_config_mutation_response]


update_slo_report

update data of the table: "slo_report"

Arguments:

  • _inc: slo_report_inc_input - increments the numeric columns with given value of the filtered values
  • _set: slo_report_set_input - sets the columns of the filtered rows to the given values
  • where: slo_report_bool_exp! - filter the rows which have to be updated

Returns: slo_report_mutation_response


update_slo_report_by_pk

update single row of the table: "slo_report"

Arguments:

  • _inc: slo_report_inc_input - increments the numeric columns with given value of the filtered values
  • _set: slo_report_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: slo_report_pk_columns_input!

Returns: slo_report


update_slo_report_many

update multiples rows of table: "slo_report"

Arguments:

  • updates: [slo_report_updates!]! - updates to execute, in order

Returns: [slo_report_mutation_response]


update_slo_status

update data of the table: "slo_status"

Arguments:

  • _set: slo_status_set_input - sets the columns of the filtered rows to the given values
  • where: slo_status_bool_exp! - filter the rows which have to be updated

Returns: slo_status_mutation_response


update_slo_status_by_pk

update single row of the table: "slo_status"

Arguments:

  • _set: slo_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: slo_status_pk_columns_input!

Returns: slo_status


update_slo_status_many

update multiples rows of table: "slo_status"

Arguments:

  • updates: [slo_status_updates!]! - updates to execute, in order

Returns: [slo_status_mutation_response]


update_upgrade_plan

update data of the table: "upgrade_plan"

Arguments:

  • _set: upgrade_plan_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_bool_exp! - filter the rows which have to be updated

Returns: upgrade_plan_mutation_response


update_upgrade_plan_audit

update data of the table: "upgrade_plan_audit"

Arguments:

  • _set: upgrade_plan_audit_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_audit_bool_exp! - filter the rows which have to be updated

Returns: upgrade_plan_audit_mutation_response


update_upgrade_plan_audit_by_pk

update single row of the table: "upgrade_plan_audit"

Arguments:

  • _set: upgrade_plan_audit_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: upgrade_plan_audit_pk_columns_input!

Returns: upgrade_plan_audit


update_upgrade_plan_audit_many

update multiples rows of table: "upgrade_plan_audit"

Arguments:

  • updates: [upgrade_plan_audit_updates!]! - updates to execute, in order

Returns: [upgrade_plan_audit_mutation_response]


update_upgrade_plan_by_pk

update single row of the table: "upgrade_plan"

Arguments:

  • _set: upgrade_plan_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: upgrade_plan_pk_columns_input!

Returns: upgrade_plan


update_upgrade_plan_many

update multiples rows of table: "upgrade_plan"

Arguments:

  • updates: [upgrade_plan_updates!]! - updates to execute, in order

Returns: [upgrade_plan_mutation_response]


update_upgrade_plan_status_type

update data of the table: "upgrade_plan_status_type"

Arguments:

  • _set: upgrade_plan_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_status_type_bool_exp! - filter the rows which have to be updated

Returns: upgrade_plan_status_type_mutation_response


update_upgrade_plan_status_type_by_pk

update single row of the table: "upgrade_plan_status_type"

Arguments:

  • _set: upgrade_plan_status_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: upgrade_plan_status_type_pk_columns_input!

Returns: upgrade_plan_status_type


update_upgrade_plan_status_type_many

update multiples rows of table: "upgrade_plan_status_type"

Arguments:

  • updates: [upgrade_plan_status_type_updates!]! - updates to execute, in order

Returns: [upgrade_plan_status_type_mutation_response]


update_upgrade_plan_steps

update data of the table: "upgrade_plan_steps"

Arguments:

  • _inc: upgrade_plan_steps_inc_input - increments the numeric columns with given value of the filtered values
  • _set: upgrade_plan_steps_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_steps_bool_exp! - filter the rows which have to be updated

Returns: upgrade_plan_steps_mutation_response


update_upgrade_plan_steps_by_pk

update single row of the table: "upgrade_plan_steps"

Arguments:

  • _inc: upgrade_plan_steps_inc_input - increments the numeric columns with given value of the filtered values
  • _set: upgrade_plan_steps_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: upgrade_plan_steps_pk_columns_input!

Returns: upgrade_plan_steps


update_upgrade_plan_steps_many

update multiples rows of table: "upgrade_plan_steps"

Arguments:

  • updates: [upgrade_plan_steps_updates!]! - updates to execute, in order

Returns: [upgrade_plan_steps_mutation_response]


update_upgrade_plan_tasks

update data of the table: "upgrade_plan_tasks"

Arguments:

  • _inc: upgrade_plan_tasks_inc_input - increments the numeric columns with given value of the filtered values
  • _set: upgrade_plan_tasks_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_tasks_bool_exp! - filter the rows which have to be updated

Returns: upgrade_plan_tasks_mutation_response


update_upgrade_plan_tasks_by_pk

update single row of the table: "upgrade_plan_tasks"

Arguments:

  • _inc: upgrade_plan_tasks_inc_input - increments the numeric columns with given value of the filtered values
  • _set: upgrade_plan_tasks_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: upgrade_plan_tasks_pk_columns_input!

Returns: upgrade_plan_tasks


update_upgrade_plan_tasks_many

update multiples rows of table: "upgrade_plan_tasks"

Arguments:

  • updates: [upgrade_plan_tasks_updates!]! - updates to execute, in order

Returns: [upgrade_plan_tasks_mutation_response]


upgrade_execute_command

Arguments:

  • account_id: String!
  • command: String!
  • command_type: String!
  • plan_id: String!
  • step_id: String!
  • task_id: String!

Returns: UpgradeExecuteCommandResponse


upgrade_plan_create_one

Arguments:

  • account_id: String!
  • steps: [jsonb]

Returns: UpgradePlanResponse


upgrade_plan_task_upsert_one

Arguments:

  • account_id: String!
  • owner: String
  • plan_id: String!
  • status: String
  • step_id: String!
  • task_id: String!

Returns: task_response


upgrade_post_flight_check

Arguments:

  • account_id: String!
  • plan_id: String!

Returns: flight_check_response


upgrade_pre_flight_check

Arguments:

  • account_id: String!
  • plan_id: String!

Returns: flight_check_response


Data Warehouse

Data warehouse queries, pipes, databases, and query performance.

database_performance_insights

Arguments:

  • request: QueryDatabasePerformanceRequest!

Returns: QueryDatabasePerformanceResponse


delete_dw_pipe

delete data from the table: "dw_pipe"

Arguments:

  • where: dw_pipe_bool_exp! - filter the rows which have to be deleted

Returns: dw_pipe_mutation_response


delete_dw_pipe_by_pk

delete single row from the table: "dw_pipe"

Arguments:

  • id: uuid!

Returns: dw_pipe


delete_dw_pipe_usage

delete data from the table: "dw_pipe_usage"

Arguments:

  • where: dw_pipe_usage_bool_exp! - filter the rows which have to be deleted

Returns: dw_pipe_usage_mutation_response


delete_dw_pipe_usage_by_pk

delete single row from the table: "dw_pipe_usage"

Arguments:

  • id: uuid!

Returns: dw_pipe_usage


delete_dw_queries

delete data from the table: "dw_queries"

Arguments:

  • where: dw_queries_bool_exp! - filter the rows which have to be deleted

Returns: dw_queries_mutation_response


delete_dw_queries_by_pk

delete single row from the table: "dw_queries"

Arguments:

  • id: uuid!

Returns: dw_queries


delete_dw_query_profile_data

delete data from the table: "dw_query_profile_data"

Arguments:

  • where: dw_query_profile_data_bool_exp! - filter the rows which have to be deleted

Returns: dw_query_profile_data_mutation_response


delete_dw_query_profile_data_by_pk

delete single row from the table: "dw_query_profile_data"

Arguments:

  • id: uuid!

Returns: dw_query_profile_data


delete_dw_tables

delete data from the table: "dw_tables"

Arguments:

  • where: dw_tables_bool_exp! - filter the rows which have to be deleted

Returns: dw_tables_mutation_response


delete_dw_tables_by_pk

delete single row from the table: "dw_tables"

Arguments:

  • id: uuid!

Returns: dw_tables


insert_dw_pipe

insert data into the table: "dw_pipe"

Arguments:

  • objects: [dw_pipe_insert_input!]! - the rows to be inserted
  • on_conflict: dw_pipe_on_conflict - upsert condition

Returns: dw_pipe_mutation_response


insert_dw_pipe_one

insert a single row into the table: "dw_pipe"

Arguments:

  • object: dw_pipe_insert_input! - the row to be inserted
  • on_conflict: dw_pipe_on_conflict - upsert condition

Returns: dw_pipe


insert_dw_pipe_usage

insert data into the table: "dw_pipe_usage"

Arguments:

  • objects: [dw_pipe_usage_insert_input!]! - the rows to be inserted
  • on_conflict: dw_pipe_usage_on_conflict - upsert condition

Returns: dw_pipe_usage_mutation_response


insert_dw_pipe_usage_one

insert a single row into the table: "dw_pipe_usage"

Arguments:

  • object: dw_pipe_usage_insert_input! - the row to be inserted
  • on_conflict: dw_pipe_usage_on_conflict - upsert condition

Returns: dw_pipe_usage


insert_dw_queries

insert data into the table: "dw_queries"

Arguments:

  • objects: [dw_queries_insert_input!]! - the rows to be inserted
  • on_conflict: dw_queries_on_conflict - upsert condition

Returns: dw_queries_mutation_response


insert_dw_queries_one

insert a single row into the table: "dw_queries"

Arguments:

  • object: dw_queries_insert_input! - the row to be inserted
  • on_conflict: dw_queries_on_conflict - upsert condition

Returns: dw_queries


insert_dw_query_profile_data

insert data into the table: "dw_query_profile_data"

Arguments:

  • objects: [dw_query_profile_data_insert_input!]! - the rows to be inserted
  • on_conflict: dw_query_profile_data_on_conflict - upsert condition

Returns: dw_query_profile_data_mutation_response


insert_dw_query_profile_data_one

insert a single row into the table: "dw_query_profile_data"

Arguments:

  • object: dw_query_profile_data_insert_input! - the row to be inserted
  • on_conflict: dw_query_profile_data_on_conflict - upsert condition

Returns: dw_query_profile_data


insert_dw_tables

insert data into the table: "dw_tables"

Arguments:

  • objects: [dw_tables_insert_input!]! - the rows to be inserted
  • on_conflict: dw_tables_on_conflict - upsert condition

Returns: dw_tables_mutation_response


insert_dw_tables_one

insert a single row into the table: "dw_tables"

Arguments:

  • object: dw_tables_insert_input! - the row to be inserted
  • on_conflict: dw_tables_on_conflict - upsert condition

Returns: dw_tables


update_dw_pipe

update data of the table: "dw_pipe"

Arguments:

  • _inc: dw_pipe_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_pipe_set_input - sets the columns of the filtered rows to the given values
  • where: dw_pipe_bool_exp! - filter the rows which have to be updated

Returns: dw_pipe_mutation_response


update_dw_pipe_by_pk

update single row of the table: "dw_pipe"

Arguments:

  • _inc: dw_pipe_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_pipe_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: dw_pipe_pk_columns_input!

Returns: dw_pipe


update_dw_pipe_many

update multiples rows of table: "dw_pipe"

Arguments:

  • updates: [dw_pipe_updates!]! - updates to execute, in order

Returns: [dw_pipe_mutation_response]


update_dw_pipe_usage

update data of the table: "dw_pipe_usage"

Arguments:

  • _inc: dw_pipe_usage_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_pipe_usage_set_input - sets the columns of the filtered rows to the given values
  • where: dw_pipe_usage_bool_exp! - filter the rows which have to be updated

Returns: dw_pipe_usage_mutation_response


update_dw_pipe_usage_by_pk

update single row of the table: "dw_pipe_usage"

Arguments:

  • _inc: dw_pipe_usage_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_pipe_usage_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: dw_pipe_usage_pk_columns_input!

Returns: dw_pipe_usage


update_dw_pipe_usage_many

update multiples rows of table: "dw_pipe_usage"

Arguments:

  • updates: [dw_pipe_usage_updates!]! - updates to execute, in order

Returns: [dw_pipe_usage_mutation_response]


update_dw_queries

update data of the table: "dw_queries"

Arguments:

  • _append: dw_queries_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: dw_queries_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: dw_queries_delete_elem_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_key: dw_queries_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: dw_queries_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: dw_queries_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: dw_queries_set_input - sets the columns of the filtered rows to the given values
  • where: dw_queries_bool_exp! - filter the rows which have to be updated

Returns: dw_queries_mutation_response


update_dw_queries_by_pk

update single row of the table: "dw_queries"

Arguments:

  • _append: dw_queries_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: dw_queries_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: dw_queries_delete_elem_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_key: dw_queries_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: dw_queries_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: dw_queries_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: dw_queries_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: dw_queries_pk_columns_input!

Returns: dw_queries


update_dw_queries_many

update multiples rows of table: "dw_queries"

Arguments:

  • updates: [dw_queries_updates!]! - updates to execute, in order

Returns: [dw_queries_mutation_response]


update_dw_query_profile_data

update data of the table: "dw_query_profile_data"

Arguments:

  • _append: dw_query_profile_data_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: dw_query_profile_data_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: dw_query_profile_data_delete_elem_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_key: dw_query_profile_data_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: dw_query_profile_data_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: dw_query_profile_data_set_input - sets the columns of the filtered rows to the given values
  • where: dw_query_profile_data_bool_exp! - filter the rows which have to be updated

Returns: dw_query_profile_data_mutation_response


update_dw_query_profile_data_by_pk

update single row of the table: "dw_query_profile_data"

Arguments:

  • _append: dw_query_profile_data_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: dw_query_profile_data_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: dw_query_profile_data_delete_elem_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_key: dw_query_profile_data_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: dw_query_profile_data_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: dw_query_profile_data_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: dw_query_profile_data_pk_columns_input!

Returns: dw_query_profile_data


update_dw_query_profile_data_many

update multiples rows of table: "dw_query_profile_data"

Arguments:

  • updates: [dw_query_profile_data_updates!]! - updates to execute, in order

Returns: [dw_query_profile_data_mutation_response]


update_dw_tables

update data of the table: "dw_tables"

Arguments:

  • _inc: dw_tables_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_tables_set_input - sets the columns of the filtered rows to the given values
  • where: dw_tables_bool_exp! - filter the rows which have to be updated

Returns: dw_tables_mutation_response


update_dw_tables_by_pk

update single row of the table: "dw_tables"

Arguments:

  • _inc: dw_tables_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_tables_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: dw_tables_pk_columns_input!

Returns: dw_tables


update_dw_tables_many

update multiples rows of table: "dw_tables"

Arguments:

  • updates: [dw_tables_updates!]! - updates to execute, in order

Returns: [dw_tables_mutation_response]


Audit

Audit logs, user action history, and system activity tracking.

delete_audit

delete data from the table: "audit"

Arguments:

  • where: audit_bool_exp! - filter the rows which have to be deleted

Returns: audit_mutation_response


delete_audit_by_pk

delete single row from the table: "audit"

Arguments:

  • id: uuid!

Returns: audit


insert_audit

insert data into the table: "audit"

Arguments:

  • objects: [audit_insert_input!]! - the rows to be inserted
  • on_conflict: audit_on_conflict - upsert condition

Returns: audit_mutation_response


insert_audit_one

insert a single row into the table: "audit"

Arguments:

  • object: audit_insert_input! - the row to be inserted
  • on_conflict: audit_on_conflict - upsert condition

Returns: audit


update_audit

update data of the table: "audit"

Arguments:

  • _set: audit_set_input - sets the columns of the filtered rows to the given values
  • where: audit_bool_exp! - filter the rows which have to be updated

Returns: audit_mutation_response


update_audit_by_pk

update single row of the table: "audit"

Arguments:

  • _set: audit_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: audit_pk_columns_input!

Returns: audit


update_audit_many

update multiples rows of table: "audit"

Arguments:

  • updates: [audit_updates!]! - updates to execute, in order

Returns: [audit_mutation_response]


Other

Uncategorized operations.

create_auto_pilot_policy

to create new auto pilot policy

Arguments:

  • arg1: CreateApprovalInput!

Returns: CreateApprovalOutput


delete_account_env_type

delete data from the table: "account_env_type"

Arguments:

  • where: account_env_type_bool_exp! - filter the rows which have to be deleted

Returns: account_env_type_mutation_response


delete_account_env_type_by_pk

delete single row from the table: "account_env_type"

Arguments:

  • value: String!

Returns: account_env_type


delete_account_purpose_type

delete data from the table: "account_purpose_type"

Arguments:

  • where: account_purpose_type_bool_exp! - filter the rows which have to be deleted

Returns: account_purpose_type_mutation_response


delete_account_purpose_type_by_pk

delete single row from the table: "account_purpose_type"

Arguments:

  • value: String!

Returns: account_purpose_type


delete_db_type

delete data from the table: "db_type"

Arguments:

  • where: db_type_bool_exp! - filter the rows which have to be deleted

Returns: db_type_mutation_response


delete_db_type_by_pk

delete single row from the table: "db_type"

Arguments:

  • value: String!

Returns: db_type


delete_group_roles

delete data from the table: "group_roles"

Arguments:

  • where: group_roles_bool_exp! - filter the rows which have to be deleted

Returns: group_roles_mutation_response


delete_group_roles_by_pk

delete single row from the table: "group_roles"

Arguments:

  • id: uuid!

Returns: group_roles


delete_marketplace_customers

delete data from the table: "marketplace_customers"

Arguments:

  • where: marketplace_customers_bool_exp! - filter the rows which have to be deleted

Returns: marketplace_customers_mutation_response


delete_marketplace_customers_by_pk

delete single row from the table: "marketplace_customers"

Arguments:

  • id: uuid!

Returns: marketplace_customers


delete_projects

delete data from the table: "projects"

Arguments:

  • where: projects_bool_exp! - filter the rows which have to be deleted

Returns: projects_mutation_response


delete_projects_by_pk

delete single row from the table: "projects"

Arguments:

  • id: uuid!

Returns: projects


delete_runbook_action

delete data from the table: "runbook_action"

Arguments:

  • where: runbook_action_bool_exp! - filter the rows which have to be deleted

Returns: runbook_action_mutation_response


delete_runbook_action_by_pk

delete single row from the table: "runbook_action"

Arguments:

  • id: uuid!

Returns: runbook_action


delete_runbook_action_library

delete data from the table: "runbook_action_library"

Arguments:

  • where: runbook_action_library_bool_exp! - filter the rows which have to be deleted

Returns: runbook_action_library_mutation_response


delete_runbook_action_library_by_pk

delete single row from the table: "runbook_action_library"

Arguments:

  • id: uuid!

Returns: runbook_action_library


delete_runbook_action_status

delete data from the table: "runbook_action_status"

Arguments:

  • where: runbook_action_status_bool_exp! - filter the rows which have to be deleted

Returns: runbook_action_status_mutation_response


delete_runbook_action_status_by_pk

delete single row from the table: "runbook_action_status"

Arguments:

  • value: String!

Returns: runbook_action_status


delete_runbook_task_output

delete data from the table: "runbook_task_output"

Arguments:

  • where: runbook_task_output_bool_exp! - filter the rows which have to be deleted

Returns: runbook_task_output_mutation_response


delete_runbook_task_output_by_pk

delete single row from the table: "runbook_task_output"

Arguments:

  • id: uuid!

Returns: runbook_task_output


delete_schedule_unit_type

delete data from the table: "schedule_unit_type"

Arguments:

  • where: schedule_unit_type_bool_exp! - filter the rows which have to be deleted

Returns: schedule_unit_type_mutation_response


delete_schedule_unit_type_by_pk

delete single row from the table: "schedule_unit_type"

Arguments:

  • value: String!

Returns: schedule_unit_type


delete_sent_notifications

delete data from the table: "sent_notifications"

Arguments:

  • where: sent_notifications_bool_exp! - filter the rows which have to be deleted

Returns: sent_notifications_mutation_response


delete_sent_notifications_by_pk

delete single row from the table: "sent_notifications"

Arguments:

  • id: uuid!

Returns: sent_notifications


generate_node_recommendations

To get node recommendations

Arguments:

  • account: String!
  • buffer_percentage: Int
  • graviton: Boolean!
  • min_cpu_per_node: Int
  • min_memory_per_node: Int
  • min_nodes: Int
  • number_of_recommendations: Int
  • preferred_instance_groups: [String!]!
  • tenant: String!

Returns: generate_cluster_recommendations_output


insert_account_env_type

insert data into the table: "account_env_type"

Arguments:

  • objects: [account_env_type_insert_input!]! - the rows to be inserted
  • on_conflict: account_env_type_on_conflict - upsert condition

Returns: account_env_type_mutation_response


insert_account_env_type_one

insert a single row into the table: "account_env_type"

Arguments:

  • object: account_env_type_insert_input! - the row to be inserted
  • on_conflict: account_env_type_on_conflict - upsert condition

Returns: account_env_type


insert_account_purpose_type

insert data into the table: "account_purpose_type"

Arguments:

  • objects: [account_purpose_type_insert_input!]! - the rows to be inserted
  • on_conflict: account_purpose_type_on_conflict - upsert condition

Returns: account_purpose_type_mutation_response


insert_account_purpose_type_one

insert a single row into the table: "account_purpose_type"

Arguments:

  • object: account_purpose_type_insert_input! - the row to be inserted
  • on_conflict: account_purpose_type_on_conflict - upsert condition

Returns: account_purpose_type


insert_db_type

insert data into the table: "db_type"

Arguments:

  • objects: [db_type_insert_input!]! - the rows to be inserted
  • on_conflict: db_type_on_conflict - upsert condition

Returns: db_type_mutation_response


insert_db_type_one

insert a single row into the table: "db_type"

Arguments:

  • object: db_type_insert_input! - the row to be inserted
  • on_conflict: db_type_on_conflict - upsert condition

Returns: db_type


insert_group_roles

insert data into the table: "group_roles"

Arguments:

  • objects: [group_roles_insert_input!]! - the rows to be inserted
  • on_conflict: group_roles_on_conflict - upsert condition

Returns: group_roles_mutation_response


insert_group_roles_one

insert a single row into the table: "group_roles"

Arguments:

  • object: group_roles_insert_input! - the row to be inserted
  • on_conflict: group_roles_on_conflict - upsert condition

Returns: group_roles


insert_marketplace_customers

insert data into the table: "marketplace_customers"

Arguments:

  • objects: [marketplace_customers_insert_input!]! - the rows to be inserted
  • on_conflict: marketplace_customers_on_conflict - upsert condition

Returns: marketplace_customers_mutation_response


insert_marketplace_customers_one

insert a single row into the table: "marketplace_customers"

Arguments:

  • object: marketplace_customers_insert_input! - the row to be inserted
  • on_conflict: marketplace_customers_on_conflict - upsert condition

Returns: marketplace_customers


insert_projects

insert data into the table: "projects"

Arguments:

  • objects: [projects_insert_input!]! - the rows to be inserted
  • on_conflict: projects_on_conflict - upsert condition

Returns: projects_mutation_response


insert_projects_one

insert a single row into the table: "projects"

Arguments:

  • object: projects_insert_input! - the row to be inserted
  • on_conflict: projects_on_conflict - upsert condition

Returns: projects


insert_runbook_action

insert data into the table: "runbook_action"

Arguments:

  • objects: [runbook_action_insert_input!]! - the rows to be inserted
  • on_conflict: runbook_action_on_conflict - upsert condition

Returns: runbook_action_mutation_response


insert_runbook_action_library

insert data into the table: "runbook_action_library"

Arguments:

  • objects: [runbook_action_library_insert_input!]! - the rows to be inserted
  • on_conflict: runbook_action_library_on_conflict - upsert condition

Returns: runbook_action_library_mutation_response


insert_runbook_action_library_one

insert a single row into the table: "runbook_action_library"

Arguments:

  • object: runbook_action_library_insert_input! - the row to be inserted
  • on_conflict: runbook_action_library_on_conflict - upsert condition

Returns: runbook_action_library


insert_runbook_action_one

insert a single row into the table: "runbook_action"

Arguments:

  • object: runbook_action_insert_input! - the row to be inserted
  • on_conflict: runbook_action_on_conflict - upsert condition

Returns: runbook_action


insert_runbook_action_status

insert data into the table: "runbook_action_status"

Arguments:

  • objects: [runbook_action_status_insert_input!]! - the rows to be inserted
  • on_conflict: runbook_action_status_on_conflict - upsert condition

Returns: runbook_action_status_mutation_response


insert_runbook_action_status_one

insert a single row into the table: "runbook_action_status"

Arguments:

  • object: runbook_action_status_insert_input! - the row to be inserted
  • on_conflict: runbook_action_status_on_conflict - upsert condition

Returns: runbook_action_status


insert_runbook_task_output

insert data into the table: "runbook_task_output"

Arguments:

  • objects: [runbook_task_output_insert_input!]! - the rows to be inserted
  • on_conflict: runbook_task_output_on_conflict - upsert condition

Returns: runbook_task_output_mutation_response


insert_runbook_task_output_one

insert a single row into the table: "runbook_task_output"

Arguments:

  • object: runbook_task_output_insert_input! - the row to be inserted
  • on_conflict: runbook_task_output_on_conflict - upsert condition

Returns: runbook_task_output


insert_schedule_unit_type

insert data into the table: "schedule_unit_type"

Arguments:

  • objects: [schedule_unit_type_insert_input!]! - the rows to be inserted
  • on_conflict: schedule_unit_type_on_conflict - upsert condition

Returns: schedule_unit_type_mutation_response


insert_schedule_unit_type_one

insert a single row into the table: "schedule_unit_type"

Arguments:

  • object: schedule_unit_type_insert_input! - the row to be inserted
  • on_conflict: schedule_unit_type_on_conflict - upsert condition

Returns: schedule_unit_type


insert_sent_notifications

insert data into the table: "sent_notifications"

Arguments:

  • objects: [sent_notifications_insert_input!]! - the rows to be inserted
  • on_conflict: sent_notifications_on_conflict - upsert condition

Returns: sent_notifications_mutation_response


insert_sent_notifications_one

insert a single row into the table: "sent_notifications"

Arguments:

  • object: sent_notifications_insert_input! - the row to be inserted
  • on_conflict: sent_notifications_on_conflict - upsert condition

Returns: sent_notifications


list_insights

Arguments:

  • request: InsightRequest!

Returns: InsightResponse


runbook_action_status

action to change status of runbook action

Arguments:

  • arg1: runbook_action_status_input!

Returns: runbook_action_status_output


trigger_anomaly_execute

Arguments:

  • request: TriggerAnomalyExecuteRequest!

Returns: TriggerAnomalyExecuteResponse


update_account_env_type

update data of the table: "account_env_type"

Arguments:

  • _set: account_env_type_set_input - sets the columns of the filtered rows to the given values
  • where: account_env_type_bool_exp! - filter the rows which have to be updated

Returns: account_env_type_mutation_response


update_account_env_type_by_pk

update single row of the table: "account_env_type"

Arguments:

  • _set: account_env_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: account_env_type_pk_columns_input!

Returns: account_env_type


update_account_env_type_many

update multiples rows of table: "account_env_type"

Arguments:

  • updates: [account_env_type_updates!]! - updates to execute, in order

Returns: [account_env_type_mutation_response]


update_account_purpose_type

update data of the table: "account_purpose_type"

Arguments:

  • _set: account_purpose_type_set_input - sets the columns of the filtered rows to the given values
  • where: account_purpose_type_bool_exp! - filter the rows which have to be updated

Returns: account_purpose_type_mutation_response


update_account_purpose_type_by_pk

update single row of the table: "account_purpose_type"

Arguments:

  • _set: account_purpose_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: account_purpose_type_pk_columns_input!

Returns: account_purpose_type


update_account_purpose_type_many

update multiples rows of table: "account_purpose_type"

Arguments:

  • updates: [account_purpose_type_updates!]! - updates to execute, in order

Returns: [account_purpose_type_mutation_response]


update_db_type

update data of the table: "db_type"

Arguments:

  • _set: db_type_set_input - sets the columns of the filtered rows to the given values
  • where: db_type_bool_exp! - filter the rows which have to be updated

Returns: db_type_mutation_response


update_db_type_by_pk

update single row of the table: "db_type"

Arguments:

  • _set: db_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: db_type_pk_columns_input!

Returns: db_type


update_db_type_many

update multiples rows of table: "db_type"

Arguments:

  • updates: [db_type_updates!]! - updates to execute, in order

Returns: [db_type_mutation_response]


update_group_roles

update data of the table: "group_roles"

Arguments:

  • _set: group_roles_set_input - sets the columns of the filtered rows to the given values
  • where: group_roles_bool_exp! - filter the rows which have to be updated

Returns: group_roles_mutation_response


update_group_roles_by_pk

update single row of the table: "group_roles"

Arguments:

  • _set: group_roles_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: group_roles_pk_columns_input!

Returns: group_roles


update_group_roles_many

update multiples rows of table: "group_roles"

Arguments:

  • updates: [group_roles_updates!]! - updates to execute, in order

Returns: [group_roles_mutation_response]


update_marketplace_customers

update data of the table: "marketplace_customers"

Arguments:

  • _append: marketplace_customers_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: marketplace_customers_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: marketplace_customers_delete_elem_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_key: marketplace_customers_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: marketplace_customers_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: marketplace_customers_set_input - sets the columns of the filtered rows to the given values
  • where: marketplace_customers_bool_exp! - filter the rows which have to be updated

Returns: marketplace_customers_mutation_response


update_marketplace_customers_by_pk

update single row of the table: "marketplace_customers"

Arguments:

  • _append: marketplace_customers_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: marketplace_customers_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: marketplace_customers_delete_elem_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_key: marketplace_customers_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: marketplace_customers_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: marketplace_customers_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: marketplace_customers_pk_columns_input!

Returns: marketplace_customers


update_marketplace_customers_many

update multiples rows of table: "marketplace_customers"

Arguments:

  • updates: [marketplace_customers_updates!]! - updates to execute, in order

Returns: [marketplace_customers_mutation_response]


update_projects

update data of the table: "projects"

Arguments:

  • _inc: projects_inc_input - increments the numeric columns with given value of the filtered values
  • _set: projects_set_input - sets the columns of the filtered rows to the given values
  • where: projects_bool_exp! - filter the rows which have to be updated

Returns: projects_mutation_response


update_projects_by_pk

update single row of the table: "projects"

Arguments:

  • _inc: projects_inc_input - increments the numeric columns with given value of the filtered values
  • _set: projects_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: projects_pk_columns_input!

Returns: projects


update_projects_many

update multiples rows of table: "projects"

Arguments:

  • updates: [projects_updates!]! - updates to execute, in order

Returns: [projects_mutation_response]


update_runbook_action

update data of the table: "runbook_action"

Arguments:

  • _append: runbook_action_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: runbook_action_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: runbook_action_delete_elem_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_key: runbook_action_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: runbook_action_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: runbook_action_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_action_bool_exp! - filter the rows which have to be updated

Returns: runbook_action_mutation_response


update_runbook_action_by_pk

update single row of the table: "runbook_action"

Arguments:

  • _append: runbook_action_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: runbook_action_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: runbook_action_delete_elem_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_key: runbook_action_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: runbook_action_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: runbook_action_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: runbook_action_pk_columns_input!

Returns: runbook_action


update_runbook_action_library

update data of the table: "runbook_action_library"

Arguments:

  • _append: runbook_action_library_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: runbook_action_library_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: runbook_action_library_delete_elem_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_key: runbook_action_library_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: runbook_action_library_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: runbook_action_library_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_action_library_bool_exp! - filter the rows which have to be updated

Returns: runbook_action_library_mutation_response


update_runbook_action_library_by_pk

update single row of the table: "runbook_action_library"

Arguments:

  • _append: runbook_action_library_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: runbook_action_library_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: runbook_action_library_delete_elem_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_key: runbook_action_library_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: runbook_action_library_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: runbook_action_library_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: runbook_action_library_pk_columns_input!

Returns: runbook_action_library


update_runbook_action_library_many

update multiples rows of table: "runbook_action_library"

Arguments:

  • updates: [runbook_action_library_updates!]! - updates to execute, in order

Returns: [runbook_action_library_mutation_response]


update_runbook_action_many

update multiples rows of table: "runbook_action"

Arguments:

  • updates: [runbook_action_updates!]! - updates to execute, in order

Returns: [runbook_action_mutation_response]


update_runbook_action_status

update data of the table: "runbook_action_status"

Arguments:

  • _set: runbook_action_status_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_action_status_bool_exp! - filter the rows which have to be updated

Returns: runbook_action_status_mutation_response


update_runbook_action_status_by_pk

update single row of the table: "runbook_action_status"

Arguments:

  • _set: runbook_action_status_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: runbook_action_status_pk_columns_input!

Returns: runbook_action_status


update_runbook_action_status_many

update multiples rows of table: "runbook_action_status"

Arguments:

  • updates: [runbook_action_status_updates!]! - updates to execute, in order

Returns: [runbook_action_status_mutation_response]


update_runbook_task_output

update data of the table: "runbook_task_output"

Arguments:

  • _set: runbook_task_output_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_task_output_bool_exp! - filter the rows which have to be updated

Returns: runbook_task_output_mutation_response


update_runbook_task_output_by_pk

update single row of the table: "runbook_task_output"

Arguments:

  • _set: runbook_task_output_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: runbook_task_output_pk_columns_input!

Returns: runbook_task_output


update_runbook_task_output_many

update multiples rows of table: "runbook_task_output"

Arguments:

  • updates: [runbook_task_output_updates!]! - updates to execute, in order

Returns: [runbook_task_output_mutation_response]


update_schedule_unit_type

update data of the table: "schedule_unit_type"

Arguments:

  • _set: schedule_unit_type_set_input - sets the columns of the filtered rows to the given values
  • where: schedule_unit_type_bool_exp! - filter the rows which have to be updated

Returns: schedule_unit_type_mutation_response


update_schedule_unit_type_by_pk

update single row of the table: "schedule_unit_type"

Arguments:

  • _set: schedule_unit_type_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: schedule_unit_type_pk_columns_input!

Returns: schedule_unit_type


update_schedule_unit_type_many

update multiples rows of table: "schedule_unit_type"

Arguments:

  • updates: [schedule_unit_type_updates!]! - updates to execute, in order

Returns: [schedule_unit_type_mutation_response]


update_sent_notifications

update data of the table: "sent_notifications"

Arguments:

  • _set: sent_notifications_set_input - sets the columns of the filtered rows to the given values
  • where: sent_notifications_bool_exp! - filter the rows which have to be updated

Returns: sent_notifications_mutation_response


update_sent_notifications_by_pk

update single row of the table: "sent_notifications"

Arguments:

  • _set: sent_notifications_set_input - sets the columns of the filtered rows to the given values
  • pk_columns: sent_notifications_pk_columns_input!

Returns: sent_notifications


update_sent_notifications_many

update multiples rows of table: "sent_notifications"

Arguments:

  • updates: [sent_notifications_updates!]! - updates to execute, in order

Returns: [sent_notifications_mutation_response]


update_status_auto_pilot_approval

to approve or reject auto pilot approval

Arguments:

  • arg1: AutopilotApprovalUpdateInput!

Returns: AutopilotApprovalUpdateOutput


validate_cloud_credentials

Validate cloud provider credentials and check required API permissions (Azure, GCP)

Arguments:

  • object: ValidateCloudCredentialsInput!

Returns: ValidateCloudCredentialsOutput


account_env_type

fetch data from the table: "account_env_type"

Arguments:

  • distinct_on: [account_env_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_env_type_order_by!] - sort the rows by one or more columns
  • where: account_env_type_bool_exp - filter the rows returned

Returns: [account_env_type!]!


account_env_type_aggregate

fetch aggregated fields from the table: "account_env_type"

Arguments:

  • distinct_on: [account_env_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_env_type_order_by!] - sort the rows by one or more columns
  • where: account_env_type_bool_exp - filter the rows returned

Returns: account_env_type_aggregate!


account_env_type_by_pk

fetch data from the table: "account_env_type" using primary key columns

Arguments:

  • value: String!

Returns: account_env_type


account_env_type_stream

fetch data from the table in a streaming manner: "account_env_type"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [account_env_type_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: account_env_type_bool_exp - filter the rows returned

Returns: [account_env_type!]!


account_purpose_type

fetch data from the table: "account_purpose_type"

Arguments:

  • distinct_on: [account_purpose_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_purpose_type_order_by!] - sort the rows by one or more columns
  • where: account_purpose_type_bool_exp - filter the rows returned

Returns: [account_purpose_type!]!


account_purpose_type_aggregate

fetch aggregated fields from the table: "account_purpose_type"

Arguments:

  • distinct_on: [account_purpose_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [account_purpose_type_order_by!] - sort the rows by one or more columns
  • where: account_purpose_type_bool_exp - filter the rows returned

Returns: account_purpose_type_aggregate!


account_purpose_type_by_pk

fetch data from the table: "account_purpose_type" using primary key columns

Arguments:

  • value: String!

Returns: account_purpose_type


account_purpose_type_stream

fetch data from the table in a streaming manner: "account_purpose_type"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [account_purpose_type_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: account_purpose_type_bool_exp - filter the rows returned

Returns: [account_purpose_type!]!


db_type

fetch data from the table: "db_type"

Arguments:

  • distinct_on: [db_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [db_type_order_by!] - sort the rows by one or more columns
  • where: db_type_bool_exp - filter the rows returned

Returns: [db_type!]!


db_type_aggregate

fetch aggregated fields from the table: "db_type"

Arguments:

  • distinct_on: [db_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [db_type_order_by!] - sort the rows by one or more columns
  • where: db_type_bool_exp - filter the rows returned

Returns: db_type_aggregate!


db_type_by_pk

fetch data from the table: "db_type" using primary key columns

Arguments:

  • value: String!

Returns: db_type


db_type_stream

fetch data from the table in a streaming manner: "db_type"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [db_type_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: db_type_bool_exp - filter the rows returned

Returns: [db_type!]!


group_roles

An array relationship

Arguments:

  • distinct_on: [group_roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [group_roles_order_by!] - sort the rows by one or more columns
  • where: group_roles_bool_exp - filter the rows returned

Returns: [group_roles!]!


group_roles_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [group_roles_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [group_roles_order_by!] - sort the rows by one or more columns
  • where: group_roles_bool_exp - filter the rows returned

Returns: group_roles_aggregate!


group_roles_by_pk

fetch data from the table: "group_roles" using primary key columns

Arguments:

  • id: uuid!

Returns: group_roles


group_roles_stream

fetch data from the table in a streaming manner: "group_roles"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [group_roles_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: group_roles_bool_exp - filter the rows returned

Returns: [group_roles!]!


marketplace_customers

fetch data from the table: "marketplace_customers"

Arguments:

  • distinct_on: [marketplace_customers_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [marketplace_customers_order_by!] - sort the rows by one or more columns
  • where: marketplace_customers_bool_exp - filter the rows returned

Returns: [marketplace_customers!]!


marketplace_customers_aggregate

fetch aggregated fields from the table: "marketplace_customers"

Arguments:

  • distinct_on: [marketplace_customers_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [marketplace_customers_order_by!] - sort the rows by one or more columns
  • where: marketplace_customers_bool_exp - filter the rows returned

Returns: marketplace_customers_aggregate!


marketplace_customers_by_pk

fetch data from the table: "marketplace_customers" using primary key columns

Arguments:

  • id: uuid!

Returns: marketplace_customers


marketplace_customers_stream

fetch data from the table in a streaming manner: "marketplace_customers"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [marketplace_customers_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: marketplace_customers_bool_exp - filter the rows returned

Returns: [marketplace_customers!]!


projects

An array relationship

Arguments:

  • distinct_on: [projects_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [projects_order_by!] - sort the rows by one or more columns
  • where: projects_bool_exp - filter the rows returned

Returns: [projects!]!


projects_aggregate

An aggregate relationship

Arguments:

  • distinct_on: [projects_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [projects_order_by!] - sort the rows by one or more columns
  • where: projects_bool_exp - filter the rows returned

Returns: projects_aggregate!


projects_by_pk

fetch data from the table: "projects" using primary key columns

Arguments:

  • id: uuid!

Returns: projects


projects_stream

fetch data from the table in a streaming manner: "projects"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [projects_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: projects_bool_exp - filter the rows returned

Returns: [projects!]!


runbook_action

fetch data from the table: "runbook_action"

Arguments:

  • distinct_on: [runbook_action_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_order_by!] - sort the rows by one or more columns
  • where: runbook_action_bool_exp - filter the rows returned

Returns: [runbook_action!]!


runbook_action_aggregate

fetch aggregated fields from the table: "runbook_action"

Arguments:

  • distinct_on: [runbook_action_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_order_by!] - sort the rows by one or more columns
  • where: runbook_action_bool_exp - filter the rows returned

Returns: runbook_action_aggregate!


runbook_action_by_pk

fetch data from the table: "runbook_action" using primary key columns

Arguments:

  • id: uuid!

Returns: runbook_action


runbook_action_library

fetch data from the table: "runbook_action_library"

Arguments:

  • distinct_on: [runbook_action_library_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_library_order_by!] - sort the rows by one or more columns
  • where: runbook_action_library_bool_exp - filter the rows returned

Returns: [runbook_action_library!]!


runbook_action_library_aggregate

fetch aggregated fields from the table: "runbook_action_library"

Arguments:

  • distinct_on: [runbook_action_library_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_library_order_by!] - sort the rows by one or more columns
  • where: runbook_action_library_bool_exp - filter the rows returned

Returns: runbook_action_library_aggregate!


runbook_action_library_by_pk

fetch data from the table: "runbook_action_library" using primary key columns

Arguments:

  • id: uuid!

Returns: runbook_action_library


runbook_action_library_stream

fetch data from the table in a streaming manner: "runbook_action_library"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [runbook_action_library_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: runbook_action_library_bool_exp - filter the rows returned

Returns: [runbook_action_library!]!


runbook_action_status

fetch data from the table: "runbook_action_status"

Arguments:

  • distinct_on: [runbook_action_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_status_order_by!] - sort the rows by one or more columns
  • where: runbook_action_status_bool_exp - filter the rows returned

Returns: [runbook_action_status!]!


runbook_action_status_aggregate

fetch aggregated fields from the table: "runbook_action_status"

Arguments:

  • distinct_on: [runbook_action_status_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_action_status_order_by!] - sort the rows by one or more columns
  • where: runbook_action_status_bool_exp - filter the rows returned

Returns: runbook_action_status_aggregate!


runbook_action_status_by_pk

fetch data from the table: "runbook_action_status" using primary key columns

Arguments:

  • value: String!

Returns: runbook_action_status


runbook_action_status_stream

fetch data from the table in a streaming manner: "runbook_action_status"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [runbook_action_status_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: runbook_action_status_bool_exp - filter the rows returned

Returns: [runbook_action_status!]!


runbook_action_stream

fetch data from the table in a streaming manner: "runbook_action"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [runbook_action_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: runbook_action_bool_exp - filter the rows returned

Returns: [runbook_action!]!


runbook_task_output

fetch data from the table: "runbook_task_output"

Arguments:

  • distinct_on: [runbook_task_output_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_task_output_order_by!] - sort the rows by one or more columns
  • where: runbook_task_output_bool_exp - filter the rows returned

Returns: [runbook_task_output!]!


runbook_task_output_aggregate

fetch aggregated fields from the table: "runbook_task_output"

Arguments:

  • distinct_on: [runbook_task_output_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [runbook_task_output_order_by!] - sort the rows by one or more columns
  • where: runbook_task_output_bool_exp - filter the rows returned

Returns: runbook_task_output_aggregate!


runbook_task_output_by_pk

fetch data from the table: "runbook_task_output" using primary key columns

Arguments:

  • id: uuid!

Returns: runbook_task_output


runbook_task_output_stream

fetch data from the table in a streaming manner: "runbook_task_output"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [runbook_task_output_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: runbook_task_output_bool_exp - filter the rows returned

Returns: [runbook_task_output!]!


schedule_unit_type

fetch data from the table: "schedule_unit_type"

Arguments:

  • distinct_on: [schedule_unit_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [schedule_unit_type_order_by!] - sort the rows by one or more columns
  • where: schedule_unit_type_bool_exp - filter the rows returned

Returns: [schedule_unit_type!]!


schedule_unit_type_aggregate

fetch aggregated fields from the table: "schedule_unit_type"

Arguments:

  • distinct_on: [schedule_unit_type_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [schedule_unit_type_order_by!] - sort the rows by one or more columns
  • where: schedule_unit_type_bool_exp - filter the rows returned

Returns: schedule_unit_type_aggregate!


schedule_unit_type_by_pk

fetch data from the table: "schedule_unit_type" using primary key columns

Arguments:

  • value: String!

Returns: schedule_unit_type


schedule_unit_type_stream

fetch data from the table in a streaming manner: "schedule_unit_type"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [schedule_unit_type_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: schedule_unit_type_bool_exp - filter the rows returned

Returns: [schedule_unit_type!]!


sent_notifications

fetch data from the table: "sent_notifications"

Arguments:

  • distinct_on: [sent_notifications_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [sent_notifications_order_by!] - sort the rows by one or more columns
  • where: sent_notifications_bool_exp - filter the rows returned

Returns: [sent_notifications!]!


sent_notifications_aggregate

fetch aggregated fields from the table: "sent_notifications"

Arguments:

  • distinct_on: [sent_notifications_select_column!] - distinct select on columns
  • limit: Int - limit the number of rows returned
  • offset: Int - skip the first n rows. Use only with order_by
  • order_by: [sent_notifications_order_by!] - sort the rows by one or more columns
  • where: sent_notifications_bool_exp - filter the rows returned

Returns: sent_notifications_aggregate!


sent_notifications_by_pk

fetch data from the table: "sent_notifications" using primary key columns

Arguments:

  • id: uuid!

Returns: sent_notifications


sent_notifications_stream

fetch data from the table in a streaming manner: "sent_notifications"

Arguments:

  • batch_size: Int! - maximum number of rows returned in a single batch
  • cursor: [sent_notifications_stream_cursor_input]! - cursor to stream the results returned by the query
  • where: sent_notifications_bool_exp - filter the rows returned

Returns: [sent_notifications!]!


Types

Core Types

Primary entity types, response types, and enums.

Cost Management

billing

columns and relationships of "billing"

Fields:

  • amount_due: float8!
  • created_at: timestamp!
  • id: uuid!
  • last_billed_amount: float8!
  • last_billed_date: timestamp
  • tenant_id: uuid!
  • tier: String
  • total_paid: float8!
  • updated_at: timestamp!
billing_aggregate

aggregated selection of "billing"

Fields:

  • aggregate: billing_aggregate_fields
  • nodes: [billing!]!
billing_updates

Fields:

  • _inc: billing_inc_input - increments the numeric columns with given value of the filtered values
  • _set: billing_set_input - sets the columns of the filtered rows to the given values
  • where: billing_bool_exp! - filter the rows which have to be updated
billing_usage_cost

columns and relationships of "billing_usage_cost"

Fields:

  • account_id: uuid
  • billing_date: timestamp!
  • cloud_account: cloud_accounts - An object relationship
  • cost_per_unit: float8!
  • created_at: timestamp!
  • id: uuid!
  • name: String!
  • service_name: String!
  • tenant_id: uuid!
  • total_cost: float8!
  • units: Int!
  • updated_at: timestamp!
billing_usage_cost_aggregate

aggregated selection of "billing_usage_cost"

Fields:

  • aggregate: billing_usage_cost_aggregate_fields
  • nodes: [billing_usage_cost!]!
billing_usage_cost_updates

Fields:

  • _inc: billing_usage_cost_inc_input - increments the numeric columns with given value of the filtered values
  • _set: billing_usage_cost_set_input - sets the columns of the filtered rows to the given values
  • where: billing_usage_cost_bool_exp! - filter the rows which have to be updated
businessunit_funding

columns and relationships of "businessunit_funding"

Fields:

  • amount: float8!
  • businessUnitByBusinessUnit: business_unit! - An object relationship
  • business_unit: uuid!
  • created_at: timestamp!
  • created_by: uuid!
  • end_date: timestamp
  • fundingSourceByFundingSource: funding_sources! - An object relationship
  • funding_source: uuid!
  • id: uuid!
  • planned_amount: float8!
  • project_fundings: [project_fundings!]! - An array relationship
  • project_fundings_aggregate: project_fundings_aggregate! - An aggregate relationship
  • start_date: timestamp
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
businessunit_funding_aggregate

aggregated selection of "businessunit_funding"

Fields:

  • aggregate: businessunit_funding_aggregate_fields
  • nodes: [businessunit_funding!]!
businessunit_funding_aggregate_bool_exp_avg

Fields:

  • arguments: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_corr

Fields:

  • arguments: businessunit_funding_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_corr_arguments

Fields:

  • X: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_corr_arguments_columns!
  • Y: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_corr_arguments_columns!
businessunit_funding_aggregate_bool_exp_covar_samp

Fields:

  • arguments: businessunit_funding_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_covar_samp_arguments_columns!
businessunit_funding_aggregate_bool_exp_max

Fields:

  • arguments: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_min

Fields:

  • arguments: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_sum

Fields:

  • arguments: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_aggregate_bool_exp_var_samp

Fields:

  • arguments: businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: float8_comparison_exp!
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_avg_arguments_columns

select "businessunit_funding_aggregate_bool_exp_avg_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_corr_arguments_columns

select "businessunit_funding_aggregate_bool_exp_corr_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_covar_samp_arguments_columns

select "businessunit_funding_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_max_arguments_columns

select "businessunit_funding_aggregate_bool_exp_max_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_min_arguments_columns

select "businessunit_funding_aggregate_bool_exp_min_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_stddev_samp_arguments_columns

select "businessunit_funding_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_sum_arguments_columns

select "businessunit_funding_aggregate_bool_exp_sum_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_select_column_businessunit_funding_aggregate_bool_exp_var_samp_arguments_columns

select "businessunit_funding_aggregate_bool_exp_var_samp_arguments_columns" columns of table "businessunit_funding"

Values:

  • amount - column name
  • planned_amount - column name
businessunit_funding_updates

Fields:

  • _inc: businessunit_funding_inc_input - increments the numeric columns with given value of the filtered values
  • _set: businessunit_funding_set_input - sets the columns of the filtered rows to the given values
  • where: businessunit_funding_bool_exp! - filter the rows which have to be updated
funding_sources

columns and relationships of "funding_sources"

Fields:

  • amount: float8!
  • businessunit_funding_sources: [businessunit_funding!]! - An array relationship
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate! - An aggregate relationship
  • created_at: timestamp!
  • created_by: uuid!
  • description: String!
  • end_date: timestamp!
  • id: uuid!
  • name: citext!
  • owners: uuid!
  • ownersById: [users!]! - An array relationship
  • ownersById_aggregate: users_aggregate! - An aggregate relationship
  • planned_amount: float8
  • start_date: timestamp!
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • updated_at: timestamp
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
  • user_group: user_groups - An object relationship
  • user_groups: uuid
funding_sources_aggregate

aggregated selection of "funding_sources"

Fields:

  • aggregate: funding_sources_aggregate_fields
  • nodes: [funding_sources!]!
funding_sources_aggregate_bool_exp_avg

Fields:

  • arguments: funding_sources_select_column_funding_sources_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_corr

Fields:

  • arguments: funding_sources_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_corr_arguments

Fields:

  • X: funding_sources_select_column_funding_sources_aggregate_bool_exp_corr_arguments_columns!
  • Y: funding_sources_select_column_funding_sources_aggregate_bool_exp_corr_arguments_columns!
funding_sources_aggregate_bool_exp_covar_samp

Fields:

  • arguments: funding_sources_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: funding_sources_select_column_funding_sources_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: funding_sources_select_column_funding_sources_aggregate_bool_exp_covar_samp_arguments_columns!
funding_sources_aggregate_bool_exp_max

Fields:

  • arguments: funding_sources_select_column_funding_sources_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_min

Fields:

  • arguments: funding_sources_select_column_funding_sources_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: funding_sources_select_column_funding_sources_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_sum

Fields:

  • arguments: funding_sources_select_column_funding_sources_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_aggregate_bool_exp_var_samp

Fields:

  • arguments: funding_sources_select_column_funding_sources_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: float8_comparison_exp!
funding_sources_select_column_funding_sources_aggregate_bool_exp_avg_arguments_columns

select "funding_sources_aggregate_bool_exp_avg_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_corr_arguments_columns

select "funding_sources_aggregate_bool_exp_corr_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_covar_samp_arguments_columns

select "funding_sources_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_max_arguments_columns

select "funding_sources_aggregate_bool_exp_max_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_min_arguments_columns

select "funding_sources_aggregate_bool_exp_min_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_stddev_samp_arguments_columns

select "funding_sources_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_sum_arguments_columns

select "funding_sources_aggregate_bool_exp_sum_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_select_column_funding_sources_aggregate_bool_exp_var_samp_arguments_columns

select "funding_sources_aggregate_bool_exp_var_samp_arguments_columns" columns of table "funding_sources"

Values:

  • amount - column name
  • planned_amount - column name
funding_sources_updates

Fields:

  • _inc: funding_sources_inc_input - increments the numeric columns with given value of the filtered values
  • _set: funding_sources_set_input - sets the columns of the filtered rows to the given values
  • where: funding_sources_bool_exp! - filter the rows which have to be updated
spends

columns and relationships of "spends"

Fields:

  • amount: float8!
  • business_unit: uuid
  • cloudAccountByCloudAccount: cloud_accounts! - An object relationship
  • cloud_account: uuid!
  • cloud_resource_id: uuid
  • cloud_resourse: cloud_resourses - An object relationship
  • date: timestamp!
  • exclude_aggregate: Boolean
  • id: uuid!
  • tags: jsonb
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • unit: String
spends_aggregate

aggregated selection of "spends"

Fields:

  • aggregate: spends_aggregate_fields
  • nodes: [spends!]!
spends_aggregate_bool_exp_avg

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_bool_and

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: Boolean_comparison_exp!
spends_aggregate_bool_exp_bool_or

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: Boolean_comparison_exp!
spends_aggregate_bool_exp_corr

Fields:

  • arguments: spends_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_corr_arguments

Fields:

  • X: spends_select_column_spends_aggregate_bool_exp_corr_arguments_columns!
  • Y: spends_select_column_spends_aggregate_bool_exp_corr_arguments_columns!
spends_aggregate_bool_exp_covar_samp

Fields:

  • arguments: spends_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: spends_select_column_spends_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: spends_select_column_spends_aggregate_bool_exp_covar_samp_arguments_columns!
spends_aggregate_bool_exp_max

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_min

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_sum

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_aggregate_bool_exp_var_samp

Fields:

  • arguments: spends_select_column_spends_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: float8_comparison_exp!
spends_resource_group_type

Resource Groups

Fields:

  • cloudProviderByCloudProvider: cloud_provider_type! - An object relationship
  • cloud_provider: cloud_provider_type_enum!
  • description: String!
  • value: String!
spends_resource_group_type_aggregate

aggregated selection of "spends_resource_group_type"

Fields:

  • aggregate: spends_resource_group_type_aggregate_fields
  • nodes: [spends_resource_group_type!]!
spends_resource_group_type_updates

Fields:

  • _set: spends_resource_group_type_set_input - sets the columns of the filtered rows to the given values
  • where: spends_resource_group_type_bool_exp! - filter the rows which have to be updated
spends_select_column_spends_aggregate_bool_exp_avg_arguments_columns

select "spends_aggregate_bool_exp_avg_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_bool_and_arguments_columns

select "spends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "spends"

Values:

  • exclude_aggregate - column name
spends_select_column_spends_aggregate_bool_exp_bool_or_arguments_columns

select "spends_aggregate_bool_exp_bool_or_arguments_columns" columns of table "spends"

Values:

  • exclude_aggregate - column name
spends_select_column_spends_aggregate_bool_exp_corr_arguments_columns

select "spends_aggregate_bool_exp_corr_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_covar_samp_arguments_columns

select "spends_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_max_arguments_columns

select "spends_aggregate_bool_exp_max_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_min_arguments_columns

select "spends_aggregate_bool_exp_min_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_stddev_samp_arguments_columns

select "spends_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_sum_arguments_columns

select "spends_aggregate_bool_exp_sum_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_select_column_spends_aggregate_bool_exp_var_samp_arguments_columns

select "spends_aggregate_bool_exp_var_samp_arguments_columns" columns of table "spends"

Values:

  • amount - column name
spends_updates

Fields:

  • _append: spends_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: spends_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: spends_delete_elem_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_key: spends_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: spends_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: spends_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: spends_set_input - sets the columns of the filtered rows to the given values
  • where: spends_bool_exp! - filter the rows which have to be updated

Anomalies

anomaly

columns and relationships of "anomaly"

Fields:

  • account_id: uuid!
  • anomaly_type: String!
  • config_id: uuid
  • created_at: timestamp!
  • current_value: numeric!
  • evaluated_at: timestamp!
  • id: uuid!
  • is_anomaly: Boolean!
  • name: String!
  • namespace: String
  • pod_name: String
  • reference_value: jsonb!
  • tenant: uuid!
  • training_end_time: timestamp
  • updated_at: timestamp!
anomaly_aggregate

aggregated selection of "anomaly"

Fields:

  • aggregate: anomaly_aggregate_fields
  • nodes: [anomaly!]!
anomaly_change_operator

columns and relationships of "anomaly_change_operator"

Fields:

  • comment: String
  • value: String!
anomaly_change_operator_aggregate

aggregated selection of "anomaly_change_operator"

Fields:

  • aggregate: anomaly_change_operator_aggregate_fields
  • nodes: [anomaly_change_operator!]!
anomaly_change_operator_enum

Values:

  • GT
  • GTE
  • LT
  • LTE
anomaly_change_operator_enum_comparison_exp

Boolean expression to compare columns of type "anomaly_change_operator_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: anomaly_change_operator_enum
  • _in: [anomaly_change_operator_enum!]
  • _is_null: Boolean
  • _neq: anomaly_change_operator_enum
  • _nin: [anomaly_change_operator_enum!]
anomaly_change_operator_updates

Fields:

  • _set: anomaly_change_operator_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_change_operator_bool_exp! - filter the rows which have to be updated
anomaly_config

columns and relationships of "anomaly_config"

Fields:

  • anomaly_type: anomaly_type_enum!
  • buffer_percentage: numeric!
  • change_operator: anomaly_change_operator_enum!
  • cloud_account_id: uuid!
  • created_at: timestamptz!
  • created_by: uuid!
  • id: uuid!
  • reference_period: String!
  • reference_unit: String!
  • tenant_id: uuid!
  • type: anomaly_config_type_enum!
  • updated_at: timestamptz!
  • updated_by: uuid!
anomaly_config_aggregate

aggregated selection of "anomaly_config"

Fields:

  • aggregate: anomaly_config_aggregate_fields
  • nodes: [anomaly_config!]!
anomaly_config_type

columns and relationships of "anomaly_config_type"

Fields:

  • comment: String
  • value: String!
anomaly_config_type_aggregate

aggregated selection of "anomaly_config_type"

Fields:

  • aggregate: anomaly_config_type_aggregate_fields
  • nodes: [anomaly_config_type!]!
anomaly_config_type_enum

Values:

  • Metric
anomaly_config_type_enum_comparison_exp

Boolean expression to compare columns of type "anomaly_config_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: anomaly_config_type_enum
  • _in: [anomaly_config_type_enum!]
  • _is_null: Boolean
  • _neq: anomaly_config_type_enum
  • _nin: [anomaly_config_type_enum!]
anomaly_config_type_updates

Fields:

  • _set: anomaly_config_type_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_config_type_bool_exp! - filter the rows which have to be updated
anomaly_config_updates

Fields:

  • _inc: anomaly_config_inc_input - increments the numeric columns with given value of the filtered values
  • _set: anomaly_config_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_config_bool_exp! - filter the rows which have to be updated
anomaly_type

columns and relationships of "anomaly_type"

Fields:

  • comment: String
  • value: String!
anomaly_type_aggregate

aggregated selection of "anomaly_type"

Fields:

  • aggregate: anomaly_type_aggregate_fields
  • nodes: [anomaly_type!]!
anomaly_type_enum

Values:

  • APIRequest
  • CPU
  • ErrorRate
  • Latency
  • Memory
  • Network
anomaly_type_enum_comparison_exp

Boolean expression to compare columns of type "anomaly_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: anomaly_type_enum
  • _in: [anomaly_type_enum!]
  • _is_null: Boolean
  • _neq: anomaly_type_enum
  • _nin: [anomaly_type_enum!]
anomaly_type_updates

Fields:

  • _set: anomaly_type_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_type_bool_exp! - filter the rows which have to be updated
anomaly_updates

Fields:

  • _append: anomaly_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: anomaly_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: anomaly_delete_elem_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_key: anomaly_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: anomaly_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: anomaly_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: anomaly_set_input - sets the columns of the filtered rows to the given values
  • where: anomaly_bool_exp! - filter the rows which have to be updated

Events & Incidents

event_bulk_operations

columns and relationships of "event_bulk_operations"

Fields:

  • account_id: uuid!
  • classification_id: uuid
  • completed_at: timestamp
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • fingerprint: String
  • id: uuid!
  • operation_type: String!
  • processed_events: Int
  • rule_id: uuid
  • status: String
  • target_status: String!
  • total_events: Int
event_bulk_operations_aggregate

aggregated selection of "event_bulk_operations"

Fields:

  • aggregate: event_bulk_operations_aggregate_fields
  • nodes: [event_bulk_operations!]!
event_bulk_operations_updates

Fields:

  • _inc: event_bulk_operations_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_bulk_operations_set_input - sets the columns of the filtered rows to the given values
  • where: event_bulk_operations_bool_exp! - filter the rows which have to be updated
event_classification

columns and relationships of "event_classification"

Fields:

  • apply_scope: String
  • apply_until: timestamp
  • classification: String!
  • classified_at: timestamp
  • classified_by: uuid!
  • cloud_account_id: uuid!
  • corrected_priority: String
  • created_at: timestamp
  • event_id: uuid!
  • feature_snapshot: jsonb
  • id: uuid!
  • linked_event_id: uuid
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String!
  • reason_text: String
  • rule_id: uuid
  • tenant_id: uuid!
  • updated_at: timestamp
event_classification_aggregate

aggregated selection of "event_classification"

Fields:

  • aggregate: event_classification_aggregate_fields
  • nodes: [event_classification!]!
event_classification_updates

Fields:

  • _append: event_classification_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_classification_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_classification_delete_elem_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_key: event_classification_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: event_classification_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: event_classification_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_classification_set_input - sets the columns of the filtered rows to the given values
  • where: event_classification_bool_exp! - filter the rows which have to be updated
event_correlations

columns and relationships of "event_correlations"

Fields:

  • cloud_account_id: uuid!
  • correlation_reason: String!
  • correlation_score: numeric!
  • correlation_type: String!
  • created_at: timestamp!
  • dependency_distance: Int!
  • event_id: uuid!
  • id: uuid!
  • related_event_id: uuid!
  • tenant_id: uuid
  • time_offset_minutes: Int!
event_correlations_aggregate

aggregated selection of "event_correlations"

Fields:

  • aggregate: event_correlations_aggregate_fields
  • nodes: [event_correlations!]!
event_correlations_updates

Fields:

  • _inc: event_correlations_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_correlations_set_input - sets the columns of the filtered rows to the given values
  • where: event_correlations_bool_exp! - filter the rows which have to be updated
event_duplicates

columns and relationships of "event_duplicates"

Fields:

  • absolute_first_seen_at: timestamp
  • cloud_account_id: uuid!
  • created_at: timestamp!
  • event_id: uuid!
  • fingerprint: String!
  • first_event_id: uuid!
  • id: uuid!
  • occurrence_number: Int!
  • previous_event_id: uuid!
  • tenant_id: uuid!
  • time_since_first_seconds: Int!
  • time_since_previous_seconds: Int!
event_duplicates_aggregate

aggregated selection of "event_duplicates"

Fields:

  • aggregate: event_duplicates_aggregate_fields
  • nodes: [event_duplicates!]!
event_duplicates_updates

Fields:

  • _inc: event_duplicates_inc_input - increments the numeric columns with given value of the filtered values
  • _set: event_duplicates_set_input - sets the columns of the filtered rows to the given values
  • where: event_duplicates_bool_exp! - filter the rows which have to be updated
event_history

columns and relationships of "event_history"

Fields:

  • change_reason: String!
  • change_type: String!
  • changed_at: timestamptz!
  • changed_by: uuid
  • cloud_account_id: uuid!
  • event_id: uuid!
  • id: uuid!
  • metadata: jsonb
  • new_value: jsonb!
  • old_value: jsonb
  • tenant_id: uuid!
event_history_aggregate

aggregated selection of "event_history"

Fields:

  • aggregate: event_history_aggregate_fields
  • nodes: [event_history!]!
event_history_updates

Fields:

  • _append: event_history_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_history_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_history_delete_elem_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_key: event_history_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_history_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_history_set_input - sets the columns of the filtered rows to the given values
  • where: event_history_bool_exp! - filter the rows which have to be updated
event_incoming_webhooks

columns and relationships of "event_incoming_webhooks"

Fields:

  • account_id: uuid!
  • event_created_at: timestamp!
  • event_description: String
  • event_id: String!
  • event_priority: String
  • event_status: String
  • event_title: String!
  • event_type: String!
  • event_url: String
  • id: uuid!
  • integration_id: uuid!
  • integration_type: String!
  • raw: String
  • tenant_id: uuid!
  • webhook_id: String!
event_incoming_webhooks_aggregate

aggregated selection of "event_incoming_webhooks"

Fields:

  • aggregate: event_incoming_webhooks_aggregate_fields
  • nodes: [event_incoming_webhooks!]!
event_incoming_webhooks_updates

Fields:

  • _set: event_incoming_webhooks_set_input - sets the columns of the filtered rows to the given values
  • where: event_incoming_webhooks_bool_exp! - filter the rows which have to be updated
event_log_analysis

Log analysis of event

Fields:

  • analysis: String
  • analysis_type: String!
  • cloud_account_id: uuid
  • event_aggregation_key: String
  • event_fingerprint: String
  • event_id: uuid!
  • id: uuid!
  • recorded_at: timestamp!
  • status: event_log_analysis_status_enum!
  • status_reason: String
  • summary: String
  • updated_at: timestamp
event_log_analysis_aggregate

aggregated selection of "event_log_analysis"

Fields:

  • aggregate: event_log_analysis_aggregate_fields
  • nodes: [event_log_analysis!]!
event_log_analysis_status

Status table of event log analysis

Fields:

  • description: String
  • value: String!
event_log_analysis_status_aggregate

aggregated selection of "event_log_analysis_status"

Fields:

  • aggregate: event_log_analysis_status_aggregate_fields
  • nodes: [event_log_analysis_status!]!
event_log_analysis_status_enum

Values:

  • COMPLETED - Log analysis has completed
  • FAILED - Failed
  • IN_PROGRESS - Log analysis is in processing state
event_log_analysis_status_enum_comparison_exp

Boolean expression to compare columns of type "event_log_analysis_status_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: event_log_analysis_status_enum
  • _in: [event_log_analysis_status_enum!]
  • _is_null: Boolean
  • _neq: event_log_analysis_status_enum
  • _nin: [event_log_analysis_status_enum!]
event_log_analysis_status_updates

Fields:

  • _set: event_log_analysis_status_set_input - sets the columns of the filtered rows to the given values
  • where: event_log_analysis_status_bool_exp! - filter the rows which have to be updated
event_log_analysis_updates

Fields:

  • _set: event_log_analysis_set_input - sets the columns of the filtered rows to the given values
  • where: event_log_analysis_bool_exp! - filter the rows which have to be updated
event_resolution

columns and relationships of "event_resolution"

Fields:

  • created_at: timestamp!
  • data: jsonb
  • event_id: uuid!
  • id: uuid!
  • resolver_id: String!
  • resolver_type: String!
  • status: String!
  • status_message: String
  • type: String!
  • type_reference_id: String!
  • updated_at: timestamp!
event_resolution_aggregate

aggregated selection of "event_resolution"

Fields:

  • aggregate: event_resolution_aggregate_fields
  • nodes: [event_resolution!]!
event_resolution_updates

Fields:

  • _append: event_resolution_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_resolution_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_resolution_delete_elem_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_key: event_resolution_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_resolution_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_resolution_set_input - sets the columns of the filtered rows to the given values
  • where: event_resolution_bool_exp! - filter the rows which have to be updated
event_resolve_input

Fields:

  • account_id: String!
  • data: jsonb
  • event_id: String!
  • provider: String
  • provider_config: ProviderConfig
event_resolve_output

Fields:

  • data: [jsonb]!
event_rule_severity

columns and relationships of "event_rule_severity"

Fields:

  • value: String!
event_rule_severity_aggregate

aggregated selection of "event_rule_severity"

Fields:

  • aggregate: event_rule_severity_aggregate_fields
  • nodes: [event_rule_severity!]!
event_rule_severity_enum

Values:

  • critical
  • warning
event_rule_severity_enum_comparison_exp

Boolean expression to compare columns of type "event_rule_severity_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: event_rule_severity_enum
  • _in: [event_rule_severity_enum!]
  • _is_null: Boolean
  • _neq: event_rule_severity_enum
  • _nin: [event_rule_severity_enum!]
event_rule_severity_updates

Fields:

  • _set: event_rule_severity_set_input - sets the columns of the filtered rows to the given values
  • where: event_rule_severity_bool_exp! - filter the rows which have to be updated
event_rule_source

columns and relationships of "event_rule_source"

Fields:

  • value: String!
event_rule_source_aggregate

aggregated selection of "event_rule_source"

Fields:

  • aggregate: event_rule_source_aggregate_fields
  • nodes: [event_rule_source!]!
event_rule_source_enum

Values:

  • AWS_CloudTrail
  • AWS_CloudWatch_Alarm
  • AWS_EventBridge
  • Azure_Monitor_Alert
  • azure_monitor_webhook
  • chronosphere
  • datadog_webhook
  • nudgebee
  • prometheus
  • servicenow_webhook
event_rule_source_enum_comparison_exp

Boolean expression to compare columns of type "event_rule_source_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: event_rule_source_enum
  • _in: [event_rule_source_enum!]
  • _is_null: Boolean
  • _neq: event_rule_source_enum
  • _nin: [event_rule_source_enum!]
event_rule_source_updates

Fields:

  • _set: event_rule_source_set_input - sets the columns of the filtered rows to the given values
  • where: event_rule_source_bool_exp! - filter the rows which have to be updated
event_rules

columns and relationships of "event_rules"

Fields:

  • account_id: uuid!
  • alert: String!
  • annotations: jsonb!
  • category: String!
  • created_at: timestamp!
  • created_by: uuid
  • duration: String
  • enabled: Boolean!
  • expr: String!
  • group: String
  • id: uuid!
  • is_editable: Boolean
  • labels: jsonb!
  • name: String
  • namespace: String
  • severity: event_rule_severity_enum!
  • source: event_rule_source_enum!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
event_rules_aggregate

aggregated selection of "event_rules"

Fields:

  • aggregate: event_rules_aggregate_fields
  • nodes: [event_rules!]!
event_rules_updates

Fields:

  • _append: event_rules_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_rules_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_rules_delete_elem_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_key: event_rules_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: event_rules_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_rules_set_input - sets the columns of the filtered rows to the given values
  • where: event_rules_bool_exp! - filter the rows which have to be updated
event_severity

columns and relationships of "event_severity"

Fields:

  • value: String!
event_severity_aggregate

aggregated selection of "event_severity"

Fields:

  • aggregate: event_severity_aggregate_fields
  • nodes: [event_severity!]!
event_severity_enum

Values:

  • DEBUG
  • HIGH
  • INFO
  • LOW
  • MEDIUM
event_severity_enum_comparison_exp

Boolean expression to compare columns of type "event_severity_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: event_severity_enum
  • _in: [event_severity_enum!]
  • _is_null: Boolean
  • _neq: event_severity_enum
  • _nin: [event_severity_enum!]
event_severity_updates

Fields:

  • _set: event_severity_set_input - sets the columns of the filtered rows to the given values
  • where: event_severity_bool_exp! - filter the rows which have to be updated
event_source

columns and relationships of "event_source"

Fields:

  • value: String!
event_source_aggregate

aggregated selection of "event_source"

Fields:

  • aggregate: event_source_aggregate_fields
  • nodes: [event_source!]!
event_source_enum

Values:

  • AWS_CloudTrail
  • AWS_CloudWatch_Alarm
  • AWS_EventBridge
  • Azure_MetricAlert
  • Azure_Monitor_Alert
  • anomaly
  • azure_monitor_webhook
  • callback
  • chronosphere
  • datadog_webhook
  • helm_release
  • kubernetes_api_server
  • manual
  • nudgebee
  • pagerduty_webhook
  • prometheus
  • scheduler
  • servicenow_webhook
  • slo
  • workflow
  • zenduty_webhook
event_source_enum_comparison_exp

Boolean expression to compare columns of type "event_source_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: event_source_enum
  • _in: [event_source_enum!]
  • _is_null: Boolean
  • _neq: event_source_enum
  • _nin: [event_source_enum!]
event_source_updates

Fields:

  • _set: event_source_set_input - sets the columns of the filtered rows to the given values
  • where: event_source_bool_exp! - filter the rows which have to be updated
event_status

columns and relationships of "event_status"

Fields:

  • value: String!
event_status_aggregate

aggregated selection of "event_status"

Fields:

  • aggregate: event_status_aggregate_fields
  • nodes: [event_status!]!
event_status_enum

Values:

  • CLOSED
  • FIRING
  • RESOLVED
event_status_enum_comparison_exp

Boolean expression to compare columns of type "event_status_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: event_status_enum
  • _in: [event_status_enum!]
  • _is_null: Boolean
  • _neq: event_status_enum
  • _nin: [event_status_enum!]
event_status_updates

Fields:

  • _set: event_status_set_input - sets the columns of the filtered rows to the given values
  • where: event_status_bool_exp! - filter the rows which have to be updated
event_triage_rules

columns and relationships of "event_triage_rules"

Fields:

  • account_id: uuid
  • action: String!
  • action_value: jsonb
  • can_override: Boolean
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • enabled: Boolean
  • id: uuid!
  • is_editable: Boolean
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: jsonb
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: uuid
  • priority: Int
  • reason: String
  • rule_type: String!
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
event_triage_rules_aggregate

aggregated selection of "event_triage_rules"

Fields:

  • aggregate: event_triage_rules_aggregate_fields
  • nodes: [event_triage_rules!]!
event_triage_rules_updates

Fields:

  • _append: event_triage_rules_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: event_triage_rules_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: event_triage_rules_delete_elem_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_key: event_triage_rules_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: event_triage_rules_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: event_triage_rules_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: event_triage_rules_set_input - sets the columns of the filtered rows to the given values
  • where: event_triage_rules_bool_exp! - filter the rows which have to be updated
events

columns and relationships of "events"

Fields:

  • aggregation_key: String!
  • category: String
  • cloud_account: cloud_accounts - An object relationship
  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cluster: String!
  • computed_priority: String
  • computed_score: Int
  • created_at: timestamp!
  • description: String
  • ends_at: timestamp
  • event_severity: event_severity! - An object relationship
  • event_source: event_source - An object relationship
  • evidences: jsonb!
  • failure: String
  • finding_id: String!
  • finding_type: String!
  • fingerprint: String
  • id: uuid!
  • labels: jsonb
  • nb_status: String
  • nb_status_changed_at: timestamp
  • nb_status_changed_by: uuid
  • principal: String
  • priority: event_severity_enum!
  • score_confidence: numeric
  • score_factors: jsonb
  • service_key: String
  • snoozed_until: timestamp
  • source: event_source_enum
  • starts_at: timestamp
  • status: event_status_enum
  • subject_name: String!
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_owner_kind: String
  • subject_type: String
  • tenant: uuid!
  • title: String!
  • updated_at: timestamp!
  • urgency: event_severity_enum!
events_aggregate

aggregated selection of "events"

Fields:

  • aggregate: events_aggregate_fields
  • nodes: [events!]!
events_updates

Fields:

  • _append: events_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: events_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: events_delete_elem_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_key: events_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: events_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: events_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: events_set_input - sets the columns of the filtered rows to the given values
  • where: events_bool_exp! - filter the rows which have to be updated
insight

columns and relationships of "insight"

Fields:

  • account_id: uuid!
  • applications: jsonb
  • created_at: timestamp!
  • id: uuid!
  • resource_id: uuid
  • rule: jsonb
  • severity: insight_severity_enum
  • source: String!
  • status: String!
  • tenant: uuid!
  • title: String!
  • type: String!
  • unique_id: String!
  • updated_at: timestamp!
insight_aggregate

aggregated selection of "insight"

Fields:

  • aggregate: insight_aggregate_fields
  • nodes: [insight!]!
insight_severity

columns and relationships of "insight_severity"

Fields:

  • comment: String!
  • value: String!
insight_severity_aggregate

aggregated selection of "insight_severity"

Fields:

  • aggregate: insight_severity_aggregate_fields
  • nodes: [insight_severity!]!
insight_severity_enum

Values:

  • Critical - Critical
  • High - High
  • Low - Low
  • Medium - Medium
insight_severity_enum_comparison_exp

Boolean expression to compare columns of type "insight_severity_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: insight_severity_enum
  • _in: [insight_severity_enum!]
  • _is_null: Boolean
  • _neq: insight_severity_enum
  • _nin: [insight_severity_enum!]
insight_severity_updates

Fields:

  • _set: insight_severity_set_input - sets the columns of the filtered rows to the given values
  • where: insight_severity_bool_exp! - filter the rows which have to be updated
insight_updates

Fields:

  • _append: insight_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: insight_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: insight_delete_elem_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_key: insight_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: insight_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: insight_set_input - sets the columns of the filtered rows to the given values
  • where: insight_bool_exp! - filter the rows which have to be updated

Recommendations

recommendation

columns and relationships of "recommendation"

Fields:

  • account_object_id: String
  • category: recommendation_category_type_enum
  • cloud_account: cloud_accounts! - An object relationship
  • cloud_account_id: uuid!
  • cloud_resourse: cloud_resourses - An object relationship
  • created_at: timestamp!
  • dismissed_reason: String
  • estimated_savings: float8
  • id: uuid!
  • is_dismissed: Boolean!
  • note: String
  • recommendation: jsonb!
  • recommendation__status: recommendation_status_type - An object relationship
  • recommendation_action: recommendation_action_type_enum!
  • recommendation_action_type: recommendation_action_type! - An object relationship
  • recommendation_category_type: recommendation_category_type - An object relationship
  • recommendation_severity: recommendation_severity_type - An object relationship
  • resource_id: uuid
  • rule_name: String
  • severity: recommendation_severity_type_enum
  • status: recommendation_status_type_enum
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
recommendation_action_type

columns and relationships of "recommendation_action_type"

Fields:

  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • value: String!
recommendation_action_type_aggregate

aggregated selection of "recommendation_action_type"

Fields:

  • aggregate: recommendation_action_type_aggregate_fields
  • nodes: [recommendation_action_type!]!
recommendation_action_type_enum

Values:

  • Create
  • Delete
  • Modify
recommendation_action_type_enum_comparison_exp

Boolean expression to compare columns of type "recommendation_action_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: recommendation_action_type_enum
  • _in: [recommendation_action_type_enum!]
  • _is_null: Boolean
  • _neq: recommendation_action_type_enum
  • _nin: [recommendation_action_type_enum!]
recommendation_action_type_updates

Fields:

  • _set: recommendation_action_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_action_type_bool_exp! - filter the rows which have to be updated
recommendation_aggregate

aggregated selection of "recommendation"

Fields:

  • aggregate: recommendation_aggregate_fields
  • nodes: [recommendation!]!
recommendation_aggregate_bool_exp_avg

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_bool_and

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: Boolean_comparison_exp!
recommendation_aggregate_bool_exp_bool_or

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: Boolean_comparison_exp!
recommendation_aggregate_bool_exp_corr

Fields:

  • arguments: recommendation_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_corr_arguments

Fields:

  • X: recommendation_select_column_recommendation_aggregate_bool_exp_corr_arguments_columns!
  • Y: recommendation_select_column_recommendation_aggregate_bool_exp_corr_arguments_columns!
recommendation_aggregate_bool_exp_covar_samp

Fields:

  • arguments: recommendation_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: recommendation_select_column_recommendation_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: recommendation_select_column_recommendation_aggregate_bool_exp_covar_samp_arguments_columns!
recommendation_aggregate_bool_exp_max

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_min

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_sum

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_aggregate_bool_exp_var_samp

Fields:

  • arguments: recommendation_select_column_recommendation_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: float8_comparison_exp!
recommendation_category_type

columns and relationships of "recommendation_category_type"

Fields:

  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • value: String!
recommendation_category_type_aggregate

aggregated selection of "recommendation_category_type"

Fields:

  • aggregate: recommendation_category_type_aggregate_fields
  • nodes: [recommendation_category_type!]!
recommendation_category_type_enum

Values:

  • Configuration
  • Cost
  • InfraUpgrade
  • K8sSpotRecommendation
  • K8sVersionUpgrade
  • RightSizing
  • Security
recommendation_category_type_enum_comparison_exp

Boolean expression to compare columns of type "recommendation_category_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: recommendation_category_type_enum
  • _in: [recommendation_category_type_enum!]
  • _is_null: Boolean
  • _neq: recommendation_category_type_enum
  • _nin: [recommendation_category_type_enum!]
recommendation_category_type_updates

Fields:

  • _set: recommendation_category_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_category_type_bool_exp! - filter the rows which have to be updated
recommendation_job_create_output

Fields:

  • data: [jsonb]!
recommendation_resolution

columns and relationships of "recommendation_resolution"

Fields:

  • created_at: timestamp!
  • data: jsonb
  • id: uuid!
  • recommendation: recommendation! - An object relationship
  • recommendation_id: uuid!
  • resolver_id: String!
  • resolver_type: String!
  • status: String!
  • status_message: String
  • type: String!
  • type_reference_id: String!
  • updated_at: timestamp
recommendation_resolution_aggregate

aggregated selection of "recommendation_resolution"

Fields:

  • aggregate: recommendation_resolution_aggregate_fields
  • nodes: [recommendation_resolution!]!
recommendation_resolution_updates

Fields:

  • _append: recommendation_resolution_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: recommendation_resolution_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: recommendation_resolution_delete_elem_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_key: recommendation_resolution_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: recommendation_resolution_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: recommendation_resolution_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_resolution_bool_exp! - filter the rows which have to be updated
recommendation_response

Fields:

  • data: jsonb!
recommendation_select_column_recommendation_aggregate_bool_exp_avg_arguments_columns

select "recommendation_aggregate_bool_exp_avg_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_bool_and_arguments_columns

select "recommendation_aggregate_bool_exp_bool_and_arguments_columns" columns of table "recommendation"

Values:

  • is_dismissed - column name
recommendation_select_column_recommendation_aggregate_bool_exp_bool_or_arguments_columns

select "recommendation_aggregate_bool_exp_bool_or_arguments_columns" columns of table "recommendation"

Values:

  • is_dismissed - column name
recommendation_select_column_recommendation_aggregate_bool_exp_corr_arguments_columns

select "recommendation_aggregate_bool_exp_corr_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_covar_samp_arguments_columns

select "recommendation_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_max_arguments_columns

select "recommendation_aggregate_bool_exp_max_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_min_arguments_columns

select "recommendation_aggregate_bool_exp_min_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_stddev_samp_arguments_columns

select "recommendation_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_sum_arguments_columns

select "recommendation_aggregate_bool_exp_sum_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_select_column_recommendation_aggregate_bool_exp_var_samp_arguments_columns

select "recommendation_aggregate_bool_exp_var_samp_arguments_columns" columns of table "recommendation"

Values:

  • estimated_savings - column name
recommendation_severity_type

columns and relationships of "recommendation_severity_type"

Fields:

  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • value: String!
recommendation_severity_type_aggregate

aggregated selection of "recommendation_severity_type"

Fields:

  • aggregate: recommendation_severity_type_aggregate_fields
  • nodes: [recommendation_severity_type!]!
recommendation_severity_type_enum

Values:

  • Critical
  • High
  • Info
  • Low
  • Medium
recommendation_severity_type_enum_comparison_exp

Boolean expression to compare columns of type "recommendation_severity_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: recommendation_severity_type_enum
  • _in: [recommendation_severity_type_enum!]
  • _is_null: Boolean
  • _neq: recommendation_severity_type_enum
  • _nin: [recommendation_severity_type_enum!]
recommendation_severity_type_updates

Fields:

  • _set: recommendation_severity_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_severity_type_bool_exp! - filter the rows which have to be updated
recommendation_status_type

columns and relationships of "recommendation_status_type"

Fields:

  • description: String
  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • value: String!
recommendation_status_type_aggregate

aggregated selection of "recommendation_status_type"

Fields:

  • aggregate: recommendation_status_type_aggregate_fields
  • nodes: [recommendation_status_type!]!
recommendation_status_type_enum

Values:

  • Archive - the recommendations which are no longer needed
  • Assigned - The recomendation which are assigned to in jira ticket
  • Closed - The recommendation which are applied by the user
  • Dismissed - The recommendation which are no longer useful for user
  • InProgress - the recommendation which are long running recommendations for auto pilot
  • Open
recommendation_status_type_enum_comparison_exp

Boolean expression to compare columns of type "recommendation_status_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: recommendation_status_type_enum
  • _in: [recommendation_status_type_enum!]
  • _is_null: Boolean
  • _neq: recommendation_status_type_enum
  • _nin: [recommendation_status_type_enum!]
recommendation_status_type_updates

Fields:

  • _set: recommendation_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_status_type_bool_exp! - filter the rows which have to be updated
recommendation_updates

Fields:

  • _append: recommendation_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: recommendation_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: recommendation_delete_elem_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_key: recommendation_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: recommendation_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: recommendation_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: recommendation_set_input - sets the columns of the filtered rows to the given values
  • where: recommendation_bool_exp! - filter the rows which have to be updated

Cloud Infrastructure

active_resources

columns and relationships of "active_resources"

Fields:

  • cloud_account_id: uuid!
  • external_resource_id: String!
  • resource_type: String!
  • resourse_id: String!
  • tenant_id: uuid!
  • updated_at: timestamp!
active_resources_aggregate

aggregated selection of "active_resources"

Fields:

  • aggregate: active_resources_aggregate_fields
  • nodes: [active_resources!]!
active_resources_updates

Fields:

  • _set: active_resources_set_input - sets the columns of the filtered rows to the given values
  • where: active_resources_bool_exp! - filter the rows which have to be updated
cloud_account_attrs

columns and relationships of "cloud_account_attrs"

Fields:

  • cloud_account: cloud_accounts! - An object relationship
  • cloud_account_id: uuid!
  • created_at: timestamp!
  • id: uuid!
  • name: String!
  • updated_at: timestamp!
  • value: String
cloud_account_attrs_aggregate

aggregated selection of "cloud_account_attrs"

Fields:

  • aggregate: cloud_account_attrs_aggregate_fields
  • nodes: [cloud_account_attrs!]!
cloud_account_attrs_updates

Fields:

  • _set: cloud_account_attrs_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_attrs_bool_exp! - filter the rows which have to be updated
cloud_account_onboarding_errors

columns and relationships of "cloud_account_onboarding_errors"

Fields:

  • account_name: String!
  • config: String!
  • created_at: timestamp!
  • created_by: uuid!
  • error_message: String
  • id: uuid!
  • tenant_id: uuid!
cloud_account_onboarding_errors_aggregate

aggregated selection of "cloud_account_onboarding_errors"

Fields:

  • aggregate: cloud_account_onboarding_errors_aggregate_fields
  • nodes: [cloud_account_onboarding_errors!]!
cloud_account_onboarding_errors_updates

Fields:

  • _set: cloud_account_onboarding_errors_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_onboarding_errors_bool_exp! - filter the rows which have to be updated
cloud_account_score

columns and relationships of "cloud_account_score"

Fields:

  • cloud_account: cloud_accounts! - An object relationship
  • cloud_account_id: uuid!
  • created_at: timestamp!
  • description: String
  • id: uuid!
  • score: Int!
  • source: String
  • tenant: uuid!
  • updated_at: timestamp
cloud_account_score_aggregate

aggregated selection of "cloud_account_score"

Fields:

  • aggregate: cloud_account_score_aggregate_fields
  • nodes: [cloud_account_score!]!
cloud_account_score_updates

Fields:

  • _inc: cloud_account_score_inc_input - increments the numeric columns with given value of the filtered values
  • _set: cloud_account_score_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_score_bool_exp! - filter the rows which have to be updated
cloud_account_status_type

columns and relationships of "cloud_account_status_type"

Fields:

  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • decription: String!
  • value: String!
cloud_account_status_type_aggregate

aggregated selection of "cloud_account_status_type"

Fields:

  • aggregate: cloud_account_status_type_aggregate_fields
  • nodes: [cloud_account_status_type!]!
cloud_account_status_type_enum

Values:

  • active - active
  • disabled - disabled
  • inactive - inactive
cloud_account_status_type_enum_comparison_exp

Boolean expression to compare columns of type "cloud_account_status_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: cloud_account_status_type_enum
  • _in: [cloud_account_status_type_enum!]
  • _is_null: Boolean
  • _neq: cloud_account_status_type_enum
  • _nin: [cloud_account_status_type_enum!]
cloud_account_status_type_updates

Fields:

  • _set: cloud_account_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_status_type_bool_exp! - filter the rows which have to be updated
cloud_account_sync_status_type

columns and relationships of "cloud_account_sync_status_type"

Fields:

  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • value: String!
cloud_account_sync_status_type_aggregate

aggregated selection of "cloud_account_sync_status_type"

Fields:

  • aggregate: cloud_account_sync_status_type_aggregate_fields
  • nodes: [cloud_account_sync_status_type!]!
cloud_account_sync_status_type_enum

Values:

  • Completed
  • Error
  • Queued
  • Running
cloud_account_sync_status_type_enum_comparison_exp

Boolean expression to compare columns of type "cloud_account_sync_status_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: cloud_account_sync_status_type_enum
  • _in: [cloud_account_sync_status_type_enum!]
  • _is_null: Boolean
  • _neq: cloud_account_sync_status_type_enum
  • _nin: [cloud_account_sync_status_type_enum!]
cloud_account_sync_status_type_updates

Fields:

  • _set: cloud_account_sync_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_account_sync_status_type_bool_exp! - filter the rows which have to be updated
cloud_accounts

columns and relationships of "cloud_accounts"

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • account_access: String
  • account_env: account_env_type_enum!
  • account_name: String!
  • account_number: String
  • account_purpose: String
  • account_type: String!
  • account_url: String
  • agent_access_key: String
  • agent_access_secret: String
  • agent_synced_at: timestamp
  • agent_tasks: [agent_task!]! - An array relationship
  • agent_tasks_aggregate: agent_task_aggregate! - An aggregate relationship
  • agents: [agent!]! - An array relationship
  • agents_aggregate: agent_aggregate! - An aggregate relationship
  • assume_role: String
  • billing_source: String
  • budget: float8
  • cloudProviderByCloudProvider: cloud_provider_type - An object relationship
  • cloud_account_attrs: [cloud_account_attrs!]! - An array relationship
  • cloud_account_attrs_aggregate: cloud_account_attrs_aggregate! - An aggregate relationship
  • cloud_account_status_type: cloud_account_status_type! - An object relationship
  • cloud_account_sync_status_type: cloud_account_sync_status_type - An object relationship
  • cloud_provider: cloud_provider_type_enum
  • cloud_resource_query_perves: [dw_queries!]! - An array relationship
  • cloud_resource_query_perves_aggregate: dw_queries_aggregate! - An aggregate relationship
  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • created_at: timestamp!
  • created_by: uuid!
  • data: jsonb
  • etl_attempt: Int!
  • events: [events!]! - An array relationship
  • events_aggregate: events_aggregate! - An aggregate relationship
  • external_id: String
  • id: uuid!
  • k8s_nodes: [k8s_nodes!]! - An array relationship
  • k8s_nodes_aggregate: k8s_nodes_aggregate! - An aggregate relationship
  • k8s_pods: [k8s_pods!]! - An array relationship
  • k8s_pods_aggregate: k8s_pods_aggregate! - An aggregate relationship
  • parent_account_id: uuid
  • project_accounts: [project_accounts!]! - An array relationship
  • project_accounts_aggregate: project_accounts_aggregate! - An aggregate relationship
  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • region: String
  • spends: [spends!]! - An array relationship
  • spends_aggregate: spends_aggregate! - An aggregate relationship
  • start_date: timestamp
  • status: cloud_account_status_type_enum!
  • sync_status: cloud_account_sync_status_type_enum
  • sync_status_message: String
  • synced_at: timestamp
  • tenant: uuid
  • tenantByTenant: tenant - An object relationship
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
cloud_accounts_aggregate

aggregated selection of "cloud_accounts"

Fields:

  • aggregate: cloud_accounts_aggregate_fields
  • nodes: [cloud_accounts!]!
cloud_accounts_aggregate_bool_exp_avg

Fields:

  • arguments: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_corr

Fields:

  • arguments: cloud_accounts_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_corr_arguments

Fields:

  • X: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_corr_arguments_columns!
  • Y: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_corr_arguments_columns!
cloud_accounts_aggregate_bool_exp_covar_samp

Fields:

  • arguments: cloud_accounts_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_covar_samp_arguments_columns!
cloud_accounts_aggregate_bool_exp_max

Fields:

  • arguments: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_min

Fields:

  • arguments: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_sum

Fields:

  • arguments: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_aggregate_bool_exp_var_samp

Fields:

  • arguments: cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: float8_comparison_exp!
cloud_accounts_insert_one_input

Fields:

  • access_key: String
  • access_secret: String
  • account_access: String
  • account_email: String
  • account_env: String
  • account_name: String
  • account_number: String
  • account_purpose: String
  • account_type: String
  • account_url: String
  • assume_role: String
  • billing_source: String
  • budget: float8
  • cloud_provider: String
  • created_at: timestamp
  • created_by: uuid
  • data: jsonb
  • external_id: String
  • password: String
  • port: Int
  • region: String
  • start_date: timestamp
  • username: String
cloud_accounts_insert_one_output

Fields:

  • access_key: String
  • access_secret: String
  • id: uuid!
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_avg_arguments_columns

select "cloud_accounts_aggregate_bool_exp_avg_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_corr_arguments_columns

select "cloud_accounts_aggregate_bool_exp_corr_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_covar_samp_arguments_columns

select "cloud_accounts_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_max_arguments_columns

select "cloud_accounts_aggregate_bool_exp_max_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_min_arguments_columns

select "cloud_accounts_aggregate_bool_exp_min_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_stddev_samp_arguments_columns

select "cloud_accounts_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_sum_arguments_columns

select "cloud_accounts_aggregate_bool_exp_sum_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_select_column_cloud_accounts_aggregate_bool_exp_var_samp_arguments_columns

select "cloud_accounts_aggregate_bool_exp_var_samp_arguments_columns" columns of table "cloud_accounts"

Values:

  • budget - column name
cloud_accounts_updates

Fields:

  • _append: cloud_accounts_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_accounts_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_accounts_delete_elem_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_key: cloud_accounts_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_accounts_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_accounts_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_accounts_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_accounts_bool_exp! - filter the rows which have to be updated
cloud_api_permission_errors

columns and relationships of "cloud_api_permission_errors"

Fields:

  • account_number: String!
  • api_operation: String!
  • cloud_account_id: uuid!
  • cloud_provider: String!
  • error_code: String!
  • error_message: String
  • first_seen_at: timestamptz!
  • id: uuid!
  • is_resolved: Boolean!
  • last_seen_at: timestamptz!
  • occurrence_count: Int!
  • region: String!
  • resolved_at: timestamptz
  • service_name: String!
  • tenant_id: uuid!
  • wrapper_method: String!
cloud_api_permission_errors_aggregate

aggregated selection of "cloud_api_permission_errors"

Fields:

  • aggregate: cloud_api_permission_errors_aggregate_fields
  • nodes: [cloud_api_permission_errors!]!
cloud_api_permission_errors_updates

Fields:

  • _inc: cloud_api_permission_errors_inc_input - increments the numeric columns with given value of the filtered values
  • _set: cloud_api_permission_errors_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_api_permission_errors_bool_exp! - filter the rows which have to be updated
cloud_provider_type

columns and relationships of "cloud_provider_type"

Fields:

  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • comment: String!
  • spends_resource_group_types: [spends_resource_group_type!]! - An array relationship
  • spends_resource_group_types_aggregate: spends_resource_group_type_aggregate! - An aggregate relationship
  • value: String!
cloud_provider_type_aggregate

aggregated selection of "cloud_provider_type"

Fields:

  • aggregate: cloud_provider_type_aggregate_fields
  • nodes: [cloud_provider_type!]!
cloud_provider_type_enum

Values:

  • AWS - AWS
  • Azure - Azure
  • GCP - GCP
  • Github - code repository
  • Jira - Jira
  • K8s - K8s
  • NewRelic - NewRelic
  • OpenAi - OpenAi
  • Other - Other
  • Postgres - Postgres
  • Slack - Slack
  • Snowflake - Snowflake
cloud_provider_type_enum_comparison_exp

Boolean expression to compare columns of type "cloud_provider_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: cloud_provider_type_enum
  • _in: [cloud_provider_type_enum!]
  • _is_null: Boolean
  • _neq: cloud_provider_type_enum
  • _nin: [cloud_provider_type_enum!]
cloud_provider_type_updates

Fields:

  • _set: cloud_provider_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_provider_type_bool_exp! - filter the rows which have to be updated
cloud_resource_attributes

columns and relationships of "cloud_resource_attributes"

Fields:

  • account_id: uuid!
  • cloud_resourse: cloud_resourses! - An object relationship
  • created_at: timestamp
  • id: uuid!
  • labels: json
  • last_seen_at: timestamp
  • name: String!
  • resource_id: uuid!
  • tenant_id: uuid!
  • value: String
cloud_resource_attributes_aggregate

aggregated selection of "cloud_resource_attributes"

Fields:

  • aggregate: cloud_resource_attributes_aggregate_fields
  • nodes: [cloud_resource_attributes!]!
cloud_resource_attributes_updates

Fields:

  • _set: cloud_resource_attributes_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_attributes_bool_exp! - filter the rows which have to be updated
cloud_resource_details

columns and relationships of "cloud_resource_details"

Fields:

  • architecture: String
  • attributes: jsonb
  • cloud_provider: String!
  • created_at: timestamptz
  • current_generation: Boolean
  • database_engine: String!
  • deployment_option: String!
  • gpu_count: Int
  • id: uuid!
  • network_performance: String
  • operating_system: String
  • price_unit: String!
  • pricing_model: String!
  • resource_capacity: jsonb!
  • resource_cost: float8!
  • resource_region: String
  • resource_type: String!
  • service_name: String!
  • service_type: String!
  • spot_pricing: jsonb
  • storage_type: String
  • tenancy: String
  • updated_at: timestamptz
cloud_resource_details_aggregate

aggregated selection of "cloud_resource_details"

Fields:

  • aggregate: cloud_resource_details_aggregate_fields
  • nodes: [cloud_resource_details!]!
cloud_resource_details_updates

Fields:

  • _append: cloud_resource_details_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resource_details_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resource_details_delete_elem_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_key: cloud_resource_details_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_resource_details_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_resource_details_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resource_details_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_details_bool_exp! - filter the rows which have to be updated
cloud_resource_metrics

columns and relationships of "cloud_resource_metrics"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid!
  • cloud_resourse: cloud_resourses! - An object relationship
  • id: uuid!
  • metric: String!
  • metric_type: String!
  • tags: jsonb!
  • tenant_id: uuid
  • timestamp: timestamp!
  • value: float8!
cloud_resource_metrics_aggregate

aggregated selection of "cloud_resource_metrics"

Fields:

  • aggregate: cloud_resource_metrics_aggregate_fields
  • nodes: [cloud_resource_metrics!]!
cloud_resource_metrics_aggregate_bool_exp_avg

Fields:

  • arguments: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_corr

Fields:

  • arguments: cloud_resource_metrics_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_corr_arguments

Fields:

  • X: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_corr_arguments_columns!
  • Y: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_corr_arguments_columns!
cloud_resource_metrics_aggregate_bool_exp_covar_samp

Fields:

  • arguments: cloud_resource_metrics_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_covar_samp_arguments_columns!
cloud_resource_metrics_aggregate_bool_exp_max

Fields:

  • arguments: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_min

Fields:

  • arguments: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_sum

Fields:

  • arguments: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_aggregate_bool_exp_var_samp

Fields:

  • arguments: cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: float8_comparison_exp!
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_avg_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_avg_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_corr_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_corr_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_covar_samp_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_max_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_max_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_min_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_min_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_stddev_samp_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_sum_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_sum_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_select_column_cloud_resource_metrics_aggregate_bool_exp_var_samp_arguments_columns

select "cloud_resource_metrics_aggregate_bool_exp_var_samp_arguments_columns" columns of table "cloud_resource_metrics"

Values:

  • value - column name
cloud_resource_metrics_updates

Fields:

  • _append: cloud_resource_metrics_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resource_metrics_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resource_metrics_delete_elem_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_key: cloud_resource_metrics_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: cloud_resource_metrics_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: cloud_resource_metrics_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resource_metrics_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_metrics_bool_exp! - filter the rows which have to be updated
cloud_resource_status_type

columns and relationships of "cloud_resource_status_type"

Fields:

  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • value: String!
cloud_resource_status_type_aggregate

aggregated selection of "cloud_resource_status_type"

Fields:

  • aggregate: cloud_resource_status_type_aggregate_fields
  • nodes: [cloud_resource_status_type!]!
cloud_resource_status_type_enum

Values:

  • Active
  • Deleted
  • Inactive
  • Unknown
cloud_resource_status_type_enum_comparison_exp

Boolean expression to compare columns of type "cloud_resource_status_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: cloud_resource_status_type_enum
  • _in: [cloud_resource_status_type_enum!]
  • _is_null: Boolean
  • _neq: cloud_resource_status_type_enum
  • _nin: [cloud_resource_status_type_enum!]
cloud_resource_status_type_updates

Fields:

  • _set: cloud_resource_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resource_status_type_bool_exp! - filter the rows which have to be updated
cloud_resource_v2

Fields:

  • account: uuid!
  • id: uuid!
  • name: String
  • recommendations: json
  • region: String
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • spend_amount: float8
  • status: String
  • tenant: uuid!
  • type: String
cloud_resource_v2_enum_name

Values:

  • account - column name
  • id - column name
  • name - column name
  • recommendations - column name
  • region - column name
  • resourse_created_on - column name
  • resourse_id - column name
  • service_name - column name
  • spend_amount - column name
  • status - column name
  • tenant - column name
  • type - column name
cloud_resources_v2_arguments

cloud_resources_v2Native Query Arguments

Fields:

  • spend_from: timestamp!
  • spend_to: timestamp!
cloud_resourses

columns and relationships of "cloud_resourses"

Fields:

  • account: uuid!
  • arn: String
  • cloudProviderByCloudProvider: cloud_provider_type! - An object relationship
  • cloud_account: cloud_accounts! - An object relationship
  • cloud_provider: cloud_provider_type_enum!
  • cloud_resource_attributes: [cloud_resource_attributes!]! - An array relationship
  • cloud_resource_attributes_aggregate: cloud_resource_attributes_aggregate! - An aggregate relationship
  • cloud_resource_metrics: [cloud_resource_metrics!]! - An array relationship
  • cloud_resource_metrics_aggregate: cloud_resource_metrics_aggregate! - An aggregate relationship
  • cloud_resource_status_type: cloud_resource_status_type - An object relationship
  • created_at: timestamp!
  • created_by: uuid
  • external_resource_id: String
  • first_seen: timestamp
  • id: uuid!
  • is_active: Boolean
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • project_cloud_resources: [project_cloud_resources!]! - An array relationship
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate! - An aggregate relationship
  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • region: String!
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • spends: [spends!]! - An array relationship
  • spends_aggregate: spends_aggregate! - An aggregate relationship
  • status: cloud_resource_status_type_enum
  • tags: jsonb
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • type: String
  • updated_at: timestamp!
  • updated_by: uuid
  • user: users - An object relationship
  • userByUpdatedBy: users - An object relationship
cloud_resourses_aggregate

aggregated selection of "cloud_resourses"

Fields:

  • aggregate: cloud_resourses_aggregate_fields
  • nodes: [cloud_resourses!]!
cloud_resourses_aggregate_bool_exp_bool_and

Fields:

  • arguments: cloud_resourses_select_column_cloud_resourses_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resourses_bool_exp
  • predicate: Boolean_comparison_exp!
cloud_resourses_aggregate_bool_exp_bool_or

Fields:

  • arguments: cloud_resourses_select_column_cloud_resourses_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: cloud_resourses_bool_exp
  • predicate: Boolean_comparison_exp!
cloud_resourses_select_column_cloud_resourses_aggregate_bool_exp_bool_and_arguments_columns

select "cloud_resourses_aggregate_bool_exp_bool_and_arguments_columns" columns of table "cloud_resourses"

Values:

  • is_active - column name
cloud_resourses_select_column_cloud_resourses_aggregate_bool_exp_bool_or_arguments_columns

select "cloud_resourses_aggregate_bool_exp_bool_or_arguments_columns" columns of table "cloud_resourses"

Values:

  • is_active - column name
cloud_resourses_updates

Fields:

  • _append: cloud_resourses_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: cloud_resourses_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: cloud_resourses_delete_elem_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_key: cloud_resourses_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: cloud_resourses_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: cloud_resourses_set_input - sets the columns of the filtered rows to the given values
  • where: cloud_resourses_bool_exp! - filter the rows which have to be updated

Kubernetes

k8s_account_resource_usage

columns and relationships of "k8s_account_resource_usage"

Fields:

  • avg_cpu_request: float8
  • avg_cpu_usage: float8
  • avg_egress: float8
  • avg_ingress: float8
  • avg_mem_request: float8
  • avg_mem_usage: float8
  • cloud_account_id: uuid
  • tenant_id: uuid
k8s_account_resource_usage_aggregate

aggregated selection of "k8s_account_resource_usage"

Fields:

  • aggregate: k8s_account_resource_usage_aggregate_fields
  • nodes: [k8s_account_resource_usage!]!
k8s_namespaces

columns and relationships of "k8s_namespaces"

Fields:

  • cloud_account_id: String!
  • creation_time: timestamp
  • is_active: Boolean!
  • name: String!
  • pod_count: Int
  • tenant_id: String!
  • updated_at: timestamp
  • workload_count: Int
k8s_namespaces_aggregate

aggregated selection of "k8s_namespaces"

Fields:

  • aggregate: k8s_namespaces_aggregate_fields
  • nodes: [k8s_namespaces!]!
k8s_namespaces_updates

Fields:

  • _inc: k8s_namespaces_inc_input - increments the numeric columns with given value of the filtered values
  • _set: k8s_namespaces_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_namespaces_bool_exp! - filter the rows which have to be updated
k8s_nodes

columns and relationships of "k8s_nodes"

Fields:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • conditions: String
  • cost: float8
  • cpu_allocatable: float8!
  • cpu_capacity: float8!
  • cpu_limits: float8
  • external_ip: String
  • internal_ip: String
  • is_active: Boolean!
  • labels: jsonb
  • memory_allocatable: Int!
  • memory_capacity: Int!
  • memory_limits: Int
  • meta: jsonb
  • name: String!
  • node_creation_time: timestamp
  • node_flavor: String
  • node_region: String
  • node_type: String
  • node_zone: String
  • taints: String
  • tenant_id: uuid!
  • updated_at: timestamp
k8s_nodes_aggregate

aggregated selection of "k8s_nodes"

Fields:

  • aggregate: k8s_nodes_aggregate_fields
  • nodes: [k8s_nodes!]!
k8s_nodes_aggregate_bool_exp_avg

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_bool_and

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: Boolean_comparison_exp!
k8s_nodes_aggregate_bool_exp_bool_or

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: Boolean_comparison_exp!
k8s_nodes_aggregate_bool_exp_corr

Fields:

  • arguments: k8s_nodes_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_corr_arguments

Fields:

  • X: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_corr_arguments_columns!
  • Y: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_corr_arguments_columns!
k8s_nodes_aggregate_bool_exp_covar_samp

Fields:

  • arguments: k8s_nodes_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_covar_samp_arguments_columns!
k8s_nodes_aggregate_bool_exp_max

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_min

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_sum

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_aggregate_bool_exp_var_samp

Fields:

  • arguments: k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: float8_comparison_exp!
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_avg_arguments_columns

select "k8s_nodes_aggregate_bool_exp_avg_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_bool_and_arguments_columns

select "k8s_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "k8s_nodes"

Values:

  • is_active - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_bool_or_arguments_columns

select "k8s_nodes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "k8s_nodes"

Values:

  • is_active - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_corr_arguments_columns

select "k8s_nodes_aggregate_bool_exp_corr_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_covar_samp_arguments_columns

select "k8s_nodes_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_max_arguments_columns

select "k8s_nodes_aggregate_bool_exp_max_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_min_arguments_columns

select "k8s_nodes_aggregate_bool_exp_min_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_stddev_samp_arguments_columns

select "k8s_nodes_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_sum_arguments_columns

select "k8s_nodes_aggregate_bool_exp_sum_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_select_column_k8s_nodes_aggregate_bool_exp_var_samp_arguments_columns

select "k8s_nodes_aggregate_bool_exp_var_samp_arguments_columns" columns of table "k8s_nodes"

Values:

  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
k8s_nodes_updates

Fields:

  • _append: k8s_nodes_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_nodes_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_nodes_delete_elem_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_key: k8s_nodes_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: k8s_nodes_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: k8s_nodes_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_nodes_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_nodes_bool_exp! - filter the rows which have to be updated
k8s_pods

columns and relationships of "k8s_pods"

Fields:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • creation_time: timestamp
  • external_id: String!
  • is_active: Boolean!
  • labels: jsonb
  • last_seen: timestamp!
  • meta: jsonb
  • name: String!
  • namespace: String!
  • node_name: String
  • restart_count: jsonb
  • status: String!
  • tenant_id: uuid!
  • updated_at: timestamp
  • workload_name: String
  • workload_type: String
k8s_pods_aggregate

aggregated selection of "k8s_pods"

Fields:

  • aggregate: k8s_pods_aggregate_fields
  • nodes: [k8s_pods!]!
k8s_pods_aggregate_bool_exp_bool_and

Fields:

  • arguments: k8s_pods_select_column_k8s_pods_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: k8s_pods_bool_exp
  • predicate: Boolean_comparison_exp!
k8s_pods_aggregate_bool_exp_bool_or

Fields:

  • arguments: k8s_pods_select_column_k8s_pods_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: k8s_pods_bool_exp
  • predicate: Boolean_comparison_exp!
k8s_pods_select_column_k8s_pods_aggregate_bool_exp_bool_and_arguments_columns

select "k8s_pods_aggregate_bool_exp_bool_and_arguments_columns" columns of table "k8s_pods"

Values:

  • is_active - column name
k8s_pods_select_column_k8s_pods_aggregate_bool_exp_bool_or_arguments_columns

select "k8s_pods_aggregate_bool_exp_bool_or_arguments_columns" columns of table "k8s_pods"

Values:

  • is_active - column name
k8s_pods_updates

Fields:

  • _append: k8s_pods_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_pods_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_pods_delete_elem_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_key: k8s_pods_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: k8s_pods_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_pods_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_pods_bool_exp! - filter the rows which have to be updated
k8s_workloads

columns and relationships of "k8s_workloads"

Fields:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • creation_time: timestamp
  • external_id: String!
  • is_active: Boolean!
  • kind: String!
  • labels: jsonb!
  • last_seen: timestamp!
  • meta: jsonb!
  • name: String!
  • namespace: String!
  • ready_pods: Int!
  • tenant_id: uuid!
  • total_pods: Int!
  • updated_at: timestamp
k8s_workloads_aggregate

aggregated selection of "k8s_workloads"

Fields:

  • aggregate: k8s_workloads_aggregate_fields
  • nodes: [k8s_workloads!]!
k8s_workloads_updates

Fields:

  • _append: k8s_workloads_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: k8s_workloads_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: k8s_workloads_delete_elem_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_key: k8s_workloads_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: k8s_workloads_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: k8s_workloads_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: k8s_workloads_set_input - sets the columns of the filtered rows to the given values
  • where: k8s_workloads_bool_exp! - filter the rows which have to be updated

Automation

auto_optimize_gitops_config

Fields:

  • enabled: Boolean
  • repository_name: String
auto_optimize_insert_one

Fields:

  • account_id: uuid!
  • auto_optimize_config: jsonb
  • category: String!
  • dryrun: Boolean!
  • gitops: auto_optimize_gitops_config
  • notification: autopilot_notification!
  • resource_filter: [autopilot_resource_filter]!
  • schedule: autopilot_schedule!
  • ticket_config: auto_optimize_ticket_config
auto_optimize_insert_one_output

Fields:

  • id: uuid!
auto_optimize_recommendation_output

Fields:

  • recommendation: [uuid!]
auto_optimize_resource_map

resource to auto optimize mapping

Fields:

  • account_id: uuid!
  • auto_optimize_id: uuid!
  • auto_optimize_type: String!
  • auto_pilot: auto_pilot! - An object relationship
  • cloud_account: cloud_accounts! - An object relationship
  • id: uuid!
  • resource_identifier: jsonb!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
auto_optimize_resource_map_aggregate

aggregated selection of "auto_optimize_resource_map"

Fields:

  • aggregate: auto_optimize_resource_map_aggregate_fields
  • nodes: [auto_optimize_resource_map!]!
auto_optimize_resource_map_updates

Fields:

  • _append: auto_optimize_resource_map_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_optimize_resource_map_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_optimize_resource_map_delete_elem_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_key: auto_optimize_resource_map_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_optimize_resource_map_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_optimize_resource_map_set_input - sets the columns of the filtered rows to the given values
  • where: auto_optimize_resource_map_bool_exp! - filter the rows which have to be updated
auto_optimize_skip_request

Fields:

  • by_minutes: Int
  • id: uuid!
auto_optimize_skip_response

Fields:

  • message: String!
auto_optimize_ticket_config

Fields:

  • additional_fields: jsonb
  • assignee: String
  • configuration_id: String
  • description: String
  • enabled: Boolean
  • platform: String
  • project_key: String
  • severity: String
  • source: String
  • ticket_type: String
auto_optimize_update_one

Fields:

  • account_id: uuid!
  • auto_optimize_config: jsonb
  • category: String!
  • dryrun: Boolean!
  • gitops: auto_optimize_gitops_config
  • id: uuid!
  • notification: autopilot_notification!
  • resource_filter: [autopilot_resource_filter]!
  • schedule: autopilot_schedule!
  • ticket_config: auto_optimize_ticket_config
auto_optimize_update_status_request

Fields:

  • account_id: uuid!
  • id: uuid!
  • status: String!
auto_optimize_update_status_response

Fields:

  • status: String!
auto_optimize_workload_input

Fields:

  • account_id: uuid!
  • resource_filter: [autopilot_resource_filter]!
  • status: String
auto_pilot

to staore meta data for schedules created.

Fields:

  • account_id: uuid!
  • attributes: jsonb!
  • auto_optimize_resource_maps: [auto_optimize_resource_map!]! - An array relationship
  • auto_optimize_resource_maps_aggregate: auto_optimize_resource_map_aggregate! - An aggregate relationship
  • auto_pilot_status: auto_pilot_status! - An object relationship
  • auto_pilot_tasks: [auto_pilot_task!]! - An array relationship
  • auto_pilot_tasks_aggregate: auto_pilot_task_aggregate! - An aggregate relationship
  • category: String!
  • cloud_account: cloud_accounts! - An object relationship
  • created_by: uuid!
  • creation_date: timestamp!
  • end_at: timestamp
  • execution_status: String
  • id: uuid!
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String!
  • next_schedule_time: timestamp
  • notification: jsonb
  • rule: jsonb!
  • schedule_time: String
  • source: String
  • start_at: timestamp!
  • status: auto_pilot_status_enum!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • update_by: uuid
  • update_date: timestamp!
  • user: users! - An object relationship
  • user_updated_by: users - An object relationship
auto_pilot_aggregate

aggregated selection of "auto_pilot"

Fields:

  • aggregate: auto_pilot_aggregate_fields
  • nodes: [auto_pilot!]!
auto_pilot_approval_policy

policy for autopilot(runbook/autooptimize) approval

Fields:

  • account_id: uuid!
  • auto_pilot_approvals: [auto_pilot_approvals!]! - An array relationship
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate! - An aggregate relationship
  • auto_pilot_reviewees: [auto_pilot_reviewee!]! - An array relationship
  • auto_pilot_reviewees_aggregate: auto_pilot_reviewee_aggregate! - An aggregate relationship
  • auto_pilot_reviewers: [auto_pilot_reviewers!]! - An array relationship
  • auto_pilot_reviewers_aggregate: auto_pilot_reviewers_aggregate! - An aggregate relationship
  • cloud_account: cloud_accounts! - An object relationship
  • create_by_user: users! - An object relationship
  • created_at: timestamp!
  • created_by: uuid!
  • id: uuid!
  • policy_attributes: jsonb!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp
  • updated_by: uuid
  • user: users - An object relationship
auto_pilot_approval_policy_aggregate

aggregated selection of "auto_pilot_approval_policy"

Fields:

  • aggregate: auto_pilot_approval_policy_aggregate_fields
  • nodes: [auto_pilot_approval_policy!]!
auto_pilot_approval_policy_updates

Fields:

  • _append: auto_pilot_approval_policy_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_approval_policy_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_approval_policy_delete_elem_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_key: auto_pilot_approval_policy_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_approval_policy_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_approval_policy_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_approval_policy_bool_exp! - filter the rows which have to be updated
auto_pilot_approval_status

enum for auto pilot approval status

Fields:

  • auto_pilot_approvals: [auto_pilot_approvals!]! - An array relationship
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate! - An aggregate relationship
  • description: String
  • status: String!
auto_pilot_approval_status_aggregate

aggregated selection of "auto_pilot_approval_status"

Fields:

  • aggregate: auto_pilot_approval_status_aggregate_fields
  • nodes: [auto_pilot_approval_status!]!
auto_pilot_approval_status_updates

Fields:

  • _set: auto_pilot_approval_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_approval_status_bool_exp! - filter the rows which have to be updated
auto_pilot_approvals

approval status for runbook or auto optimize

Fields:

  • account_id: uuid!
  • attributes: jsonb!
  • auto_pilot_approval_policy: auto_pilot_approval_policy! - An object relationship
  • auto_pilot_approval_status: auto_pilot_approval_status! - An object relationship
  • auto_pilot_type: String!
  • autopilot_id: uuid!
  • cloud_account: cloud_accounts! - An object relationship
  • created_at: timestamp!
  • id: uuid!
  • policy_id: uuid!
  • reviewer_comments: String
  • reviewer_id: uuid!
  • status: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp
  • user_reviwer_id: users! - An object relationship
auto_pilot_approvals_aggregate

aggregated selection of "auto_pilot_approvals"

Fields:

  • aggregate: auto_pilot_approvals_aggregate_fields
  • nodes: [auto_pilot_approvals!]!
auto_pilot_approvals_updates

Fields:

  • _append: auto_pilot_approvals_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_approvals_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_approvals_delete_elem_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_key: auto_pilot_approvals_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_approvals_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_approvals_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_approvals_bool_exp! - filter the rows which have to be updated
auto_pilot_category

enum to store autopilot category

Fields:

  • description: String!
  • value: String!
auto_pilot_category_aggregate

aggregated selection of "auto_pilot_category"

Fields:

  • aggregate: auto_pilot_category_aggregate_fields
  • nodes: [auto_pilot_category!]!
auto_pilot_category_updates

Fields:

  • _set: auto_pilot_category_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_category_bool_exp! - filter the rows which have to be updated
auto_pilot_execution_status

saves execution status for autopilot.

Fields:

  • description: String!
  • value: String!
auto_pilot_execution_status_aggregate

aggregated selection of "auto_pilot_execution_status"

Fields:

  • aggregate: auto_pilot_execution_status_aggregate_fields
  • nodes: [auto_pilot_execution_status!]!
auto_pilot_execution_status_updates

Fields:

  • _set: auto_pilot_execution_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_execution_status_bool_exp! - filter the rows which have to be updated
auto_pilot_policy_delete_input

Fields:

  • account_id: uuid!
  • id: uuid!
auto_pilot_policy_delete_output

Fields:

  • id: uuid!
auto_pilot_reviewee

the users whom auto pilots need to be reviewed

Fields:

  • account_id: uuid!
  • auto_pilot_approval_policy: auto_pilot_approval_policy! - An object relationship
  • created_at: timestamp!
  • id: uuid!
  • policy_id: uuid!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • user: users! - An object relationship
  • user_id: uuid!
auto_pilot_reviewee_aggregate

aggregated selection of "auto_pilot_reviewee"

Fields:

  • aggregate: auto_pilot_reviewee_aggregate_fields
  • nodes: [auto_pilot_reviewee!]!
auto_pilot_reviewee_updates

Fields:

  • _set: auto_pilot_reviewee_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_reviewee_bool_exp! - filter the rows which have to be updated
auto_pilot_reviewers

reviewer allowed to approve a autopilot config

Fields:

  • account_id: uuid!
  • auto_pilot_approval_policy: auto_pilot_approval_policy! - An object relationship
  • created_at: timestamp!
  • id: uuid!
  • policy_id: uuid!
  • reviwer_user: users! - An object relationship
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • user_id: uuid!
auto_pilot_reviewers_aggregate

aggregated selection of "auto_pilot_reviewers"

Fields:

  • aggregate: auto_pilot_reviewers_aggregate_fields
  • nodes: [auto_pilot_reviewers!]!
auto_pilot_reviewers_updates

Fields:

  • _set: auto_pilot_reviewers_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_reviewers_bool_exp! - filter the rows which have to be updated
auto_pilot_status

status enum for auto pilot status

Fields:

  • description: String!
  • value: String!
auto_pilot_status_aggregate

aggregated selection of "auto_pilot_status"

Fields:

  • aggregate: auto_pilot_status_aggregate_fields
  • nodes: [auto_pilot_status!]!
auto_pilot_status_enum

Values:

  • Active - the auto pilot is in active state
  • DRAFT - the auto optimize is waiting for approval
  • Disabled - the auto pilot is disabled
  • Dryrun - the auto pilot is on dry run no task is created for this auto pilot
auto_pilot_status_enum_comparison_exp

Boolean expression to compare columns of type "auto_pilot_status_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: auto_pilot_status_enum
  • _in: [auto_pilot_status_enum!]
  • _is_null: Boolean
  • _neq: auto_pilot_status_enum
  • _nin: [auto_pilot_status_enum!]
auto_pilot_status_updates

Fields:

  • _set: auto_pilot_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_status_bool_exp! - filter the rows which have to be updated
auto_pilot_task

will track tasks scheduled by schedulers

Fields:

  • account_id: uuid!
  • attributes: jsonb!
  • auto_pilot: auto_pilot! - An object relationship
  • auto_pilot_id: uuid!
  • auto_pilot_task_status: auto_pilot_task_status! - An object relationship
  • command: String
  • created_at: timestamp!
  • error: String
  • id: uuid!
  • meta: jsonb!
  • name: String!
  • reason: String
  • recommendation_id: uuid
  • resource_filter: jsonb
  • scheduled_time: timestamp!
  • skipped_by: uuid
  • status: auto_pilot_task_status_enum!
  • task_id: uuid
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp!
auto_pilot_task_aggregate

aggregated selection of "auto_pilot_task"

Fields:

  • aggregate: auto_pilot_task_aggregate_fields
  • nodes: [auto_pilot_task!]!
auto_pilot_task_status

status for auto pilot tasks

Fields:

  • description: String
  • value: String!
auto_pilot_task_status_aggregate

aggregated selection of "auto_pilot_task_status"

Fields:

  • aggregate: auto_pilot_task_status_aggregate_fields
  • nodes: [auto_pilot_task_status!]!
auto_pilot_task_status_enum

Values:

  • Complete - the task is complete after getting acknowledgement.
  • Dryrun - this task is only for dry run no execution will take place
  • Executed - the task is executed.
  • Failed - the task has got failed acknowledgement.
  • In_Progress - the task is in progress
  • Scheduled - the task is scheduled but not executed
  • Skipped - the task is skipped
auto_pilot_task_status_enum_comparison_exp

Boolean expression to compare columns of type "auto_pilot_task_status_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: auto_pilot_task_status_enum
  • _in: [auto_pilot_task_status_enum!]
  • _is_null: Boolean
  • _neq: auto_pilot_task_status_enum
  • _nin: [auto_pilot_task_status_enum!]
auto_pilot_task_status_updates

Fields:

  • _set: auto_pilot_task_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_task_status_bool_exp! - filter the rows which have to be updated
auto_pilot_task_updates

Fields:

  • _append: auto_pilot_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_task_delete_elem_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_key: auto_pilot_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_task_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_task_bool_exp! - filter the rows which have to be updated
auto_pilot_updates

Fields:

  • _append: auto_pilot_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_pilot_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_pilot_delete_elem_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_key: auto_pilot_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_pilot_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_pilot_set_input - sets the columns of the filtered rows to the given values
  • where: auto_pilot_bool_exp! - filter the rows which have to be updated
auto_playbook

meta data for auto playbook

Fields:

  • account_id: uuid!
  • attributes: jsonb!
  • auto_playbook_executions: [auto_playbook_executions!]! - An array relationship
  • auto_playbook_executions_aggregate: auto_playbook_executions_aggregate! - An aggregate relationship
  • auto_playbook_status: auto_playbook_status! - An object relationship
  • auto_playbook_tasks: [auto_playbook_task!]! - An array relationship
  • auto_playbook_tasks_aggregate: auto_playbook_task_aggregate! - An aggregate relationship
  • cloud_account: cloud_accounts! - An object relationship
  • created_at: timestamp!
  • created_by: uuid
  • end_at: timestamp
  • execution_status: String!
  • id: uuid!
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String!
  • notification: jsonb!
  • resource_filter: jsonb!
  • start_at: timestamp!
  • status: auto_playbook_status_enum!
  • tasks: jsonb!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • trigger: jsonb!
  • update_at: timestamp!
  • updated_by: uuid
  • updated_by_user: users - An object relationship
  • user: users - An object relationship
auto_playbook_actions

columns and relationships of "auto_playbook_actions"

Fields:

  • Source: String!
  • category: String!
  • config: jsonb!
  • created_at: timestamp!
  • description: String!
  • id: uuid!
  • name: String!
  • updated_at: timestamp!
auto_playbook_actions_aggregate

aggregated selection of "auto_playbook_actions"

Fields:

  • aggregate: auto_playbook_actions_aggregate_fields
  • nodes: [auto_playbook_actions!]!
auto_playbook_actions_updates

Fields:

  • _append: auto_playbook_actions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_actions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_actions_delete_elem_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_key: auto_playbook_actions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_actions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_actions_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_actions_bool_exp! - filter the rows which have to be updated
auto_playbook_aggregate

aggregated selection of "auto_playbook"

Fields:

  • aggregate: auto_playbook_aggregate_fields
  • nodes: [auto_playbook!]!
auto_playbook_execution_status

columns and relationships of "auto_playbook_execution_status"

Fields:

  • description: String!
  • values: String!
auto_playbook_execution_status_aggregate

aggregated selection of "auto_playbook_execution_status"

Fields:

  • aggregate: auto_playbook_execution_status_aggregate_fields
  • nodes: [auto_playbook_execution_status!]!
auto_playbook_execution_status_updates

Fields:

  • _set: auto_playbook_execution_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_execution_status_bool_exp! - filter the rows which have to be updated
auto_playbook_executions

columns and relationships of "auto_playbook_executions"

Fields:

  • account_id: uuid!
  • attribute: jsonb!
  • auto_playbook: auto_playbook! - An object relationship
  • auto_playbook_execution_status_fkey: auto_pilot_execution_status - An object relationship
  • auto_playbook_id: uuid!
  • auto_playbook_tasks: [auto_playbook_task!]! - An array relationship
  • auto_playbook_tasks_aggregate: auto_playbook_task_aggregate! - An aggregate relationship
  • cloud_account: cloud_accounts! - An object relationship
  • created_at: timestamp!
  • id: uuid!
  • meta: jsonb
  • scheduled_at: timestamp!
  • skipeed_by_user: users - An object relationship
  • skipped_by: uuid
  • status: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp
auto_playbook_executions_aggregate

aggregated selection of "auto_playbook_executions"

Fields:

  • aggregate: auto_playbook_executions_aggregate_fields
  • nodes: [auto_playbook_executions!]!
auto_playbook_executions_updates

Fields:

  • _append: auto_playbook_executions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_executions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_executions_delete_elem_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_key: auto_playbook_executions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_executions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_executions_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_executions_bool_exp! - filter the rows which have to be updated
auto_playbook_notification

Fields:

  • email: auto_playbook_notification_enable
  • google_chat: auto_playbook_notification_enable
  • ms_teams: auto_playbook_notification_enable
  • slack: auto_playbook_notification_enable
auto_playbook_notification_enable

Fields:

  • enabled: Boolean!
auto_playbook_status

columns and relationships of "auto_playbook_status"

Fields:

  • auto_playbooks: [auto_playbook!]! - An array relationship
  • auto_playbooks_aggregate: auto_playbook_aggregate! - An aggregate relationship
  • description: String!
  • value: String!
auto_playbook_status_aggregate

aggregated selection of "auto_playbook_status"

Fields:

  • aggregate: auto_playbook_status_aggregate_fields
  • nodes: [auto_playbook_status!]!
auto_playbook_status_enum

Values:

  • ACTIVE - the auto playbook is in active state
  • DISABLED - the auto playbook is in disabled
  • DRAFT - the runbook is waiting for approval
auto_playbook_status_enum_comparison_exp

Boolean expression to compare columns of type "auto_playbook_status_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: auto_playbook_status_enum
  • _in: [auto_playbook_status_enum!]
  • _is_null: Boolean
  • _neq: auto_playbook_status_enum
  • _nin: [auto_playbook_status_enum!]
auto_playbook_status_updates

Fields:

  • _set: auto_playbook_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_status_bool_exp! - filter the rows which have to be updated
auto_playbook_task

columns and relationships of "auto_playbook_task"

Fields:

  • account_id: uuid!
  • action_id: uuid
  • action_type: String!
  • attributes: jsonb!
  • auto_playbook: auto_playbook! - An object relationship
  • auto_playbook_execution: auto_playbook_executions - An object relationship
  • auto_playbook_id: uuid!
  • auto_playbook_task_status: auto_playbook_task_status! - An object relationship
  • cloud_account: cloud_accounts! - An object relationship
  • created_at: timestamp!
  • error: String
  • execution_id: uuid
  • id: uuid!
  • meta_data: jsonb!
  • name: String!
  • reason: String
  • resource: jsonb
  • result: String
  • runbook_task_outputs: [runbook_task_output!]! - An array relationship
  • runbook_task_outputs_aggregate: runbook_task_output_aggregate! - An aggregate relationship
  • scheduled_time: timestamp!
  • status: String!
  • task_type: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp!
auto_playbook_task_aggregate

aggregated selection of "auto_playbook_task"

Fields:

  • aggregate: auto_playbook_task_aggregate_fields
  • nodes: [auto_playbook_task!]!
auto_playbook_task_input

Fields:

  • config: jsonb!
  • type: String!
auto_playbook_task_status

columns and relationships of "auto_playbook_task_status"

Fields:

  • description: String
  • value: String!
auto_playbook_task_status_aggregate

aggregated selection of "auto_playbook_task_status"

Fields:

  • aggregate: auto_playbook_task_status_aggregate_fields
  • nodes: [auto_playbook_task_status!]!
auto_playbook_task_status_updates

Fields:

  • _set: auto_playbook_task_status_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_task_status_bool_exp! - filter the rows which have to be updated
auto_playbook_task_updates

Fields:

  • _append: auto_playbook_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_task_delete_elem_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_key: auto_playbook_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_task_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_task_bool_exp! - filter the rows which have to be updated
auto_playbook_updates

Fields:

  • _append: auto_playbook_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: auto_playbook_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: auto_playbook_delete_elem_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_key: auto_playbook_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: auto_playbook_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: auto_playbook_set_input - sets the columns of the filtered rows to the given values
  • where: auto_playbook_bool_exp! - filter the rows which have to be updated
auto_runbook_action_delete_one_input

Fields:

  • account_id: uuid!
  • id: uuid!
auto_runbook_action_delete_one_output

Fields:

  • id: uuid!
auto_runbook_action_insert_one_input

Fields:

  • account_id: uuid!
  • account_type: String
  • action_name: String!
  • base_action_configs: jsonb!
  • configs: jsonb!
  • description: String!
  • id: uuid
  • library_id: uuid!
  • status: String
auto_runbook_action_insert_one_output

Fields:

  • id: uuid!
auto_runbook_action_publish_input

Fields:

  • account_id: uuid!
  • id: uuid!
auto_runbook_action_status_output

Fields:

  • status: String!
auto_runbook_custom_action_update_input

Fields:

  • account_id: uuid!
  • action_name: String!
  • base_action_configs: jsonb!
  • configs: jsonb!
  • description: String!
  • id: uuid
  • library_id: uuid!
  • status: String
auto_runbook_custom_action_update_output

Fields:

  • id: uuid!
auto_runbook_edit_one

Fields:

  • account_id: uuid!
  • dryrun: Boolean!
  • id: uuid!
  • name: String!
  • notification: auto_playbook_notification!
  • resource_filter: [resource_filter_request!]!
  • tasks: [auto_playbook_task_input!]!
  • trigger: jsonb!
auto_runbook_insert_one

Fields:

  • account_id: uuid!
  • dryrun: Boolean!
  • name: String!
  • notification: auto_playbook_notification!
  • resource_filter: [resource_filter_request!]!
  • tasks: [auto_playbook_task_input!]!
  • trigger: jsonb!
auto_runbook_insert_one_output

Fields:

  • error: String
  • id: uuid
auto_runbook_manual_run_request

Fields:

  • id: uuid!
auto_runbook_manual_run_response

Fields:

  • status: String!
auto_runbook_skip_request

Fields:

  • by_minutes: Int
  • id: uuid!
auto_runbook_skip_response

Fields:

  • message: String!
auto_runbook_task_approval_request_body

Fields:

  • account_id: uuid!
  • status: String!
  • task_id: uuid!
auto_runbook_task_approval_response

Fields:

  • id: String!
auto_runbook_task_manual_run_request

Fields:

  • id: uuid!
auto_runbook_task_manual_run_response

Fields:

  • status: String!
auto_runbook_update_status_request

Fields:

  • id: uuid!
  • status: String!
auto_runbook_update_status_response

Fields:

  • status: String!
autopilot_attributes

to store variables related to autopilot

Fields:

  • id: uuid!
  • key: String!
  • value: String!
autopilot_attributes_aggregate

aggregated selection of "autopilot_attributes"

Fields:

  • aggregate: autopilot_attributes_aggregate_fields
  • nodes: [autopilot_attributes!]!
autopilot_attributes_updates

Fields:

  • _set: autopilot_attributes_set_input - sets the columns of the filtered rows to the given values
  • where: autopilot_attributes_bool_exp! - filter the rows which have to be updated
autopilot_google_chat_notification_config

Fields:

  • channel_id: String
  • enabled: Boolean!
autopilot_ms_teams_notification_config

Fields:

  • channel_id: String
  • enabled: Boolean!
  • team_id: String
autopilot_notification

Fields:

  • email: autopilot_notification_enable
  • google_chat: autopilot_google_chat_notification_config
  • ms_teams: autopilot_ms_teams_notification_config
  • slack: autopilot_slack_notification_config
autopilot_notification_enable

Fields:

  • enabled: Boolean!
autopilot_resource_filter

Fields:

  • name: String
  • namespace: String!
  • type: String
autopilot_schedule

Fields:

  • end_date: timestamp
  • frequency: String
  • start_date: timestamp
autopilot_slack_notification_config

Fields:

  • channel_id: String
  • enabled: Boolean!

Agents

agent

columns and relationships of "agent"

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • cloud_account_id: uuid!
  • connection_status: jsonb
  • created_at: timestamp!
  • id: uuid!
  • k8s_provider: String
  • k8s_version: String
  • last_connected_at: timestamp
  • last_synced_at: timestamp
  • status: String!
  • status_message: String
  • tenant: uuid!
  • type: String
  • updated_at: timestamp!
  • version: String
agent_aggregate

aggregated selection of "agent"

Fields:

  • aggregate: agent_aggregate_fields
  • nodes: [agent!]!
agent_audit_log

columns and relationships of "agent_audit_log"

Fields:

  • agent_id: uuid
  • client_ip: String!
  • cloud_account_id: uuid
  • created_at: timestamptz!
  • headers: jsonb!
  • id: uuid!
  • method: String
  • status_code: Int!
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp!
  • url: String!
agent_audit_log_aggregate

aggregated selection of "agent_audit_log"

Fields:

  • aggregate: agent_audit_log_aggregate_fields
  • nodes: [agent_audit_log!]!
agent_audit_log_updates

Fields:

  • _append: agent_audit_log_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_audit_log_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_audit_log_delete_elem_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_key: agent_audit_log_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: agent_audit_log_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: agent_audit_log_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_audit_log_set_input - sets the columns of the filtered rows to the given values
  • where: agent_audit_log_bool_exp! - filter the rows which have to be updated
agent_playbook

columns and relationships of "agent_playbook"

Fields:

  • action_params: jsonb
  • alert_name: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid!
  • processor: String
  • source: agent_playbook_source_enum
  • tenant_id: uuid
  • trigger_params: jsonb
  • updated_at: timestamptz
agent_playbook_action

columns and relationships of "agent_playbook_action"

Fields:

  • action_name: String
  • category: String
  • description: String
  • display_name: String!
  • execution_mode: String
  • name: String!
  • params: jsonb
  • source: String
agent_playbook_action_aggregate

aggregated selection of "agent_playbook_action"

Fields:

  • aggregate: agent_playbook_action_aggregate_fields
  • nodes: [agent_playbook_action!]!
agent_playbook_action_updates

Fields:

  • _append: agent_playbook_action_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_action_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_action_delete_elem_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_key: agent_playbook_action_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_action_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_action_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_action_bool_exp! - filter the rows which have to be updated
agent_playbook_aggregate

aggregated selection of "agent_playbook"

Fields:

  • aggregate: agent_playbook_aggregate_fields
  • nodes: [agent_playbook!]!
agent_playbook_processor

columns and relationships of "agent_playbook_processor"

Fields:

  • name: String!
  • value: String!
agent_playbook_processor_aggregate

aggregated selection of "agent_playbook_processor"

Fields:

  • aggregate: agent_playbook_processor_aggregate_fields
  • nodes: [agent_playbook_processor!]!
agent_playbook_processor_updates

Fields:

  • _set: agent_playbook_processor_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_processor_bool_exp! - filter the rows which have to be updated
agent_playbook_source

columns and relationships of "agent_playbook_source"

Fields:

  • value: String!
agent_playbook_source_aggregate

aggregated selection of "agent_playbook_source"

Fields:

  • aggregate: agent_playbook_source_aggregate_fields
  • nodes: [agent_playbook_source!]!
agent_playbook_source_enum

Values:

  • agent
  • user
agent_playbook_source_enum_comparison_exp

Boolean expression to compare columns of type "agent_playbook_source_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: agent_playbook_source_enum
  • _in: [agent_playbook_source_enum!]
  • _is_null: Boolean
  • _neq: agent_playbook_source_enum
  • _nin: [agent_playbook_source_enum!]
agent_playbook_source_updates

Fields:

  • _set: agent_playbook_source_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_source_bool_exp! - filter the rows which have to be updated
agent_playbook_trigger

columns and relationships of "agent_playbook_trigger"

Fields:

  • name: String!
  • params: jsonb
agent_playbook_trigger_aggregate

aggregated selection of "agent_playbook_trigger"

Fields:

  • aggregate: agent_playbook_trigger_aggregate_fields
  • nodes: [agent_playbook_trigger!]!
agent_playbook_trigger_updates

Fields:

  • _append: agent_playbook_trigger_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_trigger_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_trigger_delete_elem_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_key: agent_playbook_trigger_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_trigger_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_trigger_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_trigger_bool_exp! - filter the rows which have to be updated
agent_playbook_updates

Fields:

  • _append: agent_playbook_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_playbook_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_playbook_delete_elem_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_key: agent_playbook_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_playbook_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_playbook_set_input - sets the columns of the filtered rows to the given values
  • where: agent_playbook_bool_exp! - filter the rows which have to be updated
agent_task

columns and relationships of "agent_task"

Fields:

  • action: String!
  • agent_id: uuid
  • cloud_account_id: uuid!
  • created_at: timestamptz!
  • created_by: uuid
  • id: uuid!
  • payload: jsonb!
  • resoruce_id: uuid
  • response: jsonb
  • source: String
  • source_id: uuid
  • status: String
  • tenant: uuid!
  • updated_at: timestamptz!
agent_task_aggregate

aggregated selection of "agent_task"

Fields:

  • aggregate: agent_task_aggregate_fields
  • nodes: [agent_task!]!
agent_task_updates

Fields:

  • _append: agent_task_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_task_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_task_delete_elem_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_key: agent_task_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_task_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_task_set_input - sets the columns of the filtered rows to the given values
  • where: agent_task_bool_exp! - filter the rows which have to be updated
agent_updates

Fields:

  • _append: agent_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: agent_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: agent_delete_elem_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_key: agent_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: agent_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: agent_set_input - sets the columns of the filtered rows to the given values
  • where: agent_bool_exp! - filter the rows which have to be updated

AI & LLM

kg_filter_options

Fields:

  • account_ids: [String]
  • attribute_keys: [String]
  • label_keys: [String]
  • last_sync_time: timestamptz
  • node_types: [String]
kg_filter_values

Fields:

  • filter_key: String!
  • filter_type: String!
  • values: [String]
kg_get_complete_graph_input

Fields:

  • account_ids: [String]
  • attributes: jsonb
  • labels: jsonb
  • levels: Int
  • node_ids: [String]
  • node_types: [String]
  • sources: [String]
kg_get_complete_graph_output

Fields:

  • data: kg_graph
kg_get_filter_options_output

Fields:

  • data: kg_filter_options
kg_get_filter_values_input

Fields:

  • filter_key: String!
  • filter_type: String!
kg_get_filter_values_output

Fields:

  • data: kg_filter_values
kg_graph

Fields:

  • edges: [jsonb]
  • generated_at: timestamp
  • nodes: [jsonb]
  • tenant_id: String
knowledge_base

columns and relationships of "knowledge_base"

Fields:

  • created_at: timestamptz!
  • description: String!
  • diagnosis: String!
  • id: uuid!
  • impact: String!
  • mitigation: String!
  • rule_name: String!
  • updated_at: timestamptz!
knowledge_base_aggregate

aggregated selection of "knowledge_base"

Fields:

  • aggregate: knowledge_base_aggregate_fields
  • nodes: [knowledge_base!]!
knowledge_base_updates

Fields:

  • _set: knowledge_base_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_base_bool_exp! - filter the rows which have to be updated
knowledge_graph_edge

columns and relationships of "knowledge_graph_edge"

Fields:

  • cloud_account_id: uuid!
  • created_at: timestamp!
  • destination_node_id: uuid!
  • id: uuid!
  • level: String!
  • properties: jsonb!
  • relationship_type: String!
  • source_node_id: uuid!
  • tenant_id: uuid!
  • updated_at: timestamp!
knowledge_graph_edge_aggregate

aggregated selection of "knowledge_graph_edge"

Fields:

  • aggregate: knowledge_graph_edge_aggregate_fields
  • nodes: [knowledge_graph_edge!]!
knowledge_graph_edge_updates

Fields:

  • _append: knowledge_graph_edge_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_edge_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_edge_delete_elem_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_key: knowledge_graph_edge_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: knowledge_graph_edge_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_edge_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_edge_bool_exp! - filter the rows which have to be updated
knowledge_graph_metadata

columns and relationships of "knowledge_graph_metadata"

Fields:

  • additional_properties: jsonb
  • attribute_key: String!
  • attribute_type: String!
  • attribute_value: jsonb!
  • cloud_account_id: uuid!
  • id: uuid!
  • last_sync_at: timestamp
  • tenant_id: uuid!
knowledge_graph_metadata_aggregate

aggregated selection of "knowledge_graph_metadata"

Fields:

  • aggregate: knowledge_graph_metadata_aggregate_fields
  • nodes: [knowledge_graph_metadata!]!
knowledge_graph_metadata_updates

Fields:

  • _append: knowledge_graph_metadata_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_metadata_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_metadata_delete_elem_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_key: knowledge_graph_metadata_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: knowledge_graph_metadata_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_metadata_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_metadata_bool_exp! - filter the rows which have to be updated
knowledge_graph_node

columns and relationships of "knowledge_graph_node"

Fields:

  • cloud_account_id: uuid!
  • created_at: timestamp!
  • id: uuid!
  • is_active: Boolean!
  • labels: jsonb!
  • last_sync_version: numeric!
  • level: String!
  • node_type: String
  • properties: jsonb!
  • query_attributes: jsonb!
  • tenant_id: uuid!
  • unique_key: String!
  • updated_at: timestamp!
knowledge_graph_node_aggregate

aggregated selection of "knowledge_graph_node"

Fields:

  • aggregate: knowledge_graph_node_aggregate_fields
  • nodes: [knowledge_graph_node!]!
knowledge_graph_node_updates

Fields:

  • _append: knowledge_graph_node_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_node_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_node_delete_elem_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_key: knowledge_graph_node_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: knowledge_graph_node_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: knowledge_graph_node_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_node_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_node_bool_exp! - filter the rows which have to be updated
knowledge_graph_relationship_types

columns and relationships of "knowledge_graph_relationship_types"

Fields:

  • name: String!
  • value: String!
knowledge_graph_relationship_types_aggregate

aggregated selection of "knowledge_graph_relationship_types"

Fields:

  • aggregate: knowledge_graph_relationship_types_aggregate_fields
  • nodes: [knowledge_graph_relationship_types!]!
knowledge_graph_relationship_types_updates

Fields:

  • _set: knowledge_graph_relationship_types_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_relationship_types_bool_exp! - filter the rows which have to be updated
knowledge_graph_tenant_filters

Stores knowledge graph filter configurations per tenant. Each tenant can have multiple named filter configurations.

Fields:

  • account_ids: jsonb!
  • created_at: timestamptz!
  • enabled: Boolean!
  • filter_name: String!
  • filters: jsonb!
  • flow_sources: jsonb!
  • id: uuid!
  • is_default: Boolean!
  • last_sync_time: timestamp
  • last_sync_version: numeric!
  • sources: jsonb!
  • tenant_id: uuid!
knowledge_graph_tenant_filters_aggregate

aggregated selection of "knowledge_graph_tenant_filters"

Fields:

  • aggregate: knowledge_graph_tenant_filters_aggregate_fields
  • nodes: [knowledge_graph_tenant_filters!]!
knowledge_graph_tenant_filters_updates

Fields:

  • _append: knowledge_graph_tenant_filters_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: knowledge_graph_tenant_filters_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: knowledge_graph_tenant_filters_delete_elem_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_key: knowledge_graph_tenant_filters_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: knowledge_graph_tenant_filters_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: knowledge_graph_tenant_filters_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: knowledge_graph_tenant_filters_set_input - sets the columns of the filtered rows to the given values
  • where: knowledge_graph_tenant_filters_bool_exp! - filter the rows which have to be updated
llm_agents

columns and relationships of "llm_agents"

Fields:

  • config: json
  • created_at: timestamp
  • created_by: uuid
  • description: String!
  • executor_type: String!
  • id: uuid!
  • name: String!
  • status: String!
  • system_prompt: String!
  • system_prompt_variables: json
  • tenant_id: uuid
  • tools: json
  • type: String!
  • updated_at: timestamp
  • updated_by: String
llm_agents_aggregate

aggregated selection of "llm_agents"

Fields:

  • aggregate: llm_agents_aggregate_fields
  • nodes: [llm_agents!]!
llm_agents_installation

columns and relationships of "llm_agents_installation"

Fields:

  • account_id: uuid!
  • additional_instructions: String
  • agent_id: String!
  • config: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid!
  • tools: json
  • updated_at: timestamp
  • updated_by: uuid
llm_agents_installation_aggregate

aggregated selection of "llm_agents_installation"

Fields:

  • aggregate: llm_agents_installation_aggregate_fields
  • nodes: [llm_agents_installation!]!
llm_agents_installation_updates

Fields:

  • _set: llm_agents_installation_set_input - sets the columns of the filtered rows to the given values
  • where: llm_agents_installation_bool_exp! - filter the rows which have to be updated
llm_agents_updates

Fields:

  • _set: llm_agents_set_input - sets the columns of the filtered rows to the given values
  • where: llm_agents_bool_exp! - filter the rows which have to be updated
llm_conversation_agent

columns and relationships of "llm_conversation_agent"

Fields:

  • account_id: uuid!
  • agent_name: String!
  • agent_step_response: String
  • cached_input_tokens: Int! - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: uuid!
  • created_at: timestamp!
  • followup_message_id: uuid
  • id: uuid!
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • llm_conversation: llm_conversations! - An object relationship
  • llm_conversation_message: llm_conversation_messages! - An object relationship
  • llm_conversation_tool_calls: [llm_conversation_tool_calls!]! - An array relationship
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate! - An aggregate relationship
  • llm_model: String
  • llm_provider: String
  • message_id: uuid!
  • non_cached_input_tokens: Int! - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM
  • parent_agent_id: uuid
  • query: String
  • query_config: String
  • query_context: String
  • response: String
  • response_summary: String
  • state: String
  • status: String!
  • thought: String
  • updated_at: timestamp
  • user_id: uuid
llm_conversation_agent_aggregate

aggregated selection of "llm_conversation_agent"

Fields:

  • aggregate: llm_conversation_agent_aggregate_fields
  • nodes: [llm_conversation_agent!]!
llm_conversation_agent_critiques

columns and relationships of "llm_conversation_agent_critiques"

Fields:

  • account_id: uuid!
  • agent_name: String!
  • conversation_id: uuid!
  • created_at: timestamptz!
  • critique_type: String! - rewoo_planner critiques the plan, rewoo_solver critiques the final response, and react_answer critiques the agent’s execution actions.
  • critiqued_content: String!
  • decision: String!
  • feedback: String
  • id: uuid!
  • input: String!
  • message_id: uuid!
llm_conversation_agent_critiques_aggregate

aggregated selection of "llm_conversation_agent_critiques"

Fields:

  • aggregate: llm_conversation_agent_critiques_aggregate_fields
  • nodes: [llm_conversation_agent_critiques!]!
llm_conversation_agent_critiques_updates

Fields:

  • _set: llm_conversation_agent_critiques_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_agent_critiques_bool_exp! - filter the rows which have to be updated
llm_conversation_agent_updates

Fields:

  • _inc: llm_conversation_agent_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_conversation_agent_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_agent_bool_exp! - filter the rows which have to be updated
llm_conversation_feedback

columns and relationships of "llm_conversation_feedback"

Fields:

  • additional_notes: String
  • cloud_account_id: uuid!
  • conversation_id: String!
  • created_at: timestamp!
  • id: Int!
  • llm_response: String!
  • module: String!
  • question: String!
  • session_id: String!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • useful: Boolean
  • user_corrected_response: String
  • user_id: uuid!
llm_conversation_feedback_aggregate

aggregated selection of "llm_conversation_feedback"

Fields:

  • aggregate: llm_conversation_feedback_aggregate_fields
  • nodes: [llm_conversation_feedback!]!
llm_conversation_feedback_updates

Fields:

  • _inc: llm_conversation_feedback_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_conversation_feedback_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_feedback_bool_exp! - filter the rows which have to be updated
llm_conversation_history

columns and relationships of "llm_conversation_history"

Fields:

  • account_id: uuid!
  • chain_name: String
  • id: uuid!
  • message: String
  • recorded_at: timestamp!
  • request_type: String!
  • role: String
  • session_id: String
  • user_id: uuid!
llm_conversation_history_aggregate

aggregated selection of "llm_conversation_history"

Fields:

  • aggregate: llm_conversation_history_aggregate_fields
  • nodes: [llm_conversation_history!]!
llm_conversation_history_updates

Fields:

  • _set: llm_conversation_history_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_history_bool_exp! - filter the rows which have to be updated
llm_conversation_messages

columns and relationships of "llm_conversation_messages"

Fields:

  • account_id: uuid!
  • ack_message: String
  • agent_name: String
  • classification: String
  • compact_response: String
  • conversation_id: uuid!
  • created_at: timestamp!
  • eval_metrics: String
  • id: uuid!
  • llm_conversation: llm_conversations! - An object relationship
  • llm_conversation_agents: [llm_conversation_agent!]! - An array relationship
  • llm_conversation_agents_aggregate: llm_conversation_agent_aggregate! - An aggregate relationship
  • llm_conversation_tool_calls: [llm_conversation_tool_calls!]! - An array relationship
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate! - An aggregate relationship
  • llm_model: String
  • llm_provider: String
  • message: String!
  • message_config: String
  • message_context: String
  • message_type: String!
  • parent_agent_id: uuid
  • remediation: jsonb
  • response: String
  • role: String!
  • status: llm_conversation_status!
  • successful_tasks: Int
  • suggestions: String
  • updated_at: timestamp!
  • user: users - An object relationship
  • user_id: uuid
  • worker_name: String
llm_conversation_messages_aggregate

aggregated selection of "llm_conversation_messages"

Fields:

  • aggregate: llm_conversation_messages_aggregate_fields
  • nodes: [llm_conversation_messages!]!
llm_conversation_messages_updates

Fields:

  • _append: llm_conversation_messages_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_conversation_messages_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_conversation_messages_delete_elem_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_key: llm_conversation_messages_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_conversation_messages_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_conversation_messages_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_conversation_messages_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_messages_bool_exp! - filter the rows which have to be updated
llm_conversation_saved

Saved conversation of user

Fields:

  • conversation_id: uuid!
  • created_at: timestamp!
  • id: uuid!
  • llm_conversation: llm_conversations! - An object relationship
  • user: users! - An object relationship
  • user_id: uuid!
llm_conversation_saved_aggregate

aggregated selection of "llm_conversation_saved"

Fields:

  • aggregate: llm_conversation_saved_aggregate_fields
  • nodes: [llm_conversation_saved!]!
llm_conversation_saved_updates

Fields:

  • _set: llm_conversation_saved_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_saved_bool_exp! - filter the rows which have to be updated
llm_conversation_status
llm_conversation_status_comparison_exp

Boolean expression to compare columns of type "llm_conversation_status". All fields are combined with logical 'AND'.

Fields:

  • _eq: llm_conversation_status
  • _gt: llm_conversation_status
  • _gte: llm_conversation_status
  • _in: [llm_conversation_status!]
  • _is_null: Boolean
  • _lt: llm_conversation_status
  • _lte: llm_conversation_status
  • _neq: llm_conversation_status
  • _nin: [llm_conversation_status!]
llm_conversation_tool_calls

columns and relationships of "llm_conversation_tool_calls"

Fields:

  • account_id: String
  • agent_id: uuid
  • child_agent_id: String
  • conversation_id: uuid
  • created_at: timestamp!
  • id: uuid!
  • llm_conversation: llm_conversations - An object relationship
  • llm_conversation_agent: llm_conversation_agent - An object relationship
  • llm_conversation_message: llm_conversation_messages - An object relationship
  • message_id: uuid
  • parameters: String!
  • params_sql: String
  • references: String
  • response: String
  • status: String
  • thought: String
  • tool_id: String
  • tool_name: String!
  • tool_type: String
  • updated_at: timestamp
  • user_id: String
llm_conversation_tool_calls_aggregate

aggregated selection of "llm_conversation_tool_calls"

Fields:

  • aggregate: llm_conversation_tool_calls_aggregate_fields
  • nodes: [llm_conversation_tool_calls!]!
llm_conversation_tool_calls_updates

Fields:

  • _set: llm_conversation_tool_calls_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversation_tool_calls_bool_exp! - filter the rows which have to be updated
llm_conversations

columns and relationships of "llm_conversations"

Fields:

  • account_id: uuid!
  • context: String
  • created_at: timestamp!
  • id: uuid!
  • llm_conversation_agents: [llm_conversation_agent!]! - An array relationship
  • llm_conversation_agents_aggregate: llm_conversation_agent_aggregate! - An aggregate relationship
  • llm_conversation_messages: [llm_conversation_messages!]! - An array relationship
  • llm_conversation_messages_aggregate: llm_conversation_messages_aggregate! - An aggregate relationship
  • llm_conversation_saveds: [llm_conversation_saved!]! - An array relationship
  • llm_conversation_saveds_aggregate: llm_conversation_saved_aggregate! - An aggregate relationship
  • llm_conversation_tool_calls: [llm_conversation_tool_calls!]! - An array relationship
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate! - An aggregate relationship
  • llm_model: String
  • llm_provider: String
  • session_id: String
  • source: String
  • status: llm_conversation_status!
  • tenant_id: uuid!
  • title: String
  • updated_at: timestamp!
  • user: users - An object relationship
  • user_id: uuid
llm_conversations_aggregate

aggregated selection of "llm_conversations"

Fields:

  • aggregate: llm_conversations_aggregate_fields
  • nodes: [llm_conversations!]!
llm_conversations_updates

Fields:

  • _set: llm_conversations_set_input - sets the columns of the filtered rows to the given values
  • where: llm_conversations_bool_exp! - filter the rows which have to be updated
llm_functions

columns and relationships of "llm_functions"

Fields:

  • account_id: uuid
  • created_at: timestamp!
  • created_by: uuid
  • description: String
  • id: uuid!
  • name: String!
  • prompt: String!
  • status: String
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
  • variable_defaults: jsonb
  • variables: jsonb
  • version: Int
llm_functions_aggregate

aggregated selection of "llm_functions"

Fields:

  • aggregate: llm_functions_aggregate_fields
  • nodes: [llm_functions!]!
llm_functions_updates

Fields:

  • _append: llm_functions_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_functions_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_functions_delete_elem_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_key: llm_functions_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_functions_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_functions_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_functions_set_input - sets the columns of the filtered rows to the given values
  • where: llm_functions_bool_exp! - filter the rows which have to be updated
llm_model_pricing

Lists all llm models, their providers and pricing per input/output tokens. Note: Table should be updated whenever a new model is launched or existing model pricing is changed

Fields:

  • cache_cost_per_million_tokens_per_hour: Float! - in USD($)
  • cost_per_million_input_tokens: Float! - in USD($)
  • cost_per_million_output_tokens: Float! - in USD($)
  • created_at: timestamptz
  • id: uuid!
  • model_name: String!
  • provider_name: String!
llm_model_pricing_aggregate

aggregated selection of "llm_model_pricing"

Fields:

  • aggregate: llm_model_pricing_aggregate_fields
  • nodes: [llm_model_pricing!]!
llm_model_pricing_updates

Fields:

  • _inc: llm_model_pricing_inc_input - increments the numeric columns with given value of the filtered values
  • _set: llm_model_pricing_set_input - sets the columns of the filtered rows to the given values
  • where: llm_model_pricing_bool_exp! - filter the rows which have to be updated
llm_rag_audit

columns and relationships of "llm_rag_audit"

Fields:

  • cloud_account_id: uuid!
  • conversation_id: uuid
  • id: uuid!
  • module: String
  • query: String!
  • response: jsonb!
  • score: float8!
llm_rag_audit_aggregate

aggregated selection of "llm_rag_audit"

Fields:

  • aggregate: llm_rag_audit_aggregate_fields
  • nodes: [llm_rag_audit!]!
llm_rag_audit_updates

Fields:

  • _append: llm_rag_audit_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: llm_rag_audit_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: llm_rag_audit_delete_elem_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_key: llm_rag_audit_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: llm_rag_audit_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: llm_rag_audit_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: llm_rag_audit_set_input - sets the columns of the filtered rows to the given values
  • where: llm_rag_audit_bool_exp! - filter the rows which have to be updated
llm_rags

columns and relationships of "llm_rags"

Fields:

  • account_id: uuid
  • agent_id: String
  • cloud_account: cloud_accounts - An object relationship
  • created_at: timestamp
  • created_by: uuid
  • data: String!
  • data_filename: String
  • data_format: String
  • id: uuid!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp
  • updated_by: uuid
  • userCreatedBy: users - An object relationship
  • userUpdatedBy: users - An object relationship
llm_rags_aggregate

aggregated selection of "llm_rags"

Fields:

  • aggregate: llm_rags_aggregate_fields
  • nodes: [llm_rags!]!
llm_rags_updates

Fields:

  • _set: llm_rags_set_input - sets the columns of the filtered rows to the given values
  • where: llm_rags_bool_exp! - filter the rows which have to be updated

Observability

application_group

This table contains groups definition

Fields:

  • application_group_mappings: [application_group_mapping!]! - An array relationship
  • application_group_mappings_aggregate: application_group_mapping_aggregate! - An aggregate relationship
  • created_at: timestamp!
  • created_by: uuid!
  • created_by_user: users! - An object relationship
  • description: String
  • id: uuid!
  • name: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
  • updated_by_user: users - An object relationship
application_group_aggregate

aggregated selection of "application_group"

Fields:

  • aggregate: application_group_aggregate_fields
  • nodes: [application_group!]!
application_group_mapping

This table contains the list of applications which are part of an application_group

Fields:

  • account_id: uuid!
  • application_group: application_group! - An object relationship
  • cloud_account: cloud_accounts! - An object relationship
  • cloud_resource_id: uuid!
  • group_id: uuid!
  • id: uuid!
  • k8s_workload: k8s_workloads! - An object relationship
  • namespace_name: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • workload_kind: String!
  • workload_name: String!
application_group_mapping_aggregate

aggregated selection of "application_group_mapping"

Fields:

  • aggregate: application_group_mapping_aggregate_fields
  • nodes: [application_group_mapping!]!
application_group_mapping_updates

Fields:

  • _set: application_group_mapping_set_input - sets the columns of the filtered rows to the given values
  • where: application_group_mapping_bool_exp! - filter the rows which have to be updated
application_group_updates

Fields:

  • _set: application_group_set_input - sets the columns of the filtered rows to the given values
  • where: application_group_bool_exp! - filter the rows which have to be updated
application_profile

columns and relationships of "application_profile"

Fields:

  • cloud_account_id: uuid!
  • created_at: timestamp
  • created_by: String
  • id: uuid!
  • namespace: String!
  • output_type: String
  • pod_name: String!
  • profile: jsonb!
  • profile_duration: Int
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String!
  • source_id: String!
  • tenant_id: uuid!
  • updated_at: timestamptz
  • workload_name: String!
application_profile_aggregate

aggregated selection of "application_profile"

Fields:

  • aggregate: application_profile_aggregate_fields
  • nodes: [application_profile!]!
application_profile_updates

Fields:

  • _append: application_profile_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: application_profile_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: application_profile_delete_elem_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_key: application_profile_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: application_profile_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: application_profile_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: application_profile_set_input - sets the columns of the filtered rows to the given values
  • where: application_profile_bool_exp! - filter the rows which have to be updated
metrics_response

Fields:

  • data: jsonb!
metrics_summary

columns and relationships of "metrics_summary"

Fields:

  • description: String
  • entity_id: String!
  • entity_name: String!
  • entity_type: String!
  • id: uuid!
  • metrics_summary_tenant: tenant! - An object relationship
  • name: String!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • value: float8
  • value_unit: String
metrics_summary_aggregate

aggregated selection of "metrics_summary"

Fields:

  • aggregate: metrics_summary_aggregate_fields
  • nodes: [metrics_summary!]!
metrics_summary_updates

Fields:

  • _inc: metrics_summary_inc_input - increments the numeric columns with given value of the filtered values
  • _set: metrics_summary_set_input - sets the columns of the filtered rows to the given values
  • where: metrics_summary_bool_exp! - filter the rows which have to be updated

Compliance & Security

security_scan_image_input

Fields:

  • account_id: String!
  • namespace: String!
  • workload: String!
security_scan_image_output

Fields:

  • data: [jsonb]!

Tickets

ticket_create_meta_response

Fields:

  • data: jsonb!
ticket_field_values_response

Fields:

  • data: jsonb!
ticket_insert_data_resp

Fields:

  • insert_tickets_one: insert_ticket_one_resp!
ticket_integration_create_config_input

Fields:

  • auth_type: String
  • config_values: [TicketIntegrationConfigValueInput]
  • id: uuid
  • name: String!
  • password: String
  • tool: String!
  • url: String
  • username: String
ticket_integration_create_config_output

Fields:

  • id: uuid!
ticket_severity_type

columns and relationships of "ticket_severity_type"

Fields:

  • comment: String!
  • value: String!
ticket_severity_type_aggregate

aggregated selection of "ticket_severity_type"

Fields:

  • aggregate: ticket_severity_type_aggregate_fields
  • nodes: [ticket_severity_type!]!
ticket_severity_type_updates

Fields:

  • _set: ticket_severity_type_set_input - sets the columns of the filtered rows to the given values
  • where: ticket_severity_type_bool_exp! - filter the rows which have to be updated
ticket_source_type

columns and relationships of "ticket_source_type"

Fields:

  • value: String!
ticket_source_type_aggregate

aggregated selection of "ticket_source_type"

Fields:

  • aggregate: ticket_source_type_aggregate_fields
  • nodes: [ticket_source_type!]!
ticket_source_type_enum

Values:

  • auto_heal
  • auto_optimise
  • auto_runbook
  • aws
  • azure
  • event
  • gcp
  • kubernetes
  • playbook
  • recommendation
  • runbook
  • snowflake
  • ui
ticket_source_type_enum_comparison_exp

Boolean expression to compare columns of type "ticket_source_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: ticket_source_type_enum
  • _in: [ticket_source_type_enum!]
  • _is_null: Boolean
  • _neq: ticket_source_type_enum
  • _nin: [ticket_source_type_enum!]
ticket_source_type_updates

Fields:

  • _set: ticket_source_type_set_input - sets the columns of the filtered rows to the given values
  • where: ticket_source_type_bool_exp! - filter the rows which have to be updated
ticket_tool_types

columns and relationships of "ticket_tool_types"

Fields:

  • value: String!
ticket_tool_types_aggregate

aggregated selection of "ticket_tool_types"

Fields:

  • aggregate: ticket_tool_types_aggregate_fields
  • nodes: [ticket_tool_types!]!
ticket_tool_types_enum

Values:

  • github
  • gitlab
  • jira
  • pagerduty
  • servicenow
  • zenduty
ticket_tool_types_enum_comparison_exp

Boolean expression to compare columns of type "ticket_tool_types_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: ticket_tool_types_enum
  • _in: [ticket_tool_types_enum!]
  • _is_null: Boolean
  • _neq: ticket_tool_types_enum
  • _nin: [ticket_tool_types_enum!]
ticket_tool_types_updates

Fields:

  • _set: ticket_tool_types_set_input - sets the columns of the filtered rows to the given values
  • where: ticket_tool_types_bool_exp! - filter the rows which have to be updated
tickets

columns and relationships of "tickets"

Fields:

  • account_id: uuid
  • assignee: String
  • created_at: timestamp!
  • created_by: uuid
  • description: String
  • error_message: String
  • id: uuid!
  • integration: integrations! - An object relationship
  • integration_id: uuid!
  • is_new: Boolean
  • platform: ticket_tool_types_enum!
  • project_key: String!
  • reference_id: String!
  • reporter: String
  • severity: String
  • source: ticket_source_type_enum
  • status: String
  • tags: String
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • ticket_id: String!
  • ticket_type: String!
  • title: String!
  • updated_at: timestamp!
  • url: String
  • user: users - An object relationship
tickets_aggregate

aggregated selection of "tickets"

Fields:

  • aggregate: tickets_aggregate_fields
  • nodes: [tickets!]!
tickets_aggregate_bool_exp_bool_and

Fields:

  • arguments: tickets_select_column_tickets_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: tickets_bool_exp
  • predicate: Boolean_comparison_exp!
tickets_aggregate_bool_exp_bool_or

Fields:

  • arguments: tickets_select_column_tickets_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: tickets_bool_exp
  • predicate: Boolean_comparison_exp!
tickets_insert_one_input

Fields:

  • account_id: String
  • action: String
  • additional_fields: jsonb
  • assignee: String
  • description: String
  • integration_id: String
  • message: String
  • project_key: String
  • reference_id: String
  • severity: String
  • source: String
  • status: String
  • ticket_id: String
  • ticket_type: String
  • title: String
tickets_insert_one_output

Fields:

  • data: ticket_insert_data_resp!
tickets_select_column_tickets_aggregate_bool_exp_bool_and_arguments_columns

select "tickets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tickets"

Values:

  • is_new - column name
tickets_select_column_tickets_aggregate_bool_exp_bool_or_arguments_columns

select "tickets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tickets"

Values:

  • is_new - column name
tickets_updates

Fields:

  • _set: tickets_set_input - sets the columns of the filtered rows to the given values
  • where: tickets_bool_exp! - filter the rows which have to be updated

Notifications

messaging_platforms

columns and relationships of "messaging_platforms"

Fields:

  • app_id: String
  • bot_id: String
  • channels: json
  • client_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid!
  • platform: messaging_platforms_type_enum
  • refresh_token: String
  • refresh_token_expires_at: timestamp
  • scopes: String
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • token: String
  • token_expires_at: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • username: String
messaging_platforms_aggregate

aggregated selection of "messaging_platforms"

Fields:

  • aggregate: messaging_platforms_aggregate_fields
  • nodes: [messaging_platforms!]!
messaging_platforms_type

columns and relationships of "messaging_platforms_type"

Fields:

  • value: String!
messaging_platforms_type_aggregate

aggregated selection of "messaging_platforms_type"

Fields:

  • aggregate: messaging_platforms_type_aggregate_fields
  • nodes: [messaging_platforms_type!]!
messaging_platforms_type_enum

Values:

  • google_chat
  • ms_teams
  • slack
messaging_platforms_type_enum_comparison_exp

Boolean expression to compare columns of type "messaging_platforms_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: messaging_platforms_type_enum
  • _in: [messaging_platforms_type_enum!]
  • _is_null: Boolean
  • _neq: messaging_platforms_type_enum
  • _nin: [messaging_platforms_type_enum!]
messaging_platforms_type_updates

Fields:

  • _set: messaging_platforms_type_set_input - sets the columns of the filtered rows to the given values
  • where: messaging_platforms_type_bool_exp! - filter the rows which have to be updated
messaging_platforms_updates

Fields:

  • _set: messaging_platforms_set_input - sets the columns of the filtered rows to the given values
  • where: messaging_platforms_bool_exp! - filter the rows which have to be updated
notification_channel_account_mappings

columns and relationships of "notification_channel_account_mappings"

Fields:

  • account_id: uuid!
  • channel_id: String!
  • channel_metadata: String
  • cloud_account: cloud_accounts! - An object relationship
  • created_at: timestamp!
  • created_by: uuid
  • id: uuid!
  • platform: String!
  • team_id: String!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
  • user_created_by: users - An object relationship
  • user_updated_by: users - An object relationship
notification_channel_account_mappings_aggregate

aggregated selection of "notification_channel_account_mappings"

Fields:

  • aggregate: notification_channel_account_mappings_aggregate_fields
  • nodes: [notification_channel_account_mappings!]!
notification_channel_account_mappings_updates

Fields:

  • _set: notification_channel_account_mappings_set_input - sets the columns of the filtered rows to the given values
  • where: notification_channel_account_mappings_bool_exp! - filter the rows which have to be updated
notification_channel_list_resp

Fields:

  • data: jsonb
  • error: jsonb
notification_platform_types

columns and relationships of "notification_platform_types"

Fields:

  • value: String!
notification_platform_types_aggregate

aggregated selection of "notification_platform_types"

Fields:

  • aggregate: notification_platform_types_aggregate_fields
  • nodes: [notification_platform_types!]!
notification_platform_types_enum

Values:

  • email
  • google_chat
  • ms_teams
  • slack
notification_platform_types_enum_comparison_exp

Boolean expression to compare columns of type "notification_platform_types_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: notification_platform_types_enum
  • _in: [notification_platform_types_enum!]
  • _is_null: Boolean
  • _neq: notification_platform_types_enum
  • _nin: [notification_platform_types_enum!]
notification_platform_types_updates

Fields:

  • _set: notification_platform_types_set_input - sets the columns of the filtered rows to the given values
  • where: notification_platform_types_bool_exp! - filter the rows which have to be updated
notification_rule_mapping_input

Fields:

  • channels: jsonb!
  • installation_id: uuid
  • platform: String!
notification_rule_mapping_output

Fields:

  • error: String
  • id: uuid
notification_rule_mappings

columns and relationships of "notification_rule_mappings"

Fields:

  • channels: json!
  • created_at: timestamp!
  • created_by: uuid!
  • id: uuid!
  • platform: notification_platform_types_enum!
  • rule_id: uuid!
  • tenant_id: uuid!
  • updated_at: timestamptz!
  • updated_by: uuid!
notification_rule_mappings_aggregate

aggregated selection of "notification_rule_mappings"

Fields:

  • aggregate: notification_rule_mappings_aggregate_fields
  • nodes: [notification_rule_mappings!]!
notification_rule_mappings_updates

Fields:

  • _set: notification_rule_mappings_set_input - sets the columns of the filtered rows to the given values
  • where: notification_rule_mappings_bool_exp! - filter the rows which have to be updated
notification_rule_upsert_input

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cluster: String
  • delivery_mode: String
  • description: String
  • expires_at: timestamp
  • frequency: String
  • id: uuid
  • is_active: Boolean
  • is_suppressed: Boolean!
  • mappings: [notification_rule_mapping_input]
  • name: String!
  • namespace: String
  • severity: String
  • source: String!
  • workload: String
notification_rules

columns and relationships of "notification_rules"

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cloud_account: cloud_accounts - An object relationship
  • cluster: String
  • created_at: timestamp!
  • created_by: uuid!
  • delivery_mode: notifications_delivery_mode_type_enum
  • description: String
  • expires_at: timestamp
  • frequency: notifications_frequency_type_enum
  • id: uuid!
  • is_active: Boolean!
  • is_suppressed: Boolean!
  • name: String!
  • namespace: String
  • notification_rule_mappings: [notification_rule_mappings!]! - fetch data from the table: "notification_rule_mappings"
  • notification_rule_mappings_aggregate: notification_rule_mappings_aggregate! - fetch aggregated fields from the table: "notification_rule_mappings"
  • severity: String
  • source: notification_source_type_enum!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • user_updated_by: users! - An object relationship
  • workload: String
notification_rules_aggregate

aggregated selection of "notification_rules"

Fields:

  • aggregate: notification_rules_aggregate_fields
  • nodes: [notification_rules!]!
notification_rules_updates

Fields:

  • _set: notification_rules_set_input - sets the columns of the filtered rows to the given values
  • where: notification_rules_bool_exp! - filter the rows which have to be updated
notification_severity_type

columns and relationships of "notification_severity_type"

Fields:

  • description: String!
  • notifications: [notifications!]! - An array relationship
  • notifications_aggregate: notifications_aggregate! - An aggregate relationship
  • value: String!
notification_severity_type_aggregate

aggregated selection of "notification_severity_type"

Fields:

  • aggregate: notification_severity_type_aggregate_fields
  • nodes: [notification_severity_type!]!
notification_severity_type_enum

Values:

  • Critical - Critical
  • High - High
  • Info - Info
  • Low - Low
  • Medium - Medium
notification_severity_type_enum_comparison_exp

Boolean expression to compare columns of type "notification_severity_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: notification_severity_type_enum
  • _in: [notification_severity_type_enum!]
  • _is_null: Boolean
  • _neq: notification_severity_type_enum
  • _nin: [notification_severity_type_enum!]
notification_severity_type_updates

Fields:

  • _set: notification_severity_type_set_input - sets the columns of the filtered rows to the given values
  • where: notification_severity_type_bool_exp! - filter the rows which have to be updated
notification_source_type

columns and relationships of "notification_source_type"

Fields:

  • value: String!
notification_source_type_aggregate

aggregated selection of "notification_source_type"

Fields:

  • aggregate: notification_source_type_aggregate_fields
  • nodes: [notification_source_type!]!
notification_source_type_enum

Values:

  • auto_pilot
  • cloud
  • daily_recap
  • optimize
  • slo
  • troubleshoot
notification_source_type_enum_comparison_exp

Boolean expression to compare columns of type "notification_source_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: notification_source_type_enum
  • _in: [notification_source_type_enum!]
  • _is_null: Boolean
  • _neq: notification_source_type_enum
  • _nin: [notification_source_type_enum!]
notification_source_type_updates

Fields:

  • _set: notification_source_type_set_input - sets the columns of the filtered rows to the given values
  • where: notification_source_type_bool_exp! - filter the rows which have to be updated
notification_user

columns and relationships of "notification_user"

Fields:

  • id: uuid!
  • notification: uuid!
  • notificationByNotification: notifications! - An object relationship
  • notification_user_status_type: notification_user_status_type! - An object relationship
  • status: String!
  • user: users! - An object relationship
  • user_id: uuid!
notification_user_aggregate

aggregated selection of "notification_user"

Fields:

  • aggregate: notification_user_aggregate_fields
  • nodes: [notification_user!]!
notification_user_list_resp

Fields:

  • data: jsonb
  • error: jsonb
notification_user_status_type

columns and relationships of "notification_user_status_type"

Fields:

  • description: String!
  • notification_users: [notification_user!]! - An array relationship
  • notification_users_aggregate: notification_user_aggregate! - An aggregate relationship
  • value: String!
notification_user_status_type_aggregate

aggregated selection of "notification_user_status_type"

Fields:

  • aggregate: notification_user_status_type_aggregate_fields
  • nodes: [notification_user_status_type!]!
notification_user_status_type_updates

Fields:

  • _set: notification_user_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: notification_user_status_type_bool_exp! - filter the rows which have to be updated
notification_user_updates

Fields:

  • _set: notification_user_set_input - sets the columns of the filtered rows to the given values
  • where: notification_user_bool_exp! - filter the rows which have to be updated
notifications

columns and relationships of "notifications"

Fields:

  • created_at: timestamp!
  • description: String
  • id: uuid!
  • notification_severity_type: notification_severity_type! - An object relationship
  • notification_users: [notification_user!]! - An array relationship
  • notification_users_aggregate: notification_user_aggregate! - An aggregate relationship
  • severity: notification_severity_type_enum!
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • title: citext!
  • updated_at: timestamp!
notifications_aggregate

aggregated selection of "notifications"

Fields:

  • aggregate: notifications_aggregate_fields
  • nodes: [notifications!]!
notifications_delivery_mode_type

columns and relationships of "notifications_delivery_mode_type"

Fields:

  • value: String!
notifications_delivery_mode_type_aggregate

aggregated selection of "notifications_delivery_mode_type"

Fields:

  • aggregate: notifications_delivery_mode_type_aggregate_fields
  • nodes: [notifications_delivery_mode_type!]!
notifications_delivery_mode_type_enum

Values:

  • batch
  • real_time
  • suppress
notifications_delivery_mode_type_enum_comparison_exp

Boolean expression to compare columns of type "notifications_delivery_mode_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: notifications_delivery_mode_type_enum
  • _in: [notifications_delivery_mode_type_enum!]
  • _is_null: Boolean
  • _neq: notifications_delivery_mode_type_enum
  • _nin: [notifications_delivery_mode_type_enum!]
notifications_delivery_mode_type_updates

Fields:

  • _set: notifications_delivery_mode_type_set_input - sets the columns of the filtered rows to the given values
  • where: notifications_delivery_mode_type_bool_exp! - filter the rows which have to be updated
notifications_frequency_type

columns and relationships of "notifications_frequency_type"

Fields:

  • value: String!
notifications_frequency_type_aggregate

aggregated selection of "notifications_frequency_type"

Fields:

  • aggregate: notifications_frequency_type_aggregate_fields
  • nodes: [notifications_frequency_type!]!
notifications_frequency_type_enum

Values:

  • daily
  • hourly
notifications_frequency_type_enum_comparison_exp

Boolean expression to compare columns of type "notifications_frequency_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: notifications_frequency_type_enum
  • _in: [notifications_frequency_type_enum!]
  • _is_null: Boolean
  • _neq: notifications_frequency_type_enum
  • _nin: [notifications_frequency_type_enum!]
notifications_frequency_type_updates

Fields:

  • _set: notifications_frequency_type_set_input - sets the columns of the filtered rows to the given values
  • where: notifications_frequency_type_bool_exp! - filter the rows which have to be updated
notifications_updates

Fields:

  • _set: notifications_set_input - sets the columns of the filtered rows to the given values
  • where: notifications_bool_exp! - filter the rows which have to be updated

Organization & Users

auth_account_group_roles_upsert_one_input

Fields:

  • account_roles: [auth_account_role_input]!
  • group_id: String!
auth_account_group_roles_upsert_one_output

Fields:

  • message: String!
  • status: String!
auth_account_role_input

Fields:

  • account_id: String!
  • role: String!
auth_account_user_roles_upsert_one_input

Fields:

  • account_roles: [auth_account_role_input]!
  • user_id: String!
auth_account_user_roles_upsert_one_output

Fields:

  • message: String!
  • status: String!
auth_k8saccount_namespace_group_roles_upsert_one_input

Fields:

  • group_id: String!
  • k8saccount_namespace_roles: [k8saccount_namespace_role_input]!
auth_k8saccount_namespace_group_roles_upsert_one_output

Fields:

  • message: String!
  • status: String!
auth_k8saccount_namespace_user_roles_upsert_one_output

Fields:

  • message: String!
  • status: String!
auth_k8saccount_user_roles_upsert_one_input

Fields:

  • k8saccount_namespace_roles: [k8saccount_namespace_role_input]!
  • user_id: String!
auth_provider_type

columns and relationships of "auth_provider_type"

Fields:

  • comment: String
  • user_auths: [user_auths!]! - An array relationship
  • user_auths_aggregate: user_auths_aggregate! - An aggregate relationship
  • value: String!
auth_provider_type_aggregate

aggregated selection of "auth_provider_type"

Fields:

  • aggregate: auth_provider_type_aggregate_fields
  • nodes: [auth_provider_type!]!
auth_provider_type_enum

Values:

  • credentials
  • email
  • oauth
  • saml
auth_provider_type_enum_comparison_exp

Boolean expression to compare columns of type "auth_provider_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: auth_provider_type_enum
  • _in: [auth_provider_type_enum!]
  • _is_null: Boolean
  • _neq: auth_provider_type_enum
  • _nin: [auth_provider_type_enum!]
auth_provider_type_updates

Fields:

  • _set: auth_provider_type_set_input - sets the columns of the filtered rows to the given values
  • where: auth_provider_type_bool_exp! - filter the rows which have to be updated
auth_tenant_group_roles_upsert_one_input

Fields:

  • group_id: String!
  • role: String!
auth_tenant_group_roles_upsert_one_output

Fields:

  • message: String!
  • status: String!
auth_tenant_user_roles_upsert_one_input

Fields:

  • role: String!
  • user_id: String!
auth_tenant_user_roles_upsert_one_output

Fields:

  • message: String!
  • status: String!
auth_type

columns and relationships of "auth_type"

Fields:

  • comment: String!
  • user_auths: [user_auths!]! - An array relationship
  • user_auths_aggregate: user_auths_aggregate! - An aggregate relationship
  • value: String!
auth_type_aggregate

aggregated selection of "auth_type"

Fields:

  • aggregate: auth_type_aggregate_fields
  • nodes: [auth_type!]!
auth_type_enum

Values:

  • auth0 - Auth0
  • azure_ad - Azure AD
  • azure_ad_b2c - Azure Active Directory B2C
  • email
  • google
  • ldap - ldap
  • okta - Okta Auth
  • onelogin - OneLogin
  • saml - SAML
  • teleport - teleport
  • token
auth_type_enum_comparison_exp

Boolean expression to compare columns of type "auth_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: auth_type_enum
  • _in: [auth_type_enum!]
  • _is_null: Boolean
  • _neq: auth_type_enum
  • _nin: [auth_type_enum!]
auth_type_updates

Fields:

  • _set: auth_type_set_input - sets the columns of the filtered rows to the given values
  • where: auth_type_bool_exp! - filter the rows which have to be updated
business_unit

columns and relationships of "business_unit"

Fields:

  • business_unit: business_unit - An object relationship
  • business_units: [business_unit!]! - An array relationship
  • business_units_aggregate: business_unit_aggregate! - An aggregate relationship
  • businessunit_funding_sources: [businessunit_funding!]! - An array relationship
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate! - An aggregate relationship
  • businessunit_users: [businessunit_users!]! - An array relationship
  • businessunit_users_aggregate: businessunit_users_aggregate! - An aggregate relationship
  • created_at: timestamp!
  • created_by: uuid!
  • description: String!
  • id: uuid!
  • name: citext!
  • parent_business_unit: uuid
  • projects: [projects!]! - An array relationship
  • projects_aggregate: projects_aggregate! - An aggregate relationship
  • spends: [spends!]! - An array relationship
  • spends_aggregate: spends_aggregate! - An aggregate relationship
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
  • user_groups: [user_groups!]! - An array relationship
  • user_groups_aggregate: user_groups_aggregate! - An aggregate relationship
business_unit_aggregate

aggregated selection of "business_unit"

Fields:

  • aggregate: business_unit_aggregate_fields
  • nodes: [business_unit!]!
business_unit_updates

Fields:

  • _set: business_unit_set_input - sets the columns of the filtered rows to the given values
  • where: business_unit_bool_exp! - filter the rows which have to be updated
businessunit_users

columns and relationships of "businessunit_users"

Fields:

  • businessUnitByBusinessUnit: business_unit! - An object relationship
  • business_unit: uuid!
  • created_at: timestamp!
  • created_by: uuid!
  • id: uuid!
  • updated_at: timestamp!
  • user: uuid!
  • userByUser: users! - An object relationship
businessunit_users_aggregate

aggregated selection of "businessunit_users"

Fields:

  • aggregate: businessunit_users_aggregate_fields
  • nodes: [businessunit_users!]!
businessunit_users_updates

Fields:

  • _set: businessunit_users_set_input - sets the columns of the filtered rows to the given values
  • where: businessunit_users_bool_exp! - filter the rows which have to be updated
project_accounts

columns and relationships of "project_accounts"

Fields:

  • account_id: uuid!
  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_accountById: cloud_accounts! - An object relationship
  • created_at: timestamp
  • created_by: uuid
  • id: uuid!
  • projectById: projects! - An object relationship
  • project_cloud_resources: [project_cloud_resources!]! - An array relationship
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate! - An aggregate relationship
  • project_id: uuid!
  • updated_at: timestamp
  • updated_by: uuid
project_accounts_aggregate

aggregated selection of "project_accounts"

Fields:

  • aggregate: project_accounts_aggregate_fields
  • nodes: [project_accounts!]!
project_accounts_aggregate_bool_exp_avg

Fields:

  • arguments: project_accounts_select_column_project_accounts_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_corr

Fields:

  • arguments: project_accounts_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_corr_arguments

Fields:

  • X: project_accounts_select_column_project_accounts_aggregate_bool_exp_corr_arguments_columns!
  • Y: project_accounts_select_column_project_accounts_aggregate_bool_exp_corr_arguments_columns!
project_accounts_aggregate_bool_exp_covar_samp

Fields:

  • arguments: project_accounts_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: project_accounts_select_column_project_accounts_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: project_accounts_select_column_project_accounts_aggregate_bool_exp_covar_samp_arguments_columns!
project_accounts_aggregate_bool_exp_max

Fields:

  • arguments: project_accounts_select_column_project_accounts_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_min

Fields:

  • arguments: project_accounts_select_column_project_accounts_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: project_accounts_select_column_project_accounts_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_sum

Fields:

  • arguments: project_accounts_select_column_project_accounts_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_aggregate_bool_exp_var_samp

Fields:

  • arguments: project_accounts_select_column_project_accounts_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: float8_comparison_exp!
project_accounts_select_column_project_accounts_aggregate_bool_exp_avg_arguments_columns

select "project_accounts_aggregate_bool_exp_avg_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_corr_arguments_columns

select "project_accounts_aggregate_bool_exp_corr_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_covar_samp_arguments_columns

select "project_accounts_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_max_arguments_columns

select "project_accounts_aggregate_bool_exp_max_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_min_arguments_columns

select "project_accounts_aggregate_bool_exp_min_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_stddev_samp_arguments_columns

select "project_accounts_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_sum_arguments_columns

select "project_accounts_aggregate_bool_exp_sum_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_select_column_project_accounts_aggregate_bool_exp_var_samp_arguments_columns

select "project_accounts_aggregate_bool_exp_var_samp_arguments_columns" columns of table "project_accounts"

Values:

  • allocation_pct - column name
  • budget - column name
project_accounts_updates

Fields:

  • _inc: project_accounts_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_accounts_set_input - sets the columns of the filtered rows to the given values
  • where: project_accounts_bool_exp! - filter the rows which have to be updated
project_category_type

columns and relationships of "project_category_type"

Fields:

  • projects: [projects!]! - An array relationship
  • projects_aggregate: projects_aggregate! - An aggregate relationship
  • value: String!
project_category_type_aggregate

aggregated selection of "project_category_type"

Fields:

  • aggregate: project_category_type_aggregate_fields
  • nodes: [project_category_type!]!
project_category_type_enum

Values:

  • Delivery
  • Internal
  • ResearchAndDevelopment
  • Training
project_category_type_enum_comparison_exp

Boolean expression to compare columns of type "project_category_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: project_category_type_enum
  • _in: [project_category_type_enum!]
  • _is_null: Boolean
  • _neq: project_category_type_enum
  • _nin: [project_category_type_enum!]
project_category_type_updates

Fields:

  • _set: project_category_type_set_input - sets the columns of the filtered rows to the given values
  • where: project_category_type_bool_exp! - filter the rows which have to be updated
project_cloud_resources

columns and relationships of "project_cloud_resources"

Fields:

  • allocation_end: timestamp
  • allocation_pct: float8!
  • allocation_start: timestamp!
  • budget: float8
  • cloud_resource_id: uuid!
  • cloud_resourse: cloud_resourses! - An object relationship
  • created_at: timestamp!
  • created_by: uuid
  • id: uuid!
  • project_account: project_accounts! - An object relationship
  • project_account_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
project_cloud_resources_aggregate

aggregated selection of "project_cloud_resources"

Fields:

  • aggregate: project_cloud_resources_aggregate_fields
  • nodes: [project_cloud_resources!]!
project_cloud_resources_aggregate_bool_exp_avg

Fields:

  • arguments: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_corr

Fields:

  • arguments: project_cloud_resources_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_corr_arguments

Fields:

  • X: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_corr_arguments_columns!
  • Y: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_corr_arguments_columns!
project_cloud_resources_aggregate_bool_exp_covar_samp

Fields:

  • arguments: project_cloud_resources_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_covar_samp_arguments_columns!
project_cloud_resources_aggregate_bool_exp_max

Fields:

  • arguments: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_min

Fields:

  • arguments: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_sum

Fields:

  • arguments: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_aggregate_bool_exp_var_samp

Fields:

  • arguments: project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: float8_comparison_exp!
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_avg_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_avg_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_corr_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_corr_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_covar_samp_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_max_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_max_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_min_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_min_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_stddev_samp_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_sum_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_sum_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_select_column_project_cloud_resources_aggregate_bool_exp_var_samp_arguments_columns

select "project_cloud_resources_aggregate_bool_exp_var_samp_arguments_columns" columns of table "project_cloud_resources"

Values:

  • allocation_pct - column name
  • budget - column name
project_cloud_resources_updates

Fields:

  • _inc: project_cloud_resources_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_cloud_resources_set_input - sets the columns of the filtered rows to the given values
  • where: project_cloud_resources_bool_exp! - filter the rows which have to be updated
project_fundings

columns and relationships of "project_fundings"

Fields:

  • amount: float8
  • businessunitFundingByBusinessunitFunding: businessunit_funding! - An object relationship
  • businessunit_funding: uuid!
  • created_at: timestamp!
  • created_by: uuid!
  • end_date: timestamp
  • id: uuid!
  • planned_amount: float8
  • project: uuid!
  • projectByProject: projects! - An object relationship
  • start_date: timestamp
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
project_fundings_aggregate

aggregated selection of "project_fundings"

Fields:

  • aggregate: project_fundings_aggregate_fields
  • nodes: [project_fundings!]!
project_fundings_aggregate_bool_exp_avg

Fields:

  • arguments: project_fundings_select_column_project_fundings_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_corr

Fields:

  • arguments: project_fundings_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_corr_arguments

Fields:

  • X: project_fundings_select_column_project_fundings_aggregate_bool_exp_corr_arguments_columns!
  • Y: project_fundings_select_column_project_fundings_aggregate_bool_exp_corr_arguments_columns!
project_fundings_aggregate_bool_exp_covar_samp

Fields:

  • arguments: project_fundings_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: project_fundings_select_column_project_fundings_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: project_fundings_select_column_project_fundings_aggregate_bool_exp_covar_samp_arguments_columns!
project_fundings_aggregate_bool_exp_max

Fields:

  • arguments: project_fundings_select_column_project_fundings_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_min

Fields:

  • arguments: project_fundings_select_column_project_fundings_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: project_fundings_select_column_project_fundings_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_sum

Fields:

  • arguments: project_fundings_select_column_project_fundings_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_aggregate_bool_exp_var_samp

Fields:

  • arguments: project_fundings_select_column_project_fundings_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: float8_comparison_exp!
project_fundings_select_column_project_fundings_aggregate_bool_exp_avg_arguments_columns

select "project_fundings_aggregate_bool_exp_avg_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_corr_arguments_columns

select "project_fundings_aggregate_bool_exp_corr_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_covar_samp_arguments_columns

select "project_fundings_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_max_arguments_columns

select "project_fundings_aggregate_bool_exp_max_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_min_arguments_columns

select "project_fundings_aggregate_bool_exp_min_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_stddev_samp_arguments_columns

select "project_fundings_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_sum_arguments_columns

select "project_fundings_aggregate_bool_exp_sum_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_select_column_project_fundings_aggregate_bool_exp_var_samp_arguments_columns

select "project_fundings_aggregate_bool_exp_var_samp_arguments_columns" columns of table "project_fundings"

Values:

  • amount - column name
  • planned_amount - column name
project_fundings_updates

Fields:

  • _inc: project_fundings_inc_input - increments the numeric columns with given value of the filtered values
  • _set: project_fundings_set_input - sets the columns of the filtered rows to the given values
  • where: project_fundings_bool_exp! - filter the rows which have to be updated
project_users

columns and relationships of "project_users"

Fields:

  • created_at: timestamp!
  • created_by: uuid!
  • id: uuid!
  • project: uuid!
  • projectByProject: projects! - An object relationship
  • updated_at: timestamp!
  • user: uuid!
  • userByCreatedBy: users! - An object relationship
  • userByUser: users! - An object relationship
project_users_aggregate

aggregated selection of "project_users"

Fields:

  • aggregate: project_users_aggregate_fields
  • nodes: [project_users!]!
project_users_updates

Fields:

  • _set: project_users_set_input - sets the columns of the filtered rows to the given values
  • where: project_users_bool_exp! - filter the rows which have to be updated
roles

columns and relationships of "roles"

Fields:

  • display_name: String
  • group_roles: [group_roles!]! - An array relationship
  • group_roles_aggregate: group_roles_aggregate! - An aggregate relationship
  • user_roles: [user_roles!]! - An array relationship
  • user_roles_aggregate: user_roles_aggregate! - An aggregate relationship
  • value: citext!
roles_aggregate

aggregated selection of "roles"

Fields:

  • aggregate: roles_aggregate_fields
  • nodes: [roles!]!
roles_updates

Fields:

  • _set: roles_set_input - sets the columns of the filtered rows to the given values
  • where: roles_bool_exp! - filter the rows which have to be updated
tenant

columns and relationships of "tenant"

Fields:

  • business_units: [business_unit!]! - An array relationship
  • business_units_aggregate: business_unit_aggregate! - An aggregate relationship
  • businessunit_funding_sources: [businessunit_funding!]! - An array relationship
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate! - An aggregate relationship
  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • created_at: timestamp!
  • created_by: uuid!
  • funding_sources: [funding_sources!]! - An array relationship
  • funding_sources_aggregate: funding_sources_aggregate! - An aggregate relationship
  • id: uuid!
  • jira_configurations: [jira_configurations!]! - An array relationship
  • jira_configurations_aggregate: jira_configurations_aggregate! - An aggregate relationship
  • name: citext!
  • notifications: [notifications!]! - An array relationship
  • notifications_aggregate: notifications_aggregate! - An aggregate relationship
  • projects: [projects!]! - An array relationship
  • projects_aggregate: projects_aggregate! - An aggregate relationship
  • recommendations: [recommendation!]! - An array relationship
  • recommendations_aggregate: recommendation_aggregate! - An aggregate relationship
  • spends: [spends!]! - An array relationship
  • spends_aggregate: spends_aggregate! - An aggregate relationship
  • tenant_attrs: [tenant_attrs!]! - An array relationship
  • tenant_attrs_aggregate: tenant_attrs_aggregate! - An aggregate relationship
  • tenant_users: [tenant_users!]! - An array relationship
  • tenant_users_aggregate: tenant_users_aggregate! - An aggregate relationship
  • tickets: [tickets!]! - An array relationship
  • tickets_aggregate: tickets_aggregate! - An aggregate relationship
  • type: tenant_type_enum
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
  • user_groups: [user_groups!]! - An array relationship
  • user_groups_aggregate: user_groups_aggregate! - An aggregate relationship
tenant_aggregate

aggregated selection of "tenant"

Fields:

  • aggregate: tenant_aggregate_fields
  • nodes: [tenant!]!
tenant_attrs

columns and relationships of "tenant_attrs"

Fields:

  • created_at: timestamp!
  • id: uuid!
  • name: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • updated_at: timestamp!
  • value: String
tenant_attrs_aggregate

aggregated selection of "tenant_attrs"

Fields:

  • aggregate: tenant_attrs_aggregate_fields
  • nodes: [tenant_attrs!]!
tenant_attrs_updates

Fields:

  • _set: tenant_attrs_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_attrs_bool_exp! - filter the rows which have to be updated
tenant_insert_one_input

Fields:

  • role: String
  • tenant_name: String!
  • user_id: uuid!
tenant_insert_one_output

Fields:

  • id: uuid!
tenant_list_all_output

Fields:

  • id: uuid!
  • name: String!
tenant_onboarding

columns and relationships of "tenant_onboarding"

Fields:

  • contact_phone: String
  • created_at: timestamp!
  • id: uuid!
  • tenant_name: String!
  • updated_at: timestamp!
  • user_displayname: String!
  • username: String!
  • verification_status: String!
  • verification_token: String!
  • verification_token_expiration: timestamp!
tenant_onboarding_aggregate

aggregated selection of "tenant_onboarding"

Fields:

  • aggregate: tenant_onboarding_aggregate_fields
  • nodes: [tenant_onboarding!]!
tenant_onboarding_updates

Fields:

  • _set: tenant_onboarding_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_onboarding_bool_exp! - filter the rows which have to be updated
tenant_type

columns and relationships of "tenant_type"

Fields:

  • tenants: [tenant!]! - An array relationship
  • tenants_aggregate: tenant_aggregate! - An aggregate relationship
  • value: String!
tenant_type_aggregate

aggregated selection of "tenant_type"

Fields:

  • aggregate: tenant_type_aggregate_fields
  • nodes: [tenant_type!]!
tenant_type_enum

Values:

  • Customer
  • Demo
  • QA
tenant_type_enum_comparison_exp

Boolean expression to compare columns of type "tenant_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: tenant_type_enum
  • _in: [tenant_type_enum!]
  • _is_null: Boolean
  • _neq: tenant_type_enum
  • _nin: [tenant_type_enum!]
tenant_type_updates

Fields:

  • _set: tenant_type_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_type_bool_exp! - filter the rows which have to be updated
tenant_updates

Fields:

  • _set: tenant_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_bool_exp! - filter the rows which have to be updated
tenant_users

columns and relationships of "tenant_users"

Fields:

  • created_at: timestamp!
  • created_by: uuid!
  • id: uuid!
  • is_default: Boolean!
  • is_owner: Boolean!
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: uuid!
  • userByCreatedBy: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
  • userByUser: users! - An object relationship
tenant_users_aggregate

aggregated selection of "tenant_users"

Fields:

  • aggregate: tenant_users_aggregate_fields
  • nodes: [tenant_users!]!
tenant_users_aggregate_bool_exp_bool_and

Fields:

  • arguments: tenant_users_select_column_tenant_users_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: tenant_users_bool_exp
  • predicate: Boolean_comparison_exp!
tenant_users_aggregate_bool_exp_bool_or

Fields:

  • arguments: tenant_users_select_column_tenant_users_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: tenant_users_bool_exp
  • predicate: Boolean_comparison_exp!
tenant_users_select_column_tenant_users_aggregate_bool_exp_bool_and_arguments_columns

select "tenant_users_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tenant_users"

Values:

  • is_default - column name
  • is_owner - column name
tenant_users_select_column_tenant_users_aggregate_bool_exp_bool_or_arguments_columns

select "tenant_users_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tenant_users"

Values:

  • is_default - column name
  • is_owner - column name
tenant_users_updates

Fields:

  • _set: tenant_users_set_input - sets the columns of the filtered rows to the given values
  • where: tenant_users_bool_exp! - filter the rows which have to be updated
user_attrs

columns and relationships of "user_attrs"

Fields:

  • created_at: timestamp!
  • id: uuid!
  • name: String!
  • updated_at: timestamp!
  • user: uuid!
  • userByUser: users! - An object relationship
  • value: String
user_attrs_aggregate

aggregated selection of "user_attrs"

Fields:

  • aggregate: user_attrs_aggregate_fields
  • nodes: [user_attrs!]!
user_attrs_updates

Fields:

  • _set: user_attrs_set_input - sets the columns of the filtered rows to the given values
  • where: user_attrs_bool_exp! - filter the rows which have to be updated
user_auths

columns and relationships of "user_auths"

Fields:

  • accessed_at: timestamp
  • account_id: String
  • auth_provider_type: auth_provider_type! - An object relationship
  • auth_type: auth_type! - An object relationship
  • avatar: String
  • created_at: timestamp!
  • credential: String
  • expires_at: timestamp
  • id: uuid!
  • name: String
  • provider: auth_type_enum!
  • provider_type: auth_provider_type_enum!
  • status: user_status_type_enum
  • tenant_id: uuid
  • updated_at: timestamp!
  • user: uuid!
  • userByUser: users! - An object relationship
  • user_status_type: user_status_type - An object relationship
user_auths_aggregate

aggregated selection of "user_auths"

Fields:

  • aggregate: user_auths_aggregate_fields
  • nodes: [user_auths!]!
user_auths_updates

Fields:

  • _set: user_auths_set_input - sets the columns of the filtered rows to the given values
  • where: user_auths_bool_exp! - filter the rows which have to be updated
user_groups

columns and relationships of "user_groups"

Fields:

  • businessUnitByBusinessUnit: business_unit - An object relationship
  • business_unit: uuid
  • created_at: timestamptz!
  • description: String!
  • funding_sources: [funding_sources!]! - An array relationship
  • funding_sources_aggregate: funding_sources_aggregate! - An aggregate relationship
  • group_roles: [group_roles!]! - An array relationship
  • group_roles_aggregate: group_roles_aggregate! - An aggregate relationship
  • id: uuid!
  • name: String!
  • owner: uuid!
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • user: users! - An object relationship
  • usergroup_users: [usergroup_users!]! - An array relationship
  • usergroup_users_aggregate: usergroup_users_aggregate! - An aggregate relationship
user_groups_aggregate

aggregated selection of "user_groups"

Fields:

  • aggregate: user_groups_aggregate_fields
  • nodes: [user_groups!]!
user_groups_updates

Fields:

  • _set: user_groups_set_input - sets the columns of the filtered rows to the given values
  • where: user_groups_bool_exp! - filter the rows which have to be updated
user_history

columns and relationships of "user_history"

Fields:

  • account_id: uuid!
  • created_at: timestamp!
  • data: String!
  • duration: float8
  • id: uuid!
  • meta: jsonb
  • module: String!
  • status: String
  • tenant_id: uuid!
  • updated_at: timestamp!
  • user_id: uuid!
user_history_aggregate

aggregated selection of "user_history"

Fields:

  • aggregate: user_history_aggregate_fields
  • nodes: [user_history!]!
user_history_updates

Fields:

  • _append: user_history_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: user_history_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: user_history_delete_elem_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_key: user_history_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: user_history_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: user_history_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: user_history_set_input - sets the columns of the filtered rows to the given values
  • where: user_history_bool_exp! - filter the rows which have to be updated
user_roles

columns and relationships of "user_roles"

Fields:

  • created_at: timestamp
  • created_by: uuid!
  • entity_id: String!
  • entity_type: citext!
  • id: uuid!
  • role: citext!
  • roleByRole: roles! - An object relationship
  • tenant_id: uuid
  • updated_at: timestamp
  • user: users! - An object relationship
  • user_id: uuid!
user_roles_aggregate

aggregated selection of "user_roles"

Fields:

  • aggregate: user_roles_aggregate_fields
  • nodes: [user_roles!]!
user_roles_updates

Fields:

  • _set: user_roles_set_input - sets the columns of the filtered rows to the given values
  • where: user_roles_bool_exp! - filter the rows which have to be updated
user_status_type

columns and relationships of "user_status_type"

Fields:

  • comment: String
  • user_auths: [user_auths!]! - An array relationship
  • user_auths_aggregate: user_auths_aggregate! - An aggregate relationship
  • users: [users!]! - An array relationship
  • users_aggregate: users_aggregate! - An aggregate relationship
  • value: String!
user_status_type_aggregate

aggregated selection of "user_status_type"

Fields:

  • aggregate: user_status_type_aggregate_fields
  • nodes: [user_status_type!]!
user_status_type_enum

Values:

  • active
  • inactive
  • suspended
user_status_type_enum_comparison_exp

Boolean expression to compare columns of type "user_status_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: user_status_type_enum
  • _in: [user_status_type_enum!]
  • _is_null: Boolean
  • _neq: user_status_type_enum
  • _nin: [user_status_type_enum!]
user_status_type_updates

Fields:

  • _set: user_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: user_status_type_bool_exp! - filter the rows which have to be updated
usergroup_users

columns and relationships of "usergroup_users"

Fields:

  • created_at: timestamp!
  • created_by: uuid!
  • group: uuid!
  • id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: uuid!
  • userByCreatedBy: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
  • userByUser: users! - An object relationship
  • user_group: user_groups! - An object relationship
usergroup_users_aggregate

aggregated selection of "usergroup_users"

Fields:

  • aggregate: usergroup_users_aggregate_fields
  • nodes: [usergroup_users!]!
usergroup_users_updates

Fields:

  • _set: usergroup_users_set_input - sets the columns of the filtered rows to the given values
  • where: usergroup_users_bool_exp! - filter the rows which have to be updated
users

columns and relationships of "users"

Fields:

  • businessUnitsByUpdatedBy: [business_unit!]! - An array relationship
  • businessUnitsByUpdatedBy_aggregate: business_unit_aggregate! - An aggregate relationship
  • business_units: [business_unit!]! - An array relationship
  • business_units_aggregate: business_unit_aggregate! - An aggregate relationship
  • businessunitFundingSourcesByUpdatedBy: [businessunit_funding!]! - An array relationship
  • businessunitFundingSourcesByUpdatedBy_aggregate: businessunit_funding_aggregate! - An aggregate relationship
  • businessunit_funding_sources: [businessunit_funding!]! - An array relationship
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate! - An aggregate relationship
  • businessunit_users: [businessunit_users!]! - An array relationship
  • businessunit_users_aggregate: businessunit_users_aggregate! - An aggregate relationship
  • cloudAccountsByUpdatedBy: [cloud_accounts!]! - An array relationship
  • cloudAccountsByUpdatedBy_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • cloudResoursesByUpdatedBy: [cloud_resourses!]! - An array relationship
  • cloudResoursesByUpdatedBy_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • created_at: timestamp!
  • created_by: uuid
  • display_name: String!
  • fundingSourcesByUpdatedBy: [funding_sources!]! - An array relationship
  • fundingSourcesByUpdatedBy_aggregate: funding_sources_aggregate! - An aggregate relationship
  • funding_sources: [funding_sources!]! - An array relationship
  • funding_sources_aggregate: funding_sources_aggregate! - An aggregate relationship
  • group_roles: [group_roles!]! - An array relationship
  • group_roles_aggregate: group_roles_aggregate! - An aggregate relationship
  • id: uuid!
  • jiraConfigurationsByUpdatedBy: [jira_configurations!]! - An array relationship
  • jiraConfigurationsByUpdatedBy_aggregate: jira_configurations_aggregate! - An aggregate relationship
  • jira_configurations: [jira_configurations!]! - An array relationship
  • jira_configurations_aggregate: jira_configurations_aggregate! - An aggregate relationship
  • llm_conversation_saved: llm_conversation_saved - An object relationship
  • llm_conversations: [llm_conversations!]! - An array relationship
  • llm_conversations_aggregate: llm_conversations_aggregate! - An aggregate relationship
  • notification_users: [notification_user!]! - An array relationship
  • notification_users_aggregate: notification_user_aggregate! - An aggregate relationship
  • projectFundingsByUpdatedBy: [project_fundings!]! - An array relationship
  • projectFundingsByUpdatedBy_aggregate: project_fundings_aggregate! - An aggregate relationship
  • projectUsersByUser: [project_users!]! - An array relationship
  • projectUsersByUser_aggregate: project_users_aggregate! - An aggregate relationship
  • project_fundings: [project_fundings!]! - An array relationship
  • project_fundings_aggregate: project_fundings_aggregate! - An aggregate relationship
  • project_users: [project_users!]! - An array relationship
  • project_users_aggregate: project_users_aggregate! - An aggregate relationship
  • projects: [projects!]! - An array relationship
  • projectsByCreatedBy: [projects!]! - An array relationship
  • projectsByCreatedBy_aggregate: projects_aggregate! - An aggregate relationship
  • projectsByItManager: [projects!]! - An array relationship
  • projectsByItManager_aggregate: projects_aggregate! - An aggregate relationship
  • projectsByProjectManager: [projects!]! - An array relationship
  • projectsByProjectManager_aggregate: projects_aggregate! - An aggregate relationship
  • projectsByUpdatedBy: [projects!]! - An array relationship
  • projectsByUpdatedBy_aggregate: projects_aggregate! - An aggregate relationship
  • projects_aggregate: projects_aggregate! - An aggregate relationship
  • status: user_status_type_enum!
  • tenantUsersByUpdatedBy: [tenant_users!]! - An array relationship
  • tenantUsersByUpdatedBy_aggregate: tenant_users_aggregate! - An aggregate relationship
  • tenantUsersByUser: [tenant_users!]! - An array relationship
  • tenantUsersByUser_aggregate: tenant_users_aggregate! - An aggregate relationship
  • tenant_users: [tenant_users!]! - An array relationship
  • tenant_users_aggregate: tenant_users_aggregate! - An aggregate relationship
  • tenants: [tenant!]! - An array relationship
  • tenantsByUpdatedBy: [tenant!]! - An array relationship
  • tenantsByUpdatedBy_aggregate: tenant_aggregate! - An aggregate relationship
  • tenants_aggregate: tenant_aggregate! - An aggregate relationship
  • updated_at: timestamp!
  • updated_by: uuid
  • user: users - An object relationship
  • userByUpdatedBy: users - An object relationship
  • user_attrs: [user_attrs!]! - An array relationship
  • user_attrs_aggregate: user_attrs_aggregate! - An aggregate relationship
  • user_auths: [user_auths!]! - An array relationship
  • user_auths_aggregate: user_auths_aggregate! - An aggregate relationship
  • user_groups_owner: [user_groups!]! - An array relationship
  • user_groups_owner_aggregate: user_groups_aggregate! - An aggregate relationship
  • user_roles: [user_roles!]! - An array relationship
  • user_roles_aggregate: user_roles_aggregate! - An aggregate relationship
  • user_status_type: user_status_type! - An object relationship
  • usergroupUsersByUpdatedBy: [usergroup_users!]! - An array relationship
  • usergroupUsersByUpdatedBy_aggregate: usergroup_users_aggregate! - An aggregate relationship
  • usergroupUsersByUser: [usergroup_users!]! - An array relationship
  • usergroupUsersByUser_aggregate: usergroup_users_aggregate! - An aggregate relationship
  • usergroup_users: [usergroup_users!]! - An array relationship
  • usergroup_users_aggregate: usergroup_users_aggregate! - An aggregate relationship
  • username: citext!
  • users: [users!]! - An array relationship
  • usersByUpdatedBy: [users!]! - An array relationship
  • usersByUpdatedBy_aggregate: users_aggregate! - An aggregate relationship
  • users_aggregate: users_aggregate! - An aggregate relationship
users_aggregate

aggregated selection of "users"

Fields:

  • aggregate: users_aggregate_fields
  • nodes: [users!]!
users_insert_one_input

Fields:

  • firstname: String!
  • lastname: String
  • role: String
  • tenantname: String
  • username: String!
users_insert_one_output

Fields:

  • id: String
  • message: String
  • status: String!
  • tenant_id: String
users_updates

Fields:

  • _set: users_set_input - sets the columns of the filtered rows to the given values
  • where: users_bool_exp! - filter the rows which have to be updated

Integrations

integration_categories

columns and relationships of "integration_categories"

Fields:

  • description: String
  • value: String!
integration_categories_aggregate

aggregated selection of "integration_categories"

Fields:

  • aggregate: integration_categories_aggregate_fields
  • nodes: [integration_categories!]!
integration_categories_updates

Fields:

  • _set: integration_categories_set_input - sets the columns of the filtered rows to the given values
  • where: integration_categories_bool_exp! - filter the rows which have to be updated
integration_config_values

columns and relationships of "integration_config_values"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid!
  • integration: integrations! - An object relationship
  • integration_id: uuid!
  • is_encrypted: Boolean
  • name: citext
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • value: String
integration_config_values_aggregate

aggregated selection of "integration_config_values"

Fields:

  • aggregate: integration_config_values_aggregate_fields
  • nodes: [integration_config_values!]!
integration_config_values_aggregate_bool_exp_bool_and

Fields:

  • arguments: integration_config_values_select_column_integration_config_values_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: integration_config_values_bool_exp
  • predicate: Boolean_comparison_exp!
integration_config_values_aggregate_bool_exp_bool_or

Fields:

  • arguments: integration_config_values_select_column_integration_config_values_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: integration_config_values_bool_exp
  • predicate: Boolean_comparison_exp!
integration_config_values_select_column_integration_config_values_aggregate_bool_exp_bool_and_arguments_columns

select "integration_config_values_aggregate_bool_exp_bool_and_arguments_columns" columns of table "integration_config_values"

Values:

  • is_encrypted - column name
integration_config_values_select_column_integration_config_values_aggregate_bool_exp_bool_or_arguments_columns

select "integration_config_values_aggregate_bool_exp_bool_or_arguments_columns" columns of table "integration_config_values"

Values:

  • is_encrypted - column name
integration_config_values_updates

Fields:

  • _set: integration_config_values_set_input - sets the columns of the filtered rows to the given values
  • where: integration_config_values_bool_exp! - filter the rows which have to be updated
integration_sources

columns and relationships of "integration_sources"

Fields:

  • description: String
  • value: String!
integration_sources_aggregate

aggregated selection of "integration_sources"

Fields:

  • aggregate: integration_sources_aggregate_fields
  • nodes: [integration_sources!]!
integration_sources_updates

Fields:

  • _set: integration_sources_set_input - sets the columns of the filtered rows to the given values
  • where: integration_sources_bool_exp! - filter the rows which have to be updated
integration_statuses

columns and relationships of "integration_statuses"

Fields:

  • description: String
  • value: String!
integration_statuses_aggregate

aggregated selection of "integration_statuses"

Fields:

  • aggregate: integration_statuses_aggregate_fields
  • nodes: [integration_statuses!]!
integration_statuses_updates

Fields:

  • _set: integration_statuses_set_input - sets the columns of the filtered rows to the given values
  • where: integration_statuses_bool_exp! - filter the rows which have to be updated
integration_types

columns and relationships of "integration_types"

Fields:

  • category: String
  • description: String
  • name: String!
integration_types_aggregate

aggregated selection of "integration_types"

Fields:

  • aggregate: integration_types_aggregate_fields
  • nodes: [integration_types!]!
integration_types_updates

Fields:

  • _set: integration_types_set_input - sets the columns of the filtered rows to the given values
  • where: integration_types_bool_exp! - filter the rows which have to be updated
integrations

columns and relationships of "integrations"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid!
  • integration_config_values: [integration_config_values!]! - An array relationship
  • integration_config_values_aggregate: integration_config_values_aggregate! - An aggregate relationship
  • integration_source: integration_sources! - An object relationship
  • integration_status: integration_statuses! - An object relationship
  • integration_type: integration_types! - An object relationship
  • integrations_cloud_accounts: [integrations_cloud_accounts!]! - An array relationship
  • integrations_cloud_accounts_aggregate: integrations_cloud_accounts_aggregate! - An aggregate relationship
  • labels: json
  • name: String!
  • source: String!
  • status: String!
  • tenant_id: uuid!
  • type: String!
  • updated_at: timestamp
  • updated_by: uuid
  • user: users - An object relationship
  • userCreatedBy: users - An object relationship
integrations_aggregate

aggregated selection of "integrations"

Fields:

  • aggregate: integrations_aggregate_fields
  • nodes: [integrations!]!
integrations_cloud_accounts

columns and relationships of "integrations_cloud_accounts"

Fields:

  • cloud_account: cloud_accounts! - An object relationship
  • cloud_account_id: uuid!
  • default_log_provider: Boolean!
  • default_metrics_provider: Boolean!
  • default_traces_provider: Boolean!
  • id: uuid!
  • integration_id: uuid!
  • tenant_id: uuid!
integrations_cloud_accounts_aggregate

aggregated selection of "integrations_cloud_accounts"

Fields:

  • aggregate: integrations_cloud_accounts_aggregate_fields
  • nodes: [integrations_cloud_accounts!]!
integrations_cloud_accounts_aggregate_bool_exp_bool_and

Fields:

  • arguments: integrations_cloud_accounts_select_column_integrations_cloud_accounts_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: integrations_cloud_accounts_bool_exp
  • predicate: Boolean_comparison_exp!
integrations_cloud_accounts_aggregate_bool_exp_bool_or

Fields:

  • arguments: integrations_cloud_accounts_select_column_integrations_cloud_accounts_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: integrations_cloud_accounts_bool_exp
  • predicate: Boolean_comparison_exp!
integrations_cloud_accounts_select_column_integrations_cloud_accounts_aggregate_bool_exp_bool_and_arguments_columns

select "integrations_cloud_accounts_aggregate_bool_exp_bool_and_arguments_columns" columns of table "integrations_cloud_accounts"

Values:

  • default_log_provider - column name
  • default_metrics_provider - column name
  • default_traces_provider - column name
integrations_cloud_accounts_select_column_integrations_cloud_accounts_aggregate_bool_exp_bool_or_arguments_columns

select "integrations_cloud_accounts_aggregate_bool_exp_bool_or_arguments_columns" columns of table "integrations_cloud_accounts"

Values:

  • default_log_provider - column name
  • default_metrics_provider - column name
  • default_traces_provider - column name
integrations_cloud_accounts_updates

Fields:

  • _set: integrations_cloud_accounts_set_input - sets the columns of the filtered rows to the given values
  • where: integrations_cloud_accounts_bool_exp! - filter the rows which have to be updated
integrations_updates

Fields:

  • _set: integrations_set_input - sets the columns of the filtered rows to the given values
  • where: integrations_bool_exp! - filter the rows which have to be updated
jira_configurations

columns and relationships of "jira_configurations"

Fields:

  • auth_type: String!
  • created_at: timestamp!
  • created_by: uuid!
  • id: uuid!
  • is_active: Boolean!
  • last_connected: timestamp
  • name: String!
  • password: String!
  • priorities: json
  • projects: json
  • status: String
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • tool: ticket_tool_types_enum!
  • updated_at: timestamp!
  • updated_by: uuid
  • url: String!
  • user: users! - An object relationship
  • userByUpdatedBy: users - An object relationship
  • username: String!
  • users: json
jira_configurations_aggregate

aggregated selection of "jira_configurations"

Fields:

  • aggregate: jira_configurations_aggregate_fields
  • nodes: [jira_configurations!]!
jira_configurations_aggregate_bool_exp_bool_and

Fields:

  • arguments: jira_configurations_select_column_jira_configurations_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: jira_configurations_bool_exp
  • predicate: Boolean_comparison_exp!
jira_configurations_aggregate_bool_exp_bool_or

Fields:

  • arguments: jira_configurations_select_column_jira_configurations_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: jira_configurations_bool_exp
  • predicate: Boolean_comparison_exp!
jira_configurations_select_column_jira_configurations_aggregate_bool_exp_bool_and_arguments_columns

select "jira_configurations_aggregate_bool_exp_bool_and_arguments_columns" columns of table "jira_configurations"

Values:

  • is_active - column name
jira_configurations_select_column_jira_configurations_aggregate_bool_exp_bool_or_arguments_columns

select "jira_configurations_aggregate_bool_exp_bool_or_arguments_columns" columns of table "jira_configurations"

Values:

  • is_active - column name
jira_configurations_updates

Fields:

  • _set: jira_configurations_set_input - sets the columns of the filtered rows to the given values
  • where: jira_configurations_bool_exp! - filter the rows which have to be updated
ms_teams_channels

columns and relationships of "ms_teams_channels"

Fields:

  • channels: json!
  • created_at: timestamp!
  • created_by: uuid
  • id: uuid!
  • installation_id: uuid!
  • team_id: String!
  • team_name: String!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
ms_teams_channels_aggregate

aggregated selection of "ms_teams_channels"

Fields:

  • aggregate: ms_teams_channels_aggregate_fields
  • nodes: [ms_teams_channels!]!
ms_teams_channels_updates

Fields:

  • _set: ms_teams_channels_set_input - sets the columns of the filtered rows to the given values
  • where: ms_teams_channels_bool_exp! - filter the rows which have to be updated
slack_bots

columns and relationships of "slack_bots"

Fields:

  • app_id: String!
  • bot_id: String
  • bot_refresh_token: String
  • bot_scopes: String
  • bot_token: String
  • bot_token_expires_at: String
  • bot_user_id: String
  • client_id: String!
  • enterprise_id: String
  • enterprise_name: String
  • id: uuid!
  • installed_at: timestamp!
  • is_enterprise_install: Boolean!
  • team_id: String
  • team_name: String
  • tenant_id: uuid!
slack_bots_aggregate

aggregated selection of "slack_bots"

Fields:

  • aggregate: slack_bots_aggregate_fields
  • nodes: [slack_bots!]!
slack_bots_updates

Fields:

  • _set: slack_bots_set_input - sets the columns of the filtered rows to the given values
  • where: slack_bots_bool_exp! - filter the rows which have to be updated
slack_oauth_states

columns and relationships of "slack_oauth_states"

Fields:

  • expire_at: timestamp!
  • id: uuid!
  • state: String!
  • tenant_id: uuid
slack_oauth_states_aggregate

aggregated selection of "slack_oauth_states"

Fields:

  • aggregate: slack_oauth_states_aggregate_fields
  • nodes: [slack_oauth_states!]!
slack_oauth_states_updates

Fields:

  • _set: slack_oauth_states_set_input - sets the columns of the filtered rows to the given values
  • where: slack_oauth_states_bool_exp! - filter the rows which have to be updated

Configuration

configuration_store

columns and relationships of "configuration_store"

Fields:

  • account_id: uuid
  • config_type: String!
  • created_at: timestamp!
  • created_by: uuid
  • id: uuid!
  • is_active: Boolean!
  • key: String!
  • tenant_id: uuid
  • value: String!
configuration_store_aggregate

aggregated selection of "configuration_store"

Fields:

  • aggregate: configuration_store_aggregate_fields
  • nodes: [configuration_store!]!
configuration_store_updates

Fields:

  • _set: configuration_store_set_input - sets the columns of the filtered rows to the given values
  • where: configuration_store_bool_exp! - filter the rows which have to be updated
etl_jobs

columns and relationships of "etl_jobs"

Fields:

  • additional_data: jsonb!
  • created_at: timestamp!
  • duplicate_records: Int!
  • host_details: jsonb!
  • id: uuid!
  • job_trigger_id: String!
  • job_trigger_type: String!
  • job_type: String!
  • new_records: Int!
  • processed_records: Int!
  • status: String!
  • status_text: String!
  • tenant_id: uuid!
  • time_taken: Int!
  • updated_at: timestamp!
etl_jobs_aggregate

aggregated selection of "etl_jobs"

Fields:

  • aggregate: etl_jobs_aggregate_fields
  • nodes: [etl_jobs!]!
etl_jobs_updates

Fields:

  • _append: etl_jobs_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: etl_jobs_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: etl_jobs_delete_elem_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_key: etl_jobs_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: etl_jobs_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: etl_jobs_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: etl_jobs_set_input - sets the columns of the filtered rows to the given values
  • where: etl_jobs_bool_exp! - filter the rows which have to be updated
feature

columns and relationships of "feature"

Fields:

  • description: String
  • feature_flags: [feature_flag!]! - An array relationship
  • feature_flags_aggregate: feature_flag_aggregate! - An aggregate relationship
  • value: String!
feature_aggregate

aggregated selection of "feature"

Fields:

  • aggregate: feature_aggregate_fields
  • nodes: [feature!]!
feature_enum

Values:

  • ANOMALY_DETECTION
  • EVENT_ANALYSIS_ON_CHANNEL - Enable event-analysis notifications to incident channels
  • EVENT_AUTO_AI_SUMMARY - Automatically Summerize summaries of Events data
  • EVENT_DEBUG_ANALYSIS_ENABLED - Enable debug analysis for events at account level
  • FEATURE_EVENT_AUTO_AI_SUMMARY - Automatically generate AI summary for events
  • FEATURE_SYSTEM_RUNBOOK - feature flag to enable system runbook
  • GENERATE_RCA - Get root cause analysis for events
  • LLM_BUDGET_DISABLED_INVESTIGATION - Disable LLM budget checks for event investigation module
  • LLM_BUDGET_DISABLED_USER_INVESTIGATION - Disable LLM budget checks for user investigation module
  • LLM_CODE_ANALYSIS_RAISE_PR - Enable automated pr raise for code analysis fixes generated
  • LLM_FUNCTION - llm function related changes like creating/editing function and at alert
  • NEW_CONTEXT - NEW_CONTEXT
  • NEW_LLM_TOOLS - New llm tools tab
  • OPTIMIZE - AI-powered cost optimization and recommendations
  • RBAC_K8S - K8S Rbac Support
  • REMEDIATION_SHOW_PLAN - Show remediation plan in LLM responses
  • TICKETS_ADD_EVENT_COMMENTS - Add comments on tickets for event evidence report
  • TRACES_SERVICE_MAP_KNOWLEDGE_GRAPH - This is to load service map from knowledge graph cache
  • TROUBLESHOOT - AI-powered incident troubleshooting and investigation
  • UPGRADE_PLANNER - Analyzes your current Kubernetes cluster configuration and generates a step-by-step upgrade plan
  • VERTICAL_RIGHTSIZING - Enable vertical rightsizing recommendations for K8s workloads
  • WORKFLOWS - Workflow automation feature
feature_enum_comparison_exp

Boolean expression to compare columns of type "feature_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: feature_enum
  • _in: [feature_enum!]
  • _is_null: Boolean
  • _neq: feature_enum
  • _nin: [feature_enum!]
feature_flag

columns and relationships of "feature_flag"

Fields:

  • account_id: uuid
  • cloud_account: [cloud_accounts!]! - An array relationship
  • cloud_account_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • created_at: timestamptz!
  • feature_id: feature_enum!
  • feature_module_id: String
  • id: uuid!
  • status: String!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
feature_flag_aggregate

aggregated selection of "feature_flag"

Fields:

  • aggregate: feature_flag_aggregate_fields
  • nodes: [feature_flag!]!
feature_flag_updates

Fields:

  • _set: feature_flag_set_input - sets the columns of the filtered rows to the given values
  • where: feature_flag_bool_exp! - filter the rows which have to be updated
feature_updates

Fields:

  • _set: feature_set_input - sets the columns of the filtered rows to the given values
  • where: feature_bool_exp! - filter the rows which have to be updated
slo_config

columns and relationships of "slo_config"

Fields:

  • cloud_account_id: uuid!
  • created_at: timestamp!
  • created_by: String!
  • description: String
  • enabled: Boolean
  • filter_bad_query: String
  • filter_good_query: String
  • goal: numeric
  • histogram_query: String
  • id: uuid!
  • method: String!
  • name: String!
  • schedule: String
  • tenant_id: uuid!
  • threshold: numeric!
  • updated_at: timestamp!
  • updated_by: String!
  • window: numeric
  • workload_name: String!
  • workload_namespace: String!
slo_config_aggregate

aggregated selection of "slo_config"

Fields:

  • aggregate: slo_config_aggregate_fields
  • nodes: [slo_config!]!
slo_config_updates

Fields:

  • _inc: slo_config_inc_input - increments the numeric columns with given value of the filtered values
  • _set: slo_config_set_input - sets the columns of the filtered rows to the given values
  • where: slo_config_bool_exp! - filter the rows which have to be updated
slo_report

columns and relationships of "slo_report"

Fields:

  • bad_events_count: numeric
  • cloud_account_id: uuid!
  • config_id: uuid!
  • created_at: timestamptz!
  • error_budget_burn_rate: numeric!
  • error_budget_burn_rate_threshold: numeric!
  • error_budget_consumed_ratio: numeric!
  • error_budget_measurement: numeric!
  • error_budget_minutes: numeric!
  • error_budget_remaining_minutes: numeric!
  • error_budget_target: numeric!
  • error_minutes: numeric!
  • events_count: numeric
  • gap: numeric!
  • good_events_count: numeric
  • id: uuid!
  • sli_measurement: numeric!
  • slo_config: slo_config! - An object relationship
  • status: slo_status_enum!
  • tenant_id: uuid!
  • timestamp: timestamp!
  • updated_at: timestamptz!
  • workload_name: String!
  • workload_namespace: String!
slo_report_aggregate

aggregated selection of "slo_report"

Fields:

  • aggregate: slo_report_aggregate_fields
  • nodes: [slo_report!]!
slo_report_updates

Fields:

  • _inc: slo_report_inc_input - increments the numeric columns with given value of the filtered values
  • _set: slo_report_set_input - sets the columns of the filtered rows to the given values
  • where: slo_report_bool_exp! - filter the rows which have to be updated
slo_status

columns and relationships of "slo_status"

Fields:

  • value: String!
slo_status_aggregate

aggregated selection of "slo_status"

Fields:

  • aggregate: slo_status_aggregate_fields
  • nodes: [slo_status!]!
slo_status_enum

Values:

  • FIRING
  • OK
slo_status_enum_comparison_exp

Boolean expression to compare columns of type "slo_status_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: slo_status_enum
  • _in: [slo_status_enum!]
  • _is_null: Boolean
  • _neq: slo_status_enum
  • _nin: [slo_status_enum!]
slo_status_updates

Fields:

  • _set: slo_status_set_input - sets the columns of the filtered rows to the given values
  • where: slo_status_bool_exp! - filter the rows which have to be updated
upgrade_plan

columns and relationships of "upgrade_plan"

Fields:

  • account_id: uuid!
  • created_at: timestamp!
  • created_by: uuid
  • current_version: String!
  • id: uuid!
  • k8s_provider: String!
  • owner: uuid
  • status: upgrade_plan_status_type_enum!
  • target_version: String!
  • tenant_id: uuid!
  • updated_at: timestamp!
  • updated_by: uuid
upgrade_plan_aggregate

aggregated selection of "upgrade_plan"

Fields:

  • aggregate: upgrade_plan_aggregate_fields
  • nodes: [upgrade_plan!]!
upgrade_plan_audit

columns and relationships of "upgrade_plan_audit"

Fields:

  • account_id: uuid!
  • action: String!
  • actioned_by: uuid!
  • comments: String
  • created_at: timestamp!
  • field: String!
  • id: uuid!
  • new_value: String!
  • old_value: String
  • plan_id: uuid!
  • step_id: uuid!
  • task_id: uuid!
  • tenant_id: uuid!
  • userActionedBy: users! - An object relationship
upgrade_plan_audit_aggregate

aggregated selection of "upgrade_plan_audit"

Fields:

  • aggregate: upgrade_plan_audit_aggregate_fields
  • nodes: [upgrade_plan_audit!]!
upgrade_plan_audit_updates

Fields:

  • _set: upgrade_plan_audit_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_audit_bool_exp! - filter the rows which have to be updated
upgrade_plan_status_type

columns and relationships of "upgrade_plan_status_type"

Fields:

  • comment: String
  • value: String!
upgrade_plan_status_type_aggregate

aggregated selection of "upgrade_plan_status_type"

Fields:

  • aggregate: upgrade_plan_status_type_aggregate_fields
  • nodes: [upgrade_plan_status_type!]!
upgrade_plan_status_type_enum

Values:

  • Completed
  • Failed
  • Incomplete
  • Pending
  • Skipped
upgrade_plan_status_type_enum_comparison_exp

Boolean expression to compare columns of type "upgrade_plan_status_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: upgrade_plan_status_type_enum
  • _in: [upgrade_plan_status_type_enum!]
  • _is_null: Boolean
  • _neq: upgrade_plan_status_type_enum
  • _nin: [upgrade_plan_status_type_enum!]
upgrade_plan_status_type_updates

Fields:

  • _set: upgrade_plan_status_type_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_status_type_bool_exp! - filter the rows which have to be updated
upgrade_plan_steps

columns and relationships of "upgrade_plan_steps"

Fields:

  • account_id: uuid!
  • created_by: uuid
  • description: String!
  • id: uuid!
  • owner: uuid
  • plan_id: uuid
  • sequence: Int!
  • status: upgrade_plan_status_type_enum!
  • tenant_id: uuid!
  • title: String!
  • updated_by: uuid
upgrade_plan_steps_aggregate

aggregated selection of "upgrade_plan_steps"

Fields:

  • aggregate: upgrade_plan_steps_aggregate_fields
  • nodes: [upgrade_plan_steps!]!
upgrade_plan_steps_updates

Fields:

  • _inc: upgrade_plan_steps_inc_input - increments the numeric columns with given value of the filtered values
  • _set: upgrade_plan_steps_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_steps_bool_exp! - filter the rows which have to be updated
upgrade_plan_tasks

columns and relationships of "upgrade_plan_tasks"

Fields:

  • action: String
  • created_by: uuid
  • description: String!
  • id: uuid!
  • is_required: Boolean!
  • owner: uuid
  • resource_type: String
  • sequence: Int!
  • status: upgrade_plan_status_type_enum!
  • step_id: uuid!
  • title: String!
  • updated_by: uuid
upgrade_plan_tasks_aggregate

aggregated selection of "upgrade_plan_tasks"

Fields:

  • aggregate: upgrade_plan_tasks_aggregate_fields
  • nodes: [upgrade_plan_tasks!]!
upgrade_plan_tasks_updates

Fields:

  • _inc: upgrade_plan_tasks_inc_input - increments the numeric columns with given value of the filtered values
  • _set: upgrade_plan_tasks_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_tasks_bool_exp! - filter the rows which have to be updated
upgrade_plan_updates

Fields:

  • _set: upgrade_plan_set_input - sets the columns of the filtered rows to the given values
  • where: upgrade_plan_bool_exp! - filter the rows which have to be updated

Data Warehouse

dw_databases

columns and relationships of "dw_databases"

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • fail_safe_size: numeric
  • row_count: numeric
  • size: numeric
  • table_count: bigint
  • tenant_id: uuid
  • time_travel_size: numeric
dw_databases_aggregate

aggregated selection of "dw_databases"

Fields:

  • aggregate: dw_databases_aggregate_fields
  • nodes: [dw_databases!]!
dw_pipe

columns and relationships of "dw_pipe"

Fields:

  • cloud_account_id: uuid!
  • created_at: timestamptz
  • database_name: String
  • deleted_at: timestamptz
  • id: uuid!
  • owner: String
  • pipe_id: Int
  • pipe_name: String
  • schema_name: String
  • table_name: String
  • tenant_id: uuid!
dw_pipe_aggregate

aggregated selection of "dw_pipe"

Fields:

  • aggregate: dw_pipe_aggregate_fields
  • nodes: [dw_pipe!]!
dw_pipe_updates

Fields:

  • _inc: dw_pipe_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_pipe_set_input - sets the columns of the filtered rows to the given values
  • where: dw_pipe_bool_exp! - filter the rows which have to be updated
dw_pipe_usage

columns and relationships of "dw_pipe_usage"

Fields:

  • bytes_inserted: numeric
  • cloud_account_id: uuid!
  • credit_used: numeric
  • end_at: timestamptz
  • files_inserted: numeric
  • id: uuid!
  • pipe_id: Int
  • pipe_name: String
  • start_at: timestamptz
  • tenant_id: uuid!
dw_pipe_usage_aggregate

aggregated selection of "dw_pipe_usage"

Fields:

  • aggregate: dw_pipe_usage_aggregate_fields
  • nodes: [dw_pipe_usage!]!
dw_pipe_usage_updates

Fields:

  • _inc: dw_pipe_usage_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_pipe_usage_set_input - sets the columns of the filtered rows to the given values
  • where: dw_pipe_usage_bool_exp! - filter the rows which have to be updated
dw_queries

columns and relationships of "dw_queries"

Fields:

  • account_id: uuid!
  • bill: float8!
  • bill_interval_from: timestamp
  • bill_interval_to: timestamp
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • cloud_account: cloud_accounts! - An object relationship
  • cloud_resourse: cloud_resourses - An object relationship
  • created_at: timestamp!
  • database_name: String
  • db_username: String!
  • id: uuid!
  • partitions_scanned: numeric
  • query_ended_at: timestamp
  • query_error_message: String
  • query_exec_duration_micro: numeric
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: numeric!
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_result_cache_hit: Boolean
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • query_session_id: String
  • query_started_at: timestamp
  • query_status: String
  • query_text: String!
  • query_transaction_id: String
  • query_type: String!
  • query_usage_limit: String
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • resource_id: uuid
  • rpu: float8!
  • table_names: [String!]
  • tags: jsonb!
  • tenant: tenant! - An object relationship
  • tenant_id: uuid!
  • transaction_block_time: numeric
dw_queries_aggregate

aggregated selection of "dw_queries"

Fields:

  • aggregate: dw_queries_aggregate_fields
  • nodes: [dw_queries!]!
dw_queries_aggregate_bool_exp_avg

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_bool_and

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: Boolean_comparison_exp!
dw_queries_aggregate_bool_exp_bool_or

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: Boolean_comparison_exp!
dw_queries_aggregate_bool_exp_corr

Fields:

  • arguments: dw_queries_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_corr_arguments

Fields:

  • X: dw_queries_select_column_dw_queries_aggregate_bool_exp_corr_arguments_columns!
  • Y: dw_queries_select_column_dw_queries_aggregate_bool_exp_corr_arguments_columns!
dw_queries_aggregate_bool_exp_covar_samp

Fields:

  • arguments: dw_queries_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: dw_queries_select_column_dw_queries_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: dw_queries_select_column_dw_queries_aggregate_bool_exp_covar_samp_arguments_columns!
dw_queries_aggregate_bool_exp_max

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_min

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_sum

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_aggregate_bool_exp_var_samp

Fields:

  • arguments: dw_queries_select_column_dw_queries_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: float8_comparison_exp!
dw_queries_select_column_dw_queries_aggregate_bool_exp_avg_arguments_columns

select "dw_queries_aggregate_bool_exp_avg_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_bool_and_arguments_columns

select "dw_queries_aggregate_bool_exp_bool_and_arguments_columns" columns of table "dw_queries"

Values:

  • query_result_cache_hit - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_bool_or_arguments_columns

select "dw_queries_aggregate_bool_exp_bool_or_arguments_columns" columns of table "dw_queries"

Values:

  • query_result_cache_hit - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_corr_arguments_columns

select "dw_queries_aggregate_bool_exp_corr_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_covar_samp_arguments_columns

select "dw_queries_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_max_arguments_columns

select "dw_queries_aggregate_bool_exp_max_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_min_arguments_columns

select "dw_queries_aggregate_bool_exp_min_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_stddev_samp_arguments_columns

select "dw_queries_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_sum_arguments_columns

select "dw_queries_aggregate_bool_exp_sum_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_select_column_dw_queries_aggregate_bool_exp_var_samp_arguments_columns

select "dw_queries_aggregate_bool_exp_var_samp_arguments_columns" columns of table "dw_queries"

Values:

  • bill - column name
  • rpu - column name
dw_queries_updates

Fields:

  • _append: dw_queries_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: dw_queries_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: dw_queries_delete_elem_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_key: dw_queries_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _inc: dw_queries_inc_input - increments the numeric columns with given value of the filtered values
  • _prepend: dw_queries_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: dw_queries_set_input - sets the columns of the filtered rows to the given values
  • where: dw_queries_bool_exp! - filter the rows which have to be updated
dw_query_profile_data

columns and relationships of "dw_query_profile_data"

Fields:

  • cloud_account_id: String!
  • db_type: String!
  • id: uuid!
  • profile_data: jsonb
  • query_group_md5: String
  • query_id: String
  • tenant_id: uuid!
dw_query_profile_data_aggregate

aggregated selection of "dw_query_profile_data"

Fields:

  • aggregate: dw_query_profile_data_aggregate_fields
  • nodes: [dw_query_profile_data!]!
dw_query_profile_data_updates

Fields:

  • _append: dw_query_profile_data_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: dw_query_profile_data_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: dw_query_profile_data_delete_elem_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_key: dw_query_profile_data_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: dw_query_profile_data_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: dw_query_profile_data_set_input - sets the columns of the filtered rows to the given values
  • where: dw_query_profile_data_bool_exp! - filter the rows which have to be updated
dw_tables

columns and relationships of "dw_tables"

Fields:

  • cloud_account_id: uuid!
  • database_name: String
  • db_type: String
  • id: uuid!
  • last_altered_at: timestamptz
  • last_ddl_at: timestamptz
  • last_dml_at: timestamptz
  • row_count: numeric
  • schema_name: String
  • table_created_at: timestamptz
  • table_deleted: Boolean
  • table_dropped: timestamptz
  • table_fail_safe_byte: numeric
  • table_id: String
  • table_name: String
  • table_reclone_bytes: numeric
  • table_size: numeric
  • table_type: String
  • tenant_id: uuid!
  • time_travel_bytes: numeric
dw_tables_aggregate

aggregated selection of "dw_tables"

Fields:

  • aggregate: dw_tables_aggregate_fields
  • nodes: [dw_tables!]!
dw_tables_updates

Fields:

  • _inc: dw_tables_inc_input - increments the numeric columns with given value of the filtered values
  • _set: dw_tables_set_input - sets the columns of the filtered rows to the given values
  • where: dw_tables_bool_exp! - filter the rows which have to be updated

Audit

audit

columns and relationships of "audit"

Fields:

  • account_id: String!
  • event_action: String!
  • event_actor: String!
  • event_attr: String!
  • event_category: String!
  • event_prev_state: String!
  • event_state: String!
  • event_status: String!
  • event_target: String!
  • event_time: timestamp!
  • event_type: String!
  • id: uuid!
  • tenant_id: String!
  • transaction_id: String!
  • user_id: uuid
audit_aggregate

aggregated selection of "audit"

Fields:

  • aggregate: audit_aggregate_fields
  • nodes: [audit!]!
audit_updates

Fields:

  • _set: audit_set_input - sets the columns of the filtered rows to the given values
  • where: audit_bool_exp! - filter the rows which have to be updated

Other

AIBudgetLevelInfo

Fields:

  • budget_limit: Float!
  • budget_remaining: Float!
  • current_usage: Float!
  • limit_source: String!
  • rate_limit: Boolean!
AIBudgetStatusData

Fields:

  • account_id: String!
  • investigation: AIModuleBudgetInfo!
  • period: String!
  • tenant_id: String!
  • user_investigation: AIModuleBudgetInfo!
AIBudgetStatusRequest

Fields:

  • account_id: String!
AIBudgetStatusResponse

Fields:

  • data: AIBudgetStatusData
  • err: jsonb
AIConfigCapabilitiesInput

Fields:

  • disabled_tools: [String]
AIConfigClientToolInput

Fields:

  • description: String!
  • input: AIConfigClientToolSchemaInput
  • name: String!
AIConfigClientToolSchemaInput

Fields:

  • properties: jsonb
  • required: [String]
  • type: String!
AIConfigInput

Fields:

  • llm_model_name: String
  • llm_provider: String
AIFollowupRequest

Fields:

  • account_id: String!
  • agent_id: String!
  • async: Boolean!
  • config: AIConfigInput
  • conversation_id: String!
  • message_id: String!
  • query: String!
  • user_id: String!
AIFollowupResponse

Fields:

  • data: AIFollowupResponseData!
AIFollowupResponseData

Fields:

  • chain_name: String!
  • conversation_id: String
  • message_id: String
  • response: [String!]!
AIGenerateWorkflowData

Fields:

  • agent_id: String
  • agent_step_response: [String!]!
  • chain_name: String!
  • conversation_id: String
  • followup: AIFollowupResponse
  • message_id: String
  • query: String!
  • response: [String!]!
  • session_id: String
  • status: String!
AIGenerateWorkflowRequest

Fields:

  • account_id: String!
  • agent_id: String
  • async: Boolean
  • config: jsonb
  • conversation_id: String
  • message_id: String
  • query: String!
  • session_id: String
  • source: String
  • user_id: String!
AIGenerateWorkflowResponse

Fields:

  • data: AIGenerateWorkflowData!
AIGetConversationSuggestionRequest

Fields:

  • account_id: uuid!
  • conversation_id: uuid!
  • message_id: uuid!
  • user_id: uuid!
AIGetConversationSuggestionResponse

Fields:

  • data: jsonb
  • errors: jsonb
AIGetConversationUsageMetricsRequest

Fields:

  • account_id: String!
  • conversation_id: String!
  • user_id: String
AIGetConversationUsageMetricsResponse

Fields:

  • data: jsonb!
AIGetESDslQueryRequest

Fields:

  • account_id: String!
  • query: String!
  • user_id: String!
AIGetESDslQueryResponse

Fields:

  • data: AIGetPrometheusQuery!
AIGetLokiQueryRequest

Fields:

  • account_id: String!
  • query: String!
  • user_id: String!
AIGetLokiQueryResponse

Fields:

  • data: AIGetPrometheusQuery!
AIGetModelConfigRequest

Fields:

  • account_id: String!
  • conversation_id: String
AIGetModelConfigResponse

Fields:

  • data: jsonb
  • errors: jsonb
AIGetPrometheusQuery

Fields:

  • agent_step_response: [String!]!
  • chain_name: String!
  • conversation_id: String
  • message_id: String
  • query: String!
  • response: [String!]!
  • session_id: String
AIGetPrometheusQueryRequest

Fields:

  • account_id: String!
  • query: String!
  • user_id: String!
AIGetPrometheusQueryResponse

Fields:

  • data: AIGetPrometheusQuery!
AIListModelsRequest

Fields:

  • account_id: String!
AIListModelsResponse

Fields:

  • data: jsonb
  • errors: jsonb
AIMemoryResponse

Fields:

  • account_id: String!
  • content: String
  • conversation_id: String
  • created_at: timestamp
  • id: String!
  • memory_type: String
  • message_id: String
AIModuleBudgetInfo

Fields:

  • account: AIBudgetLevelInfo!
  • tenant: AIBudgetLevelInfo!
AIReferenceResponse

Fields:

  • account_id: String
  • agent_id: String
  • content: String
  • conversation_id: String
  • created_at: timestamp
  • id: String
  • message_id: String
  • reference_id: String
  • type: String
AIResponse

Fields:

  • data: jsonb!
AIStopInvestigationRequest

Fields:

  • account_id: String!
  • conversation_id: String!
  • user_id: String
AIStopInvestigationResponse

Fields:

  • data: jsonb!
AISubmitClientToolCallRequest

Fields:

  • account_id: String!
  • agent_id: String!
  • async: Boolean!
  • conversation_id: String!
  • message_id: String!
  • results: [AISubmitClientToolCallResult]
AISubmitClientToolCallResponse

Fields:

  • data: AISubmitClientToolCallResponseData
AISubmitClientToolCallResponseData

Fields:

  • status: String
AISubmitClientToolCallResult

Fields:

  • result: String
  • status: String
  • tool_id: String!
AITriggerInvestigationDataResponse

Fields:

  • agent_step_response: [String!]!
  • chain_name: String!
  • conversation_id: String
  • message_id: String
  • query: String!
  • response: [String!]!
  • session_id: String
AITriggerInvestigationRequest

Fields:

  • account_id: String!
  • async: Boolean!
  • capabilities: AIConfigCapabilitiesInput
  • client_tools: [AIConfigClientToolInput]
  • config: AIConfigInput
  • conversation_id: String
  • query: String!
  • session_id: String
  • user_id: String!
AITriggerInvestigationResponse

Fields:

  • data: AITriggerInvestigationDataResponse
AWSCloudFormationInput

Fields:

  • account_name: String!
  • account_type: String!
  • cloud_provider: String!
AWSCloudFormationOutput

Fields:

  • bucket_name: String!
  • external_id: String!
  • url: String!
AgentRegenerateTokenInput

Fields:

  • account_id: String!
AgentRegenerateTokenOutput

Fields:

  • access_key: String!
  • access_secret: String!
  • account_id: String!
AgentRequest

Fields:

  • config: jsonb
  • description: String
  • name: String
  • rags: [RagDataInput]
  • system_prompt: String
  • system_prompt_variables: [String]
  • tools: [String]
AgentRequestUpdateStruct

Fields:

  • config: jsonb
  • description: String
  • id: uuid!
  • name: String
  • status: String
  • system_prompt: String
  • system_prompt_variables: [String!]
  • tools: [String!]
AiDeleteFunctionRequest

Fields:

  • account_id: String!
  • function_id: String!
AiDeleteFunctionResponse

Fields:

  • data: jsonb
AiFeedbackCreateRequest

Fields:

  • additional_notes: String!
  • cloud_account_id: String!
  • conversation_id: String!
  • llm_response: String!
  • module: String!
  • question: String!
  • session_id: String!
  • useful: Boolean!
  • user_corrected_response: String!
AiFeedbackResponse

Fields:

  • additional_notes: String!
  • module: String!
  • session_id: String!
  • updated_at: String!
  • useful: Boolean!
AlertAction

Fields:

  • actions: jsonb!
AlertActionListRequest

Fields:

  • cloud_account_id: String!
  • query: String!
  • source: String
AlertRule

Fields:

  • accountId: String!
  • action_params: jsonb!
  • alert: String!
  • annotations: Annotations!
  • category: String!
  • duration: String!
  • enabled: Boolean!
  • expr: String!
  • labels: Labels!
  • severity: String!
  • source: String!
  • trigger_params: jsonb!
AlertRuleResponse

Fields:

  • response: Boolean!
Annotations

Fields:

  • description: String!
  • runbook: String
  • summary: String!
AnomalyGroupingResponse

Fields:

  • count: Int
AnomalyGroupingsResponse

Fields:

  • rows: [AnomalyGroupingResponse]!
AnomalyResponse

Fields:

  • account_id: String!
  • anomaly_type: String!
  • config_id: String
  • current_value: String!
  • evaluated_at: String
  • id: String!
  • is_anomaly: Boolean!
  • name: String!
  • namespace: String!
  • reference_value: String!
  • updated_at: String!
AnomalyTemplateListRequest

Fields:

  • account_id: String
AnomalyTemplateListResponse

Fields:

  • data: [AnomalyTemplateResponse!]
AnomalyTemplateResponse

Fields:

  • anomaly_type: String!
  • buffer_percentage: Float!
  • change_operator: String!
  • description: String!
  • title: String!
AnomalyV3Response

Fields:

  • anomaly_count: Int
  • anomaly_type: String!
  • count: Int
  • evaluated_at: String
  • name: String!
  • namespace: String!
ApplicationDeploymentCompareOutput

Fields:

  • data: ApplicationDeploymentMetrics
ApplicationDeploymentCompareRequest

Fields:

  • account_id: String!
  • applications: [ApplicationRequest]
ApplicationDeploymentMetrics

Fields:

  • account_id: String
  • current_stats: ApplicationMetrics
  • last_deployment_date_time: timestamp
  • name: String
  • namespace: String
  • previous_stats: ApplicationMetrics
ApplicationMetrics

Fields:

  • application_id: String!
  • bad_data_count: Float
  • container: String
  • cpu_max: Float
  • cpu_p50: Float
  • cpu_p99: Float
  • failure_request_count: Float
  • good_data_count: Float
  • latency: Float
  • latency_p99: Float
  • log_failure_count: Float
  • max_cpu_limit: Float
  • max_cpu_request: Float
  • max_memory_limit: Float
  • max_memory_request: Float
  • memory_max: Float
  • memory_p50: Float
  • memory_p99: Float
  • name: String!
  • namespace: String!
  • oom_kill_limit: Float
  • total_request_count: Float
  • valid_data_count: Float
ApplicationMetricsOutput

Fields:

  • data: [ApplicationMetrics!]
ApplicationMetricsRequest

Fields:

  • account_id: String!
  • applications: [ApplicationRequest]
  • end_at: Datetime
  • start_at: Datetime
ApplicationProfile

Fields:

  • created_at: Datetime
  • created_by: String
  • namespace: String
  • output_type: String
  • pod_name: String
  • profile: jsonb
  • profile_duration: Float
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String
  • updated_at: Datetime
  • workload_name: String
ApplicationProfileConvertDataResponse

Fields:

  • data: ApplicationProfileConvertResponse!
ApplicationProfileConvertRequest

Fields:

  • account_id: String!
  • base64_profile: String!
ApplicationProfileConvertResponse

Fields:

  • svg_profile: String!
ApplicationProfileDataResponse

Fields:

  • data: GetApplicationProfileResponse
ApplicationProfileGetRequest

Fields:

  • account_id: String!
  • profile_id: String!
ApplicationProfileRequest

Fields:

  • account_id: String!
  • application_language: String
  • lang: String
  • namespace: String!
  • output_type: String
  • pod_name: String!
  • profile_duration: Int
  • profile_tool: String
  • profile_type: String
ApplicationProfileResponse

Fields:

  • rows: [ApplicationProfile]
ApplicationProfileWhereRequest

Fields:

  • _and: [ApplicationProfileWhereRequest]
  • _not: ApplicationProfileWhereRequest
  • _or: [ApplicationProfileWhereRequest]
  • cloud_account_id: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
  • pod_name: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
ApplicationRequest

Fields:

  • kind: String!
  • name: String!
  • namespace: String!
AuditGroupingResponse

Fields:

  • rows: [AuditGroupingRowResponse]
AuditGroupingRowResponse

Fields:

  • account_id: String
  • count: Int
  • event_action: String
  • event_actor: String
  • event_category: String
  • event_status: String
  • event_target: String
  • event_time: Datetime
  • event_type: String
  • tenant_id: String
  • transaction_id: String
  • user_id: String
AuditGroupingWhereRequest

Fields:

  • _and: [AuditGroupingWhereRequest]
  • _not: AuditGroupingWhereRequest
  • _or: [AuditGroupingWhereRequest]
  • account_id: QueryWhereStringRequest
  • event_action: QueryWhereStringRequest
  • event_actor: QueryWhereStringRequest
  • event_category: QueryWhereStringRequest
  • event_status: QueryWhereStringRequest
  • event_target: QueryWhereStringRequest
  • event_time: QueryWhereDatetimeRequest
  • event_type: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • transaction_id: QueryWhereStringRequest
  • user_id: QueryWhereStringRequest
AuditResponse

Fields:

  • rows: [AuditRowResponse]
AuditRowResponse

Fields:

  • account_id: String
  • event_action: String
  • event_actor: String
  • event_attr: Json
  • event_category: String
  • event_prev_state: String
  • event_state: String
  • event_status: String
  • event_target: String
  • event_time: Datetime
  • event_type: String
  • id: String
  • tenant_id: String
  • transaction_id: String
  • user_id: String
AuditWhereRequest

Fields:

  • _and: [AuditWhereRequest]
  • _not: AuditWhereRequest
  • _or: [AuditWhereRequest]
  • account_id: QueryWhereStringRequest
  • event_action: QueryWhereStringRequest
  • event_actor: QueryWhereStringRequest
  • event_category: QueryWhereStringRequest
  • event_status: QueryWhereStringRequest
  • event_target: QueryWhereStringRequest
  • event_time: QueryWhereDatetimeRequest
  • event_type: QueryWhereStringRequest
  • id: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • transaction_id: QueryWhereStringRequest
  • user_id: QueryWhereStringRequest
AutopilotApprovalUpdateInput

Fields:

  • account_id: uuid!
  • approval_id: uuid!
  • reviewer_comments: String
  • status: String!
AutopilotApprovalUpdateOutput

Fields:

  • id: uuid!
AwsOnboardStatusInput

Fields:

  • external_id: String!
AwsOnboardStatusOutput

Fields:

  • account_id: String
  • account_name: String
  • account_number: String
  • status: String!
AwsOrgOnboardInput

Fields:

  • account_name: String!
AwsOrgOnboardOutput

Fields:

  • sns_topic_arn: String!
  • stackset_launch_url: String!
  • stackset_parameters: jsonb
  • stackset_template_url: String!
  • verification_token: String!
AwsOrgRefreshTokenOutput

Fields:

  • verification_token: String!
AwsOrgStatusOutput

Fields:

  • member_accounts: [OrgMemberStatus]!
  • org_name: String!
  • org_status: String!
AzureEventGridOnboardInput

Fields:

  • account_id: String!
AzureEventGridOnboardOutput

Fields:

  • external_id: String!
  • service_bus_resource_id: String!
  • url: String!
Boolean_comparison_exp

Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'.

Fields:

  • _eq: Boolean
  • _gt: Boolean
  • _gte: Boolean
  • _in: [Boolean!]
  • _is_null: Boolean
  • _lt: Boolean
  • _lte: Boolean
  • _neq: Boolean
  • _nin: [Boolean!]
BulkOperationResponse

Fields:

  • events_to_update: Int!
  • job_id: String!
  • status: String!
ClassifyEventResponse

Fields:

  • bulk_operation: BulkOperationResponse
  • classification_id: String!
  • rule_created: Boolean!
  • rule_expires_at: timestamp
  • rule_id: String
  • success: Boolean!
ClassifyPreviewResponse

Fields:

  • current_event: CurrentEventPreview!
  • existing_events: ExistingEventsPreview!
  • future_events: FutureEventsPreview!
  • rule_to_create: TriageRulePreview
CloudMetricGroupingsResponse

Fields:

  • rows: [CloudMetricGroupingsRowResponse]
CloudMetricGroupingsRowResponse

Fields:

  • account_id: String
  • avg_value: Float
  • count_value: Int
  • max_value: Float
  • metric: String
  • min_value: Float
  • region_name: String
  • resource_id: String
  • service_name: String
  • sum_value: Float
  • tenant_id: String
  • timestamp: Datetime
CloudMetricGroupingsWhereRequest

Fields:

  • _and: [CloudMetricGroupingsWhereRequest]
  • _not: CloudMetricGroupingsWhereRequest
  • _or: [CloudMetricGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • metric: QueryWhereStringRequest
  • region_name: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • service_name: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
Comment

Fields:

  • author: String!
  • comment: String!
  • created_at: String!
  • updated_at: String
Config

Fields:

  • account_id: String
  • created_at: timestamp
  • created_by: String
  • id: String!
  • key: String!
  • labels: jsonb
  • metadata: jsonb
  • tenant_id: String
  • type: String!
  • updated_at: timestamp
  • updated_by: String
  • value: String!
ConfigDeleteInput

Fields:

  • account_id: String!
  • key: String!
ConfigDeleteOutput

Fields:

  • message: String!
ConfigListRequest

Fields:

  • account_id: String!
  • decrypt: Boolean
  • labels: jsonb
ConfigSaveInput

Fields:

  • account_id: String!
  • config: ConfigSaveInputObject!
ConfigSaveInputObject

Fields:

  • account_id: String
  • id: String
  • key: String
  • labels: jsonb
  • metadata: jsonb
  • tenant_id: String
  • type: String
  • value: String
ConfigSaveOutput

Fields:

  • id: String!
CreateAgentExtensionResponse

Fields:

  • data: jsonb
  • err: jsonb
CreateAgentRagInput

Fields:

  • account_id: String!
  • agent: String!
  • data: String!
  • file_name: String
  • format: String
CreateAgentRagOutput

Fields:

  • data: jsonb
CreateAgentRequest

Fields:

  • account_id: String!
  • agent: AgentRequest!
  • override_agent: Boolean
CreateAgentResponse

Fields:

  • data: jsonb
  • errors: jsonb
CreateApprovalInput

Fields:

  • account_id: uuid!
  • minimum_approval: Int
  • reviewees: [uuid]
  • reviewers: [uuid]
CreateApprovalOutput

Fields:

  • id: uuid
CreateExtensionAgentDetails

Fields:

  • agent_name: String!
  • prompt: String
  • tools: [String]
CreateExtensionAgentRequest

Fields:

  • account_id: String!
  • agent: CreateExtensionAgentDetails
CreateFunctionInput

Fields:

  • description: String!
  • name: String!
  • prompt: String!
  • status: String
  • variable_defaults: jsonb
  • variables: [String]
  • version: Int
CreateFunctionResponse

Fields:

  • function: LLMFunctionCreateResponse
  • message: String!
  • success: Boolean!
CreateGCRequest

Fields:

  • account_id: String!
  • global_context: GlobalContextInput!
CreateGCResponse

Fields:

  • data: GlobalContextOutput
  • errors: [Error]
CreateIntegrationConfigRequest

Fields:

  • account_ids: [String]!
  • integration_config_name: String!
  • integration_config_values: [IntegrationConfigValueInput]
  • integration_name: String!
  • skip_validation: Boolean
  • source: String
  • tags: jsonb
CreateIntegrationConfigResponse

Fields:

  • configs: [IntegrationConfigValueResponse]
  • id: String!
  • name: String!
  • schema: jsonb
  • tags: jsonb
CreateKBRequest

Fields:

  • account_id: String!
  • knowledgebase: KnowledgebaseInput!
CreateKBResponse

Fields:

  • data: KnowledgebaseOutput
  • errors: [Error]
CreateToolRequest

Fields:

  • account_id: String!
  • tool: ToolRequest!
CreateToolResponse

Fields:

  • data: jsonb
  • errors: jsonb
CreateTriageRuleResponse

Fields:

  • bulk_operation: BulkOperationResponse
  • error: String
  • rule: TriageRule
  • success: Boolean!
CurrentEventPreview

Fields:

  • id: String!
  • new_status: String!
  • title: String!
Datetime
DefaultProviderRequest

Fields:

  • account_id: String!
  • provider_type: String!
DefaultProviderResponse

Fields:

  • integrationSource: String
  • provider: String!
DeleteAgentRequest

Fields:

  • account_id: String!
  • name: String!
DeleteAgentResponse

Fields:

  • data: jsonb
  • errors: jsonb
DeleteByPkRequest

Fields:

  • id: String!
DeleteByPkResponse

Fields:

  • id: String!
DeleteGCRequest

Fields:

  • account_id: String!
  • id: String!
DeleteGCResponse

Fields:

  • data: jsonb
  • errors: [Error]
DeleteIntegrationConfigRequest

Fields:

  • integration_config_name: String!
  • integration_config_status: String
  • integration_name: String!
DeleteIntegrationConfigResponse

Fields:

  • status: String!
DeleteKBRequest

Fields:

  • account_id: String!
  • id: String!
DeleteKBResponse

Fields:

  • data: jsonb
  • errors: [Error]
DeleteLLMConversationRequest

Fields:

  • conversation_id: String!
DeleteLLMConversationResponse

Fields:

  • data: SaveResponse!
DeleteLlmConversationByIdOutput

Fields:

  • data: SaveResponse
DeleteLlmConversationByIdRequest

Fields:

  • conversation_id: uuid!
DeleteToolRequest

Fields:

  • account_id: String!
  • name: String!
DeleteToolResponse

Fields:

  • data: jsonb
  • errors: jsonb
DeleteTriageRuleResponse

Fields:

  • error: String
  • success: Boolean!
DisableAlertRule

Fields:

  • accountId: String!
  • alert: String!
  • enable: Boolean!
  • group: String!
  • id: String!
  • namespace: String!
DuplicateSuggestion

Fields:

  • event_id: String!
  • is_first: Boolean!
  • occurrence_number: Int!
  • starts_at: timestamp!
  • title: String!
DwQueriesResponse

Fields:

  • rows: [DwQueriesRowResponse]
DwQueriesRowResponse

Fields:

  • account_id: String
  • bill: Float
  • bill_interval_from: Datetime
  • bill_interval_to: Datetime
  • bill_total_duration_micro: Int
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • created_at: Datetime
  • database_name: String
  • db_username: String
  • id: String
  • partitions_scanned: Float
  • query_ended_at: Datetime
  • query_error_message: String
  • query_exec_duration_micro: Int
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: Int
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_result_cache_hit: Boolean
  • query_returned_bytes: Int
  • query_returned_rows: Int
  • query_session_id: String
  • query_started_at: Datetime
  • query_status: String
  • query_text: String
  • query_transaction_id: String
  • query_type: String
  • query_usage_limit: String
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • resource_id: String
  • rpu: Float
  • tags: Json
  • tenant_id: String
  • transaction_block_time: Float
  • warehouse_name: String
DwQueriesWhereRequest

Fields:

  • _and: [DwQueriesWhereRequest]
  • _not: DwQueriesWhereRequest
  • _or: [DwQueriesWhereRequest]
  • account_id: QueryWhereStringRequest
  • bill: QueryWhereFloatRequest
  • bill_interval_from: QueryWhereDatetimeRequest
  • bill_interval_to: QueryWhereDatetimeRequest
  • bill_total_duration_micro: QueryWhereIntRequest
  • bytes_scanned: QueryWhereFloatRequest
  • bytes_spilled_locally: QueryWhereFloatRequest
  • bytes_spilled_remotely: QueryWhereFloatRequest
  • created_at: QueryWhereDatetimeRequest
  • database_name: QueryWhereStringRequest
  • db_username: QueryWhereStringRequest
  • id: QueryWhereStringRequest
  • partitions_scanned: QueryWhereFloatRequest
  • query_ended_at: QueryWhereDatetimeRequest
  • query_error_message: QueryWhereStringRequest
  • query_exec_duration_micro: QueryWhereIntRequest
  • query_id: QueryWhereStringRequest
  • query_md5: QueryWhereStringRequest
  • query_normalized: QueryWhereStringRequest
  • query_normalized_md5: QueryWhereStringRequest
  • query_planning_duration_micro: QueryWhereIntRequest
  • query_queue_duration_micro: QueryWhereIntRequest
  • query_remote_ip: QueryWhereStringRequest
  • query_returned_bytes: QueryWhereIntRequest
  • query_returned_rows: QueryWhereIntRequest
  • query_session_id: QueryWhereStringRequest
  • query_started_at: QueryWhereDatetimeRequest
  • query_status: QueryWhereStringRequest
  • query_text: QueryWhereStringRequest
  • query_transaction_id: QueryWhereStringRequest
  • query_type: QueryWhereStringRequest
  • query_usage_limit: QueryWhereStringRequest
  • queue_overload_time: QueryWhereFloatRequest
  • queue_provision_time: QueryWhereFloatRequest
  • queue_repair_time: QueryWhereFloatRequest
  • resource_id: QueryWhereStringRequest
  • rpu: QueryWhereFloatRequest
  • tenant_id: QueryWhereStringRequest
  • transaction_block_time: QueryWhereFloatRequest
  • warehouse_name: QueryWhereStringRequest
DwQueryGroupingWhereRequest

Fields:

  • _and: [DwQueryGroupingWhereRequest]
  • _not: DwQueryGroupingWhereRequest
  • _or: [DwQueryGroupingWhereRequest]
  • account_id: QueryWhereStringRequest
  • bill: QueryWhereFloatRequest
  • bytes_scanned: QueryWhereFloatRequest
  • bytes_spilled_locally: QueryWhereFloatRequest
  • bytes_spilled_remotely: QueryWhereFloatRequest
  • database_name: QueryWhereStringRequest
  • db_username: QueryWhereStringRequest
  • partitions_scanned: QueryWhereFloatRequest
  • query_exec_duration_micro: QueryWhereFloatRequest
  • query_normalized: QueryWhereStringRequest
  • query_normalized_md5: QueryWhereStringRequest
  • query_planning_duration_micro: QueryWhereFloatRequest
  • query_queue_duration_micro: QueryWhereFloatRequest
  • query_remote_ip: QueryWhereStringRequest
  • query_returned_bytes: QueryWhereFloatRequest
  • query_returned_rows: QueryWhereFloatRequest
  • query_started_at: QueryWhereDatetimeRequest
  • query_status: QueryWhereStringRequest
  • query_text: QueryWhereStringRequest
  • query_type: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • rpu: QueryWhereFloatRequest
  • tenant_id: QueryWhereStringRequest
  • warehouse_name: QueryWhereStringRequest
DwQueryGroupingsResponse

Fields:

  • rows: [DwQueryGroupingsRowResponse]
DwQueryGroupingsRowResponse

Fields:

  • account_id: String
  • avg_bill: Float
  • avg_bytes_scanned: Float
  • avg_bytes_spilled_locally: Float
  • avg_bytes_spilled_remotely: Float
  • avg_partitions_scanned: Float
  • avg_query_exec_duration_micro: Float
  • avg_query_planning_duration_micro: Float
  • avg_query_queue_duration_micro: Float
  • avg_query_returned_bytes: Float
  • avg_query_returned_rows: Float
  • avg_rpu: Float
  • database_name: String
  • database_name_list: [String]
  • db_username: String
  • db_username_list: [String]
  • max_bill: Float
  • max_bytes_scanned: Float
  • max_bytes_spilled_locally: Float
  • max_bytes_spilled_remotely: Float
  • max_partitions_scanned: Float
  • max_query_exec_duration_micro: Float
  • max_query_planning_duration_micro: Float
  • max_query_queue_duration_micro: Float
  • max_query_returned_bytes: Float
  • max_query_returned_rows: Float
  • max_query_started_at: Datetime
  • max_rpu: Float
  • min_query_started_at: Datetime
  • query_count: Int
  • query_normalized: String
  • query_normalized_md5: String
  • query_remote_ip: String
  • query_remote_ip_list: [String]
  • query_started_at: Datetime
  • query_status: String
  • query_text: String
  • query_type: String
  • resource_id: String
  • sum_bill: Float
  • sum_bytes_scanned: Float
  • sum_bytes_spilled_locally: Float
  • sum_bytes_spilled_remotely: Float
  • sum_partitions_scanned: Float
  • sum_query_exec_duration_micro: Float
  • sum_query_planning_duration_micro: Float
  • sum_query_queue_duration_micro: Float
  • sum_query_returned_bytes: Float
  • sum_query_returned_rows: Float
  • sum_rpu: Float
  • tenant_id: String
  • warehouse_name: String
Error

Fields:

  • code: String
  • message: String!
EventBackfillTriageOutput

Fields:

  • correlations_created: Int!
  • duplicates_detected: Int!
  • duration_seconds: Float!
  • errors: Int!
  • status: String!
  • total_events: Int!
EventClassification

Fields:

  • apply_scope: String!
  • apply_until: timestamp
  • classification: String!
  • classified_at: timestamp!
  • classified_by: String!
  • cloud_account_id: String!
  • corrected_priority: String
  • event_id: String!
  • feature_snapshot: String
  • id: String!
  • linked_event_id: String
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String!
  • reason_text: String
  • tenant_id: String!
EventDeduplicateCorrelationsOutput

Fields:

  • cloud_account_id: String!
  • status: String!
EventFilterResult

Fields:

  • filter_type: String!
  • total: Int!
  • values: [EventFilterValueItem!]!
EventFilterValueItem

Fields:

  • count: Int
  • value: String!
EventFilterValuesRequest

Fields:

  • account_id: String
  • end_time: timestamptz
  • filter_types: [String!]!
  • label_key: String
  • limit: Int
  • start_time: timestamptz
EventFilterValuesResponse

Fields:

  • account_id: String
  • filters: [EventFilterResult!]!
EventGetCorrelationsOutput

Fields:

  • correlated_events: [TriageCorrelatedEvent]
  • correlation_count: Int!
  • event_id: String!
EventGetDuplicateSuggestionsOutput

Fields:

  • suggestions: [DuplicateSuggestion]!
EventGetDuplicatesOutput

Fields:

  • duplicate_chain: [TriageDuplicateEvent]
  • event_id: String!
  • first_event_id: String
  • is_duplicate: Boolean!
  • occurrence_number: Int
  • total_occurrences: Int!
EventGetTriageOutput

Fields:

  • correlated_events: [TriageCorrelatedEvent]
  • correlation_count: Int!
  • duplicate_info: TriageDuplicateInfo
  • event_id: String!
  • historical_stats: TriageHistoricalStats
  • hourly_trend: [TriageHourlyBucket]
  • is_duplicate: Boolean!
EventGetTriageRuleEventsOutput

Fields:

  • events: [TriageRuleEventOutput]
  • limit: Int
  • offset: Int
  • total: Int
EventGetTriageRulesOutput

Fields:

  • rules: [TriageRule]!
EventGroupingsResponse

Fields:

  • rows: [EventGroupingsRowResponse]
EventGroupingsRowResponse

Fields:

  • account_id: String
  • aggregation_key: String
  • category: String
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • count_aggregation_key: Int
  • count_application_issues: Int
  • count_new_issues: Int
  • count_node_issues: Int
  • count_pod_issues: Int
  • count_priority_debug: Int
  • count_priority_high: Int
  • count_priority_info: Int
  • count_priority_low: Int
  • count_priority_medium: Int
  • count_priority_p0: Int
  • count_priority_p1: Int
  • count_priority_p2: Int
  • count_priority_p3: Int
  • count_recurring_issues: Int
  • count_subject_name: Int
  • created_at: Datetime
  • distinct_aggregation_key: Json
  • distinct_priority: Json
  • distinct_status: Json
  • distinct_subject_name: Json
  • distinct_subject_namespace: Json
  • event_count: Float
  • finding_type: String
  • fingerprint: String
  • fingerprint_event_count: Int
  • fingerprint_first_seen_at: Datetime
  • is_new_issue: Boolean
  • labels: String
  • latest_computed_priority: String
  • latest_computed_score: Int
  • latest_event_id: String
  • latest_nb_status: String
  • latest_score_confidence: Float
  • latest_score_factors: Json
  • latest_title: String
  • max_computed_score: Int
  • max_created_at: Datetime
  • min_created_at: Datetime
  • nb_status: String
  • nb_status_changed_at: Datetime
  • nb_status_changed_by: String
  • principal: String
  • priority: String
  • resource_id: String
  • score_confidence: Float
  • score_factors: Json
  • service_key: String
  • source: String
  • status: String
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_type: String
  • tenant_id: String
  • title: String
EventGroupingsWhereRequest

Fields:

  • _and: [EventGroupingsWhereRequest]
  • _not: EventGroupingsWhereRequest
  • _or: [EventGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • aggregation_key: QueryWhereStringRequest
  • category: QueryWhereStringRequest
  • cluster: QueryWhereStringRequest
  • computed_priority: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • ends_at: QueryWhereDatetimeRequest
  • finding_id: QueryWhereStringRequest
  • finding_type: QueryWhereStringRequest
  • fingerprint: QueryWhereStringRequest
  • fingerprint_first_seen_at: QueryWhereDatetimeRequest
  • id: QueryWhereStringRequest
  • is_new_issue: QueryWhereBooleanRequest
  • labels: QueryWhereStringRequest
  • nb_status: QueryWhereStringRequest
  • principal: QueryWhereStringRequest
  • priority: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • service_key: QueryWhereStringRequest
  • source: QueryWhereStringRequest
  • starts_at: QueryWhereDatetimeRequest
  • status: QueryWhereStringRequest
  • subject_name: QueryWhereStringRequest
  • subject_namespace: QueryWhereStringRequest
  • subject_node: QueryWhereStringRequest
  • subject_owner: QueryWhereStringRequest
  • subject_type: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • title: QueryWhereStringRequest
EventPreviewTriageRuleOutput

Fields:

  • matching_events_count: Int!
  • new_status: String!
  • sample_events: [RulePreviewSampleEvent]!
EventTimeline

Fields:

  • action: String
  • metadata: jsonb
  • ref_id: String
  • ref_type: String
  • summary: String
  • timestamp: timestamp
EventTimelineOutput

Fields:

  • event_id: String!
  • timeline: [EventTimeline]
EventUpdateRequest

Fields:

  • event_id: String!
  • urgency: String!
EventsResponse

Fields:

  • rows: [EventsRowResponse]
EventsRowResponse

Fields:

  • account_id: String
  • aggregation_key: String
  • category: String
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • created_at: Datetime
  • description: String
  • ends_at: Datetime
  • evidences: String
  • failure: String
  • finding_id: String
  • finding_type: String
  • fingerprint: String
  • fingerprint_first_seen_at: Datetime
  • id: String
  • is_new_issue: Boolean
  • labels: String
  • nb_status: String
  • nb_status_changed_at: Datetime
  • nb_status_changed_by: String
  • pr_title: String
  • pr_url: String
  • principal: String
  • priority: String
  • resource_id: String
  • score_confidence: Float
  • score_factors: Json
  • service_key: String
  • source: String
  • starts_at: Datetime
  • status: String
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_type: String
  • tenant_id: String
  • title: String
  • updated_at: Datetime
  • urgency: String
EventsWhereRequest

Fields:

  • _and: [EventsWhereRequest]
  • _not: EventsWhereRequest
  • _or: [EventsWhereRequest]
  • account_id: QueryWhereStringRequest
  • aggregation_key: QueryWhereStringRequest
  • category: QueryWhereStringRequest
  • cluster: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • description: QueryWhereStringRequest
  • ends_at: QueryWhereDatetimeRequest
  • evidences: QueryWhereStringRequest
  • failure: QueryWhereStringRequest
  • finding_id: QueryWhereStringRequest
  • finding_type: QueryWhereStringRequest
  • fingerprint: QueryWhereStringRequest
  • fingerprint_first_seen_at: QueryWhereDatetimeRequest
  • id: QueryWhereStringRequest
  • is_new_issue: QueryWhereBooleanRequest
  • labels: QueryWhereStringRequest
  • nb_status: QueryWhereStringRequest
  • principal: QueryWhereStringRequest
  • priority: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • service_key: QueryWhereStringRequest
  • source: QueryWhereStringRequest
  • starts_at: QueryWhereDatetimeRequest
  • status: QueryWhereStringRequest
  • subject_name: QueryWhereStringRequest
  • subject_namespace: QueryWhereStringRequest
  • subject_node: QueryWhereStringRequest
  • subject_owner: QueryWhereStringRequest
  • subject_type: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • title: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
ExistingEventsPreview

Fields:

  • count: Int!
  • sample_titles: [String]
  • will_be_updated: Boolean!
ExportRecommendationRequest

Fields:

  • account_id: String!
  • category: String
  • format: String!
  • namespace: String
  • rule_name: String
  • status: String
  • workload_name: String
  • workload_type: String
ExportRecommendationResponse

Fields:

  • content_type: String!
  • file_data: String!
  • filename: String!
  • record_count: Int
FeedbackResponse

Fields:

  • success: Boolean!
FetchLogLabelRequest

Fields:

  • account_id: String!
  • end_time: Float
  • log_provider: String
  • request: jsonb
  • start_time: Float
FetchLogLabelValuesRequest

Fields:

  • account_id: String!
  • end_time: Float
  • label_name: String!
  • log_provider: String
  • request: jsonb
  • start_time: Float
FetchLogQueryOutput

Fields:

  • query: String!
FetchLogQueryRequest

Fields:

  • account_id: String!
  • log_provider: String
  • log_provider_source: String
  • query_request: jsonb
FetchLogRequest

Fields:

  • account_id: String!
  • end_time: Float!
  • limit: Int
  • log_provider: String
  • log_provider_source: String
  • offset: Int
  • query: String!
  • query_request: jsonb
  • request: jsonb
  • sort_fields: [SortField]
  • start_time: Float!
  • step_interval: Int
FetchLogResponse

Fields:

  • labels: jsonb!
  • message: String!
  • severity: String!
  • timestamp: String!
FetchMetricLabelsRequest

Fields:

  • account_id: String!
  • end_time: Float
  • metric: String!
  • metric_provider: String
  • request: jsonb
  • start_time: Float
FetchMetricsLabelValueRequest

Fields:

  • account_id: String!
  • end_time: Float
  • label: String!
  • metric_provider: String
  • request: jsonb
  • start_time: Float
FetchMetricsListRequest

Fields:

  • account_id: String!
  • end_time: Float
  • metric_provider: String
  • request: jsonb
  • start_time: Float
FetchMetricsRequest

Fields:

  • account_id: String!
  • end_time: Float
  • instant: Boolean
  • queries: jsonb!
  • request: jsonb
  • start_time: Float
  • step_interval: Int
Float_comparison_exp

Boolean expression to compare columns of type "Float". All fields are combined with logical 'AND'.

Fields:

  • _eq: Float
  • _gt: Float
  • _gte: Float
  • _in: [Float!]
  • _is_null: Boolean
  • _lt: Float
  • _lte: Float
  • _neq: Float
  • _nin: [Float!]
FunctionResponse

Fields:

  • data: CreateFunctionResponse!
FunctionUpdateResponse

Fields:

  • data: jsonb!
FutureEventsPreview

Fields:

  • rule_applies: Boolean!
  • scope_description: String!
GenerateFeedbackResponse

Fields:

  • data: FeedbackResponse!
GetApplicationProfileResponse

Fields:

  • account_id: String
  • base64_profile: jsonb
  • error_message: String
  • profile_task_id: String
  • status: String
GetAutopilot

Fields:

  • account_id: String!
  • event_ids: [String]!
GetAutopiloteOutput

Fields:

  • runbooks: [jsonb]!
GetBulkOperationStatusResponse

Fields:

  • completed_at: timestamp
  • error_message: String
  • job_id: String!
  • processed_events: Int!
  • status: String!
  • total_events: Int!
GetConfigInput

Fields:

  • account_id: String!
  • decrypt: Boolean
  • key: String!
GetConfigResponse

Fields:

  • config: jsonb
GetFeedbackResponse

Fields:

  • rows: [AiFeedbackResponse]
GetFeedbackWhereRequest

Fields:

  • _and: [GetFeedbackWhereRequest]
  • _not: GetFeedbackWhereRequest
  • _or: [GetFeedbackWhereRequest]
  • cloud_account_id: QueryWhereStringRequest
  • session_id: QueryWhereStringRequest
GetGCRequest

Fields:

  • account_id: String!
  • id: String!
GetGCResponse

Fields:

  • data: GlobalContextOutput
  • errors: [Error]
GetKBRequest

Fields:

  • account_id: String!
  • id: String!
GetKBResponse

Fields:

  • data: KnowledgebaseOutput
  • errors: [Error]
GlobalContextInput

Fields:

  • data: String!
  • description: String
  • file_name: String!
  • format: String!
  • name: String!
GlobalContextOutput

Fields:

  • account_id: String!
  • created_at: timestamp
  • created_by: String
  • data: String!
  • data_filename: String!
  • data_format: String!
  • data_size_bytes: Float
  • description: String
  • id: String!
  • name: String!
  • status: String!
  • tenant_id: String!
  • updated_at: timestamp
  • updated_by: String
GlobalContextUpdateInput

Fields:

  • data: String
  • description: String
  • file_name: String
  • format: String
  • id: String!
  • name: String
InsightApplication

Fields:

  • name: String!
  • namespace: String!
InsightDetails

Fields:

  • applications: [InsightApplication]
  • source: String!
  • title: String!
InsightRequest

Fields:

  • account_id: String!
InsightResponse

Fields:

  • data: [InsightDetails!]!
Instance

Fields:

  • Id: ServiceApplicationId
  • IsFailed: Boolean
Int_comparison_exp

Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.

Fields:

  • _eq: Int
  • _gt: Int
  • _gte: Int
  • _in: [Int!]
  • _is_null: Boolean
  • _lt: Int
  • _lte: Int
  • _neq: Int
  • _nin: [Int!]
IntegrationConfigValueInput

Fields:

  • is_encrypted: Boolean
  • name: String!
  • value: String!
IntegrationConfigValueResponse

Fields:

  • name: String!
  • value: String!
IntegrationSchemaRequest

Fields:

  • integration_name: String!
IntegrationSchemaResponse

Fields:

  • data: jsonb!
Json
K8sClusterGroupingsResponse

Fields:

  • rows: [K8sClusterGroupingsRowResponse]
K8sClusterGroupingsRowResponse

Fields:

  • account_id: String
  • node_count: Int
  • node_cpu_allocatable: Float
  • node_cpu_capacity: Float
  • node_memory_allocatable: Float
  • node_memory_capacity: Float
  • node_spot_count: Int
  • pod_status_counts: String
  • tenant_id: String
  • workload_type_counts: String
K8sClusterGroupingsWhereRequest

Fields:

  • _and: [K8sClusterGroupingsWhereRequest]
  • _not: K8sClusterGroupingsWhereRequest
  • _or: [K8sClusterGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
K8sMetricsGroupingsResponse

Fields:

  • rows: [K8sMetricsGroupingsRowResponse]
K8sMetricsGroupingsRowResponse

Fields:

  • account_id: String
  • avg_cpu_efficiency: Float
  • avg_cpu_request: Float
  • avg_cpu_used: Float
  • avg_efficiency: Float
  • avg_memory_request: Float
  • avg_memory_used: Float
  • avg_ram_efficiency: Float
  • cost: Float
  • max_cpu_efficiency: Float
  • max_cpu_request: Float
  • max_cpu_used: Float
  • max_efficiency: Float
  • max_memory_request: Float
  • max_memory_used: Float
  • max_ram_efficiency: Float
  • namespace_name: String
  • node_name: String
  • pod_fqdn: String
  • pod_name: String
  • sum_egress: Float
  • sum_ingress: Float
  • tenant_id: String
  • timestamp: Datetime
  • workload_fqdn: String
  • workload_name: String
  • workload_type: String
K8sMetricsGroupingsWhereRequest

Fields:

  • _and: [K8sMetricsGroupingsWhereRequest]
  • _not: K8sMetricsGroupingsWhereRequest
  • _or: [K8sMetricsGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • namespace_name: QueryWhereStringRequest
  • node_name: QueryWhereStringRequest
  • pod_fqdn: QueryWhereStringRequest
  • pod_name: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
  • workload_fqdn: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
  • workload_type: QueryWhereStringRequest
K8sNamespaceGroupingRowResponse

Fields:

  • account_id: String
  • count: Int
  • is_active: Boolean
  • name: String
  • tenant_id: String
K8sNamespaceGroupingsResponse

Fields:

  • rows: [K8sNamespaceGroupingRowResponse]
K8sNamespaceGroupingsWhereRequest

Fields:

  • _and: [K8sNamespaceGroupingsWhereRequest]
  • _not: K8sNamespaceGroupingsWhereRequest
  • _or: [K8sNamespaceGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • creation_time: QueryWhereDatetimeRequest
  • is_active: QueryWhereBooleanRequest
  • name: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
K8sNamespaceResponse

Fields:

  • rows: [K8sNamespaceRowResponse]
K8sNamespaceRowResponse

Fields:

  • account_id: String
  • creation_time: Datetime
  • is_active: Boolean
  • name: String
  • pod_count: Int
  • tenant_id: String
  • updated_at: Datetime
  • workload_count: Int
K8sNamespaceWhereRequest

Fields:

  • _and: [K8sNamespaceWhereRequest]
  • _not: K8sNamespaceWhereRequest
  • _or: [K8sNamespaceWhereRequest]
  • account_id: QueryWhereStringRequest
  • creation_time: QueryWhereDatetimeRequest
  • is_active: QueryWhereBooleanRequest
  • name: QueryWhereStringRequest
  • pod_count: QueryWhereIntRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
  • workload_count: QueryWhereIntRequest
K8sPodGroupingsResponse

Fields:

  • rows: [K8sPodGroupingsRowResponse]
K8sPodGroupingsRowResponse

Fields:

  • account_id: String
  • count: Int
  • external_id: String
  • is_active: Boolean
  • name: String
  • namespace: String
  • node_name: String
  • pod_fqdn: String
  • resource_id: String
  • status: String
  • tenant_id: String
  • workload_name: String
  • workload_type: String
K8sPodGroupingsWhereRequest

Fields:

  • _and: [K8sPodGroupingsWhereRequest]
  • _not: K8sPodGroupingsWhereRequest
  • _or: [K8sPodGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • creation_time: QueryWhereDatetimeRequest
  • external_id: QueryWhereStringRequest
  • is_active: QueryWhereBooleanRequest
  • labels: QueryWhereStringRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
  • node_name: QueryWhereStringRequest
  • pod_fqdn: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
  • workload_type: QueryWhereStringRequest
K8sPodsResponse

Fields:

  • rows: [K8sPodsRowResponse]
K8sPodsRowResponse

Fields:

  • account_id: String
  • creation_time: Datetime
  • external_id: String
  • is_active: Boolean
  • labels: Json
  • last_seen: Datetime
  • meta: Json
  • name: String
  • namespace: String
  • node_name: String
  • pod_fqdn: String
  • resource_id: String
  • restart_count: Json
  • status: String
  • tenant_id: String
  • updated_at: Datetime
  • workload_name: String
  • workload_type: String
K8sPodsWhereRequest

Fields:

  • _and: [K8sPodsWhereRequest]
  • _not: K8sPodsWhereRequest
  • _or: [K8sPodsWhereRequest]
  • account_id: QueryWhereStringRequest
  • creation_time: QueryWhereDatetimeRequest
  • external_id: QueryWhereStringRequest
  • is_active: QueryWhereBooleanRequest
  • labels: QueryWhereStringRequest
  • last_seen: QueryWhereDatetimeRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
  • node_name: QueryWhereStringRequest
  • pod_fqdn: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • restart_count: QueryWhereIntRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
  • workload_name: QueryWhereStringRequest
  • workload_type: QueryWhereStringRequest
K8sVersionResponse

Fields:

  • release_date: String!
  • version: String!
K8sWorkloadGroupingRowResponse

Fields:

  • account_id: String
  • count: Int
  • cronjob_count: Int
  • daemonset_count: Int
  • deployment_count: Int
  • external_id: String
  • is_active: Boolean
  • job_count: Int
  • kind: String
  • name: String
  • namespace: String
  • replicaset_count: Int
  • resource_id: String
  • rollout_count: Int
  • statefulset_count: Int
  • tenant_id: String
  • workload_fqdn: String
K8sWorkloadGroupingsResponse

Fields:

  • rows: [K8sWorkloadGroupingRowResponse]
K8sWorkloadGroupingsWhereRequest

Fields:

  • _and: [K8sWorkloadGroupingsWhereRequest]
  • _not: K8sWorkloadGroupingsWhereRequest
  • _or: [K8sWorkloadGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • external_id: QueryWhereStringRequest
  • is_active: QueryWhereBooleanRequest
  • kind: QueryWhereStringRequest
  • labels: QueryWhereStringRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • workload_fqdn: QueryWhereStringRequest
K8sWorkloadResponse

Fields:

  • rows: [K8sWorkloadRowResponse]
K8sWorkloadRowResponse

Fields:

  • account_id: String
  • creation_time: Datetime
  • external_id: String
  • is_active: String
  • kind: String
  • labels: Json
  • last_seen: Datetime
  • meta: Json
  • name: String
  • namespace: String
  • ready_pods: String
  • resource_id: String
  • tenant_id: String
  • total_pods: String
  • updated_at: Datetime
  • workload_fqdn: String
K8sWorkloadWhereRequest

Fields:

  • _and: [K8sWorkloadWhereRequest]
  • _not: K8sWorkloadWhereRequest
  • _or: [K8sWorkloadWhereRequest]
  • account_id: QueryWhereStringRequest
  • creation_time: QueryWhereDatetimeRequest
  • external_id: QueryWhereStringRequest
  • is_active: QueryWhereBooleanRequest
  • kind: QueryWhereStringRequest
  • labels: QueryWhereStringRequest
  • last_seen: QueryWhereDatetimeRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
  • ready_pods: QueryWhereIntRequest
  • resource_id: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • total_pods: QueryWhereIntRequest
  • updated_at: QueryWhereDatetimeRequest
  • workload_fqdn: QueryWhereStringRequest
KnowledgebaseInput

Fields:

  • data: String!
  • description: String
  • file_name: String!
  • format: String!
  • name: String!
KnowledgebaseOutput

Fields:

  • account_id: String!
  • created_at: timestamp
  • created_by: String
  • data: String!
  • data_filename: String!
  • data_format: String!
  • data_size_bytes: Float
  • description: String
  • id: String!
  • integration_id: String
  • kb_source: String
  • kb_type: String!
  • name: String!
  • status: String!
  • tenant_id: String!
  • updated_at: timestamp
  • updated_by: String
KnowledgebaseUpdateInput

Fields:

  • data: String
  • description: String
  • file_name: String
  • format: String
  • id: String!
  • name: String
LLMFunctionCreateResponse

Fields:

  • account_id: String!
  • created_at: Datetime
  • created_by: String
  • description: String!
  • id: String!
  • name: String!
  • prompt: String!
  • status: String!
  • tenant_id: String!
  • updated_at: Datetime
  • updated_by: String
  • variable_defaults: jsonb
  • variables: [String!]
  • version: Int
LLMRagGroupingResponse

Fields:

  • rows: [LLMRagGroupingRowResponse!]!
LLMRagGroupingRowResponse

Fields:

  • account_id: String
  • agent_id: String
  • count: Int!
  • created_at: Datetime
  • created_by: String
  • data: String
  • data_filename: String
  • data_format: String
  • tenant_id: String
  • updated_at: Datetime
  • updated_by: String
LLMRagGroupingWhereRequest

Fields:

  • _and: [LLMRagGroupingWhereRequest]
  • _not: LLMRagGroupingWhereRequest
  • _or: [LLMRagGroupingWhereRequest]
  • account_id: QueryWhereStringRequest
  • agent_id: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • created_by: QueryWhereStringRequest
  • data: QueryWhereStringRequest
  • data_filename: QueryWhereStringRequest
  • data_format: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
  • updated_by: QueryWhereStringRequest
Labels

Fields:

  • severity: String!
LicenseResponse

Fields:

  • license: jsonb!

Fields:

  • BytesReceived: float8
  • BytesSent: float8
  • DrillDown: LinkDrillDown
  • FailureCount: float8
  • Id: String!
  • Latency: float8
  • Protocol: String
  • RequestCount: float8
  • Stats: [String!]
  • Status: Int
  • Weight: float8
LinkDrillDown

Fields:

  • error_types: [jsonb]
  • failed_trace_ids: [String]
  • filter_hints: LinkFilterHints
  • http_status_codes: [jsonb]
  • operations: [jsonb]
  • sample_trace_ids: [String]
  • time_range: LinkTimeRange
LinkFilterHints

Fields:

  • protocol: String
  • source_service: String
  • span_attribute_filters: jsonb
  • target_service: String
LinkTimeRange

Fields:

  • end_time: String
  • start_time: String
ListAIMemoryRequest

Fields:

  • account_id: String!
  • conversation_id: String
  • limit: Int
  • message_id: String
  • offset: Int
ListAIMemoryResponse

Fields:

  • data: [AIMemoryResponse]
  • errors: [Error]
ListAIReferencesRequest

Fields:

  • account_id: String!
  • agent_id: String
  • conversation_id: String
  • limit: Int
  • message_id: String
  • offset: Int
ListAIReferencesResponse

Fields:

  • data: [AIReferenceResponse]
  • errors: [Error]
ListAgentKBsRequest

Fields:

  • account_id: String!
  • agent_id: String!
ListAgentKBsResponse

Fields:

  • data: jsonb
  • errors: [Error]
ListAgentRequest

Fields:

  • account_id: String!
ListAgentResponse

Fields:

  • data: jsonb!
ListAgentsWithKBCountsRequest

Fields:

  • account_id: String!
ListAgentsWithKBCountsResponse

Fields:

  • data: jsonb
  • errors: [Error]
ListAnomalyResponse

Fields:

  • rows: AnomalyResponse!
ListAnomalyV3Response

Fields:

  • rows: AnomalyV3Response!
ListAnomalyV3WhereRequest

Fields:

  • account_id: QueryWhereStringRequest
  • anomaly_type: QueryWhereStringRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
ListAnomalyWhereRequest

Fields:

  • account_id: QueryWhereStringRequest
  • anomaly_type: QueryWhereStringRequest
  • config_id: QueryWhereStringRequest
  • is_anomaly: QueryWhereBooleanRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
ListGCRequest

Fields:

  • account_id: String!
ListGCResponse

Fields:

  • data: [GlobalContextOutput]
  • errors: [Error]
ListKBAgentMappingsRequest

Fields:

  • account_id: String!
ListKBAgentMappingsResponse

Fields:

  • data: jsonb
  • errors: [Error]
ListKBAgentsRequest

Fields:

  • account_id: String!
  • kb_id: String!
ListKBAgentsResponse

Fields:

  • data: jsonb
  • errors: [Error]
ListKBRequest

Fields:

  • account_id: String!
ListKBResponse

Fields:

  • data: [KnowledgebaseOutput]
  • errors: [Error]
ListToolRequest

Fields:

  • account_id: String!
ListToolResponse

Fields:

  • data: jsonb
  • errors: jsonb
LogGroupRequest

Fields:

  • account_id: String!
  • end_time: Float!
  • log_provider: String
  • log_provider_source: String
  • request: jsonb
  • start_time: Float!
LogIndexFieldRequest

Fields:

  • account_id: String!
  • request: jsonb
LogIndexFieldResponse

Fields:

  • attributes: jsonb
  • field: String!
MapKBToAgentRequest

Fields:

  • account_id: String!
  • agent_id: String!
  • kb_id: String!
MapKBToAgentResponse

Fields:

  • data: jsonb
  • errors: [Error]
MetricGroupingsResponse

Fields:

  • rows: [MetricGroupingsRowResponse]
MetricGroupingsRowResponse

Fields:

  • account_id: String
  • avg_value: Float
  • count_value: Int
  • max_value: Float
  • metric: String
  • min_value: Float
  • resource_id: String
  • sum_value: Float
  • tenant_id: String
  • timestamp: Datetime
MetricGroupingsWhereRequest

Fields:

  • _and: [MetricGroupingsWhereRequest]
  • _not: MetricGroupingsWhereRequest
  • _or: [MetricGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • metric: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
  • value: QueryWhereFloatRequest
MetricsQueryUtilisationRequest

Fields:

  • account_id: String!
  • end_time: Float
  • metric_provider: String
  • metric_provider_source: String
  • request: jsonb!
  • start_time: Float
MonitoringRecommendationsResponse

Fields:

  • rows: [MonitoringRecommendationsRowResponse]
MonitoringRecommendationsRowResponse

Fields:

  • account_id: String
  • namespace: String
  • recommendation_count: Int
  • tenant_id: String
  • workload_name: String
MonitoringResponse

Fields:

  • rows: [MonitoringRowResponse]
MonitoringRowResponse

Fields:

  • account_id: String
  • account_name: String
  • application_error_count: Int
  • creation_time: String
  • event_count: Int
  • failed_slo_count: Int
  • name: String
  • namespace: String
  • pod_error_count: Int
  • ready_pods: Int
  • total_pods: Int
  • total_slo_count: Int
  • workload_id: String
MonitoringWhereRequest

Fields:

  • account_id: QueryWhereStringRequest
  • creation_time: QueryWhereStringRequest
  • name: QueryWhereStringRequest
  • namespace: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
NBVersionResponse

Fields:

  • agent_version_latest: String!
OTelResourceAttributes

Fields:

  • cloud_account_id: String
  • cloud_availability_zone: String
  • cloud_region: String
  • container_id: String
  • host_id: String
  • host_name: String
  • service_name: String
OrgMemberStatus

Fields:

  • account_id: String!
  • account_name: String!
  • account_number: String!
  • created_at: String
  • status: String!
OutputLogLabel

Fields:

  • attributes: jsonb
  • label: String!
OutputLogLabelValue

Fields:

  • attributes: jsonb
  • value: String!
OutputMetricLabels

Fields:

  • attributes: jsonb
  • label: String!
OutputMetricQuery

Fields:

  • results: [jsonb]!
OutputMetrics

Fields:

  • attributes: jsonb
  • metric: String!
OutputMetricsLabelValues

Fields:

  • attributes: jsonb
  • value: String!
PerformanceHost

Fields:

  • database_load: Float
  • host_name: String
  • percentage: Float
PerformanceMetric

Fields:

  • name: String
  • timestamps: [bigint]
  • unit: String
  • values: [Float]
PerformanceQuery

Fields:

  • avg_cpu_time: Float
  • avg_duration: Float
  • avg_rows_processed: bigint
  • cache_hit_ratio: Float
  • database_load: Float
  • execution_count: bigint
  • max_duration: Float
  • min_duration: Float
  • query_id: String
  • query_text: String
  • total_duration: Float
PerformanceUser

Fields:

  • database_load: Float
  • percentage: Float
  • user_name: String
PerformanceWaitEvent

Fields:

  • avg_wait_time: Float
  • database_load: Float
  • event_name: String
  • event_type: String
  • percentage: Float
  • total_wait_time: Float
  • wait_count: bigint
PermissionStatusOutput

Fields:

  • errorDetail: String
  • hasAccess: Boolean!
  • permission: String!
PlaybookGroupResponse

Fields:

  • rows: [PlaybookGroupRowResponse]
PlaybookGroupRowResponse

Fields:

  • count: Float
PlaybookGroupWhereRequest

Fields:

  • _and: [PlaybookGroupWhereRequest]
  • _not: PlaybookGroupWhereRequest
  • _or: [PlaybookGroupWhereRequest]
  • account_id: QueryWhereStringRequest
  • id: QueryWhereStringRequest
  • name: QueryWhereStringRequest
  • resource_filter: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • trigger: QueryWhereStringRequest
PlaybookResponse

Fields:

  • rows: [PlaybookRowResponse]
PlaybookRowResponse

Fields:

  • account_id: String
  • attributes: String
  • created_at: String
  • display_name: String
  • id: String
  • last_executed_time: String
  • name: String
  • resource: String
  • resource_filter: String
  • status: String
  • tasks: String
  • tenant_id: String
  • trigger: String
  • updated_by: String
  • updated_user_displayname: String
  • updated_username: String
  • username: String
PlaybookWhereRequest

Fields:

  • _and: [PlaybookWhereRequest]
  • _not: PlaybookWhereRequest
  • _or: [PlaybookWhereRequest]
  • account_id: QueryWhereStringRequest
  • id: QueryWhereStringRequest
  • name: QueryWhereStringRequest
  • resource_filter: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • trigger: QueryWhereStringRequest
ProviderConfig

Fields:

  • name: String
QueryColumnInput

Fields:

  • args: [String!]
  • expr: String
  • name: String
QueryColumnTransformationRequest

Fields:

  • args: [String!]
  • expr: String!
  • name: String!
QueryDatabasePerformanceRequest

Fields:

  • account_id: String!
  • database_identifier: String!
  • end_time: timestamp
  • granularity_seconds: Int
  • include_top_hosts: Boolean
  • include_top_queries: Boolean
  • include_top_users: Boolean
  • include_wait_events: Boolean
  • region: String!
  • start_time: timestamp
  • top_n: Int
QueryDatabasePerformanceResponse

Fields:

  • database_identifier: String
  • load_metrics: [PerformanceMetric]
  • metadata: jsonb
  • performance_enabled: Boolean
  • provider: String
  • resource_metrics: [PerformanceMetric]
  • top_hosts: [PerformanceHost]
  • top_queries: [PerformanceQuery]
  • top_users: [PerformanceUser]
  • wait_events: [PerformanceWaitEvent]
QueryOrderByInput

Fields:

  • column: String
  • order: String
QueryRequestInput

Fields:

  • columns: [QueryColumnInput!]
  • group_by: [String!]
  • having: jsonb
  • limit: Int
  • offset: Int
  • order_by: [QueryOrderByInput!]
  • table: String
  • where: jsonb
QuerySortByRequest

Fields:

  • column: String!
  • order: QuerySortOrderRequest
QuerySortOrderRequest

Values:

  • asc
  • asc_nulls_first
  • asc_nulls_last
  • desc
  • desc_nulls_first
  • desc_nulls_last
QueryWhereBooleanRequest

Fields:

  • _eq: Boolean
  • _neq: Boolean
QueryWhereDatetimeBetweenRequest

Fields:

  • _gt: Datetime
  • _gte: Datetime
  • _lt: Datetime
  • _lte: Datetime
QueryWhereDatetimeRequest

Fields:

  • _between: QueryWhereDatetimeBetweenRequest
  • _eq: Datetime
  • _eq_f: String
  • _gt: Datetime
  • _gt_f: String
  • _gte: Datetime
  • _gte_f: String
  • _in: [Datetime!]
  • _is_null: Boolean
  • _lt: Datetime
  • _lt_f: String
  • _lte: Datetime
  • _lte_f: String
  • _neq: Datetime
  • _neq_f: String
QueryWhereFloatBetweenRequest

Fields:

  • _gt: Float
  • _gte: Float
  • _is_null: Boolean
  • _lt: Float
  • _lte: Float
QueryWhereFloatRequest

Fields:

  • _between: QueryWhereFloatBetweenRequest
  • _eq: Float
  • _eq_f: String
  • _gt: Float
  • _gt_f: String
  • _gte: Float
  • _gte_f: String
  • _in: [Float!]
  • _is_null: Boolean
  • _lt: Float
  • _lt_f: String
  • _lte: Float
  • _lte_f: String
  • _neq: Float
  • _neq_f: String
QueryWhereIntBetweenRequest

Fields:

  • _gt: Int
  • _gte: Int
  • _lt: Int
  • _lte: Int
QueryWhereIntRequest

Fields:

  • _between: QueryWhereIntBetweenRequest
  • _eq: Int
  • _eq_f: String
  • _get_f: String
  • _gt: Int
  • _gt_f: String
  • _gte: Int
  • _in: [Int!]
  • _lt: Int
  • _lt_f: String
  • _lte: Int
  • _lte_f: String
  • _neq: Int
  • _neq_f: String
QueryWhereStringRequest

Fields:

  • _contains: String
  • _eq: String
  • _eq_f: String
  • _has_key: String
  • _ilike: String
  • _ilike_f: String
  • _in: [String!]
  • _is_null: Boolean
  • _like: String
  • _like_f: String
  • _neq: String
  • _neq_f: String
  • _nlike: String
  • _not_in: [String!]
RagDataInput

Fields:

  • data: jsonb!
  • filename: String
  • format: String
RecommendationGroupingResponse

Fields:

  • rows: [RecommendationGroupingRowResponse]
RecommendationGroupingRowResponse

Fields:

  • account_id: String
  • account_object_id: String
  • category: String
  • count: Int
  • resource_cloud_service: String
  • resource_id: String
  • resource_k8s_namespace: String
  • resource_name: String
  • resource_type: String
  • rule_name: String
  • severity: String
  • status: String
  • sum_estimated_savings: Float
  • tenant_id: String
  • timestamp: Datetime
RecommendationGroupingWhereRequest

Fields:

  • _and: [RecommendationGroupingWhereRequest]
  • _not: RecommendationGroupingWhereRequest
  • _or: [RecommendationGroupingWhereRequest]
  • account_id: QueryWhereStringRequest
  • account_object_id: QueryWhereStringRequest
  • category: QueryWhereStringRequest
  • deleted_version: QueryWhereStringRequest
  • deprecated_version: QueryWhereStringRequest
  • estimated_savings: QueryWhereFloatRequest
  • recommendation: QueryWhereStringRequest
  • resource_cloud_service: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • resource_k8s_namespace: QueryWhereStringRequest
  • resource_name: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • rule_name: QueryWhereStringRequest
  • severity: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
RecommendationMissConfigGroupingResponse

Fields:

  • rows: [RecommendationMissConfigGroupingRowResponse]
RecommendationMissConfigGroupingRowResponse

Fields:

  • account_id: String
  • account_object_id: String
  • category: String
  • count: Int
  • created_at: Datetime
  • estimated_savings: String
  • missconfig_category: String
  • missconfig_message: String
  • resource_id: String
  • resource_k8s_container: String
  • resource_k8s_namespace: String
  • resource_name: String
  • resource_type: String
  • rule_name: String
  • status: String
  • sum_estimated_savings: Float
  • tenant_id: String
  • updated_at: Datetime
RecommendationMissConfigGroupingWhereRequest

Fields:

  • _and: [RecommendationMissConfigGroupingWhereRequest]
  • _not: RecommendationMissConfigGroupingWhereRequest
  • _or: [RecommendationMissConfigGroupingWhereRequest]
  • account_id: QueryWhereStringRequest
  • account_object_id: QueryWhereStringRequest
  • category: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • estimated_savings: QueryWhereFloatRequest
  • missconfig_category: QueryWhereStringRequest
  • missconfig_message: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • resource_k8s_container: QueryWhereStringRequest
  • resource_k8s_namespace: QueryWhereStringRequest
  • resource_name: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • rule_name: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
RecommendationMissConfigResponse

Fields:

  • rows: [RecommendationMissConfigRowResponse]
RecommendationMissConfigRowResponse

Fields:

  • account_id: String
  • account_object_id: String
  • category: String
  • created_at: Datetime
  • estimated_savings: String
  • missconfig_category: String
  • missconfig_message: String
  • resource_id: String
  • resource_k8s_container: String
  • resource_k8s_namespace: String
  • resource_name: String
  • resource_type: String
  • rule_name: String
  • status: String
  • tenant_id: String
  • updated_at: Datetime
RecommendationMissConfigWhereRequest

Fields:

  • _and: [RecommendationMissConfigWhereRequest]
  • _not: RecommendationMissConfigWhereRequest
  • _or: [RecommendationMissConfigWhereRequest]
  • account_id: QueryWhereStringRequest
  • account_object_id: QueryWhereStringRequest
  • category: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • estimated_savings: QueryWhereFloatRequest
  • missconfig_category: QueryWhereStringRequest
  • missconfig_message: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • resource_k8s_container: QueryWhereStringRequest
  • resource_k8s_namespace: QueryWhereStringRequest
  • resource_name: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • rule_name: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
RecommendationResponse

Fields:

  • rows: [RecommendationRowResponse]
RecommendationRowResponse

Fields:

  • account_id: String
  • account_object_id: String
  • category: String
  • created_at: Datetime
  • dismissed_reason: String
  • estimated_savings: Float
  • id: String
  • is_dismissed: Boolean
  • note: String
  • recommendation: Json
  • recommendation_action: String
  • resource_cloud_service: String
  • resource_id: String
  • resource_k8s_namespace: String
  • resource_meta: Json
  • resource_name: String
  • resource_type: String
  • rule_name: String
  • severity: String
  • status: String
  • tenant_id: String
  • updated_at: Datetime
  • updated_by: String
RecommendationSecurityCisGroupingRowResponse

Fields:

  • account_id: String
  • count: Int
  • id: String
  • rule_description: String
  • rule_id: String
  • rule_name: String
  • severity: String
  • severity_weight: Int
  • status: String
  • tenant_id: String
  • updated_at: Datetime
RecommendationSecurityCisGroupingsResponse

Fields:

  • rows: [RecommendationSecurityCisGroupingRowResponse]
RecommendationSecurityCisGroupingsWhereRequest

Fields:

  • _and: [RecommendationSecurityCisGroupingsWhereRequest]
  • _not: RecommendationSecurityCisGroupingsWhereRequest
  • _or: [RecommendationSecurityCisGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • id: QueryWhereStringRequest
  • rule_description: QueryWhereStringRequest
  • rule_id: QueryWhereStringRequest
  • rule_name: QueryWhereStringRequest
  • severity: QueryWhereStringRequest
  • severity_weight: QueryWhereIntRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
RecommendationSecurityGroupingsResponse

Fields:

  • rows: [RecommendationSecurityGroupingsRowResponse]
RecommendationSecurityGroupingsRowResponse

Fields:

  • account_id: String
  • count: Int
  • count_image: Int
  • count_package_id: Int
  • count_severity_critical: Int
  • count_severity_high: Int
  • count_severity_info: Int
  • count_severity_low: Int
  • count_severity_medium: Int
  • count_vulnerability_id: Int
  • count_workload_name: Int
  • created_at: Datetime
  • id: String
  • image: String
  • is_active: Boolean
  • namespace: String
  • package_id: String
  • severity: String
  • severity_weight: Int
  • status: String
  • tenant_id: String
  • vulnerability_id: String
  • workload_name: String
  • workload_type: String
RecommendationSecurityGroupingsWhereRequest

Fields:

  • _and: [RecommendationSecurityGroupingsWhereRequest]
  • _not: RecommendationSecurityGroupingsWhereRequest
  • _or: [RecommendationSecurityGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • id: QueryWhereStringRequest
  • image: QueryWhereStringRequest
  • is_active: QueryWhereBooleanRequest
  • namespace: QueryWhereStringRequest
  • package_id: QueryWhereStringRequest
  • severity: QueryWhereStringRequest
  • severity_weight: QueryWhereIntRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • vulnerability_id: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
  • workload_type: QueryWhereStringRequest
RecommendationSecurityResponse

Fields:

  • rows: [RecommendationSecurityRowResponse]
RecommendationSecurityRowResponse

Fields:

  • account_id: String
  • created_at: Datetime
  • id: String
  • image: String
  • is_active: Boolean
  • namespace: String
  • package_id: String
  • recommendation: Json
  • severity: String
  • severity_weight: Int
  • status: String
  • tenant_id: String
  • updated_at: Datetime
  • vulnerability_id: String
  • workload_name: String
  • workload_type: String
RecommendationSecurityWhereRequest

Fields:

  • _and: [RecommendationSecurityWhereRequest]
  • _not: RecommendationSecurityWhereRequest
  • _or: [RecommendationSecurityWhereRequest]
  • account_id: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • id: QueryWhereStringRequest
  • image: QueryWhereStringRequest
  • is_active: QueryWhereBooleanRequest
  • namespace: QueryWhereStringRequest
  • package_id: QueryWhereStringRequest
  • severity: QueryWhereStringRequest
  • severity_weight: QueryWhereIntRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • vulnerability_id: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
  • workload_type: QueryWhereStringRequest
RecommendationWhereRequest

Fields:

  • _and: [RecommendationWhereRequest]
  • _not: RecommendationWhereRequest
  • _or: [RecommendationWhereRequest]
  • account_id: QueryWhereStringRequest
  • account_object_id: QueryWhereStringRequest
  • category: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • deleted_version: QueryWhereStringRequest
  • deprecated_version: QueryWhereStringRequest
  • estimated_savings: QueryWhereFloatRequest
  • id: QueryWhereStringRequest
  • is_dismissed: QueryWhereBooleanRequest
  • recommendation: QueryWhereStringRequest
  • recommendation_action: QueryWhereStringRequest
  • resource_cloud_service: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • resource_k8s_namespace: QueryWhereStringRequest
  • resource_name: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • rule_name: QueryWhereStringRequest
  • severity: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • updated_at: QueryWhereDatetimeRequest
  • updated_by: QueryWhereStringRequest
ResourceGroupingsResponse

Fields:

  • rows: [ResourceGroupingsRowResponse]
ResourceGroupingsRowResponse

Fields:

  • account_id: String
  • count_recommendation: Int
  • count_resource: Int
  • recommendation_category: String
  • recommendation_rule_name: String
  • recommendation_severity: String
  • recommendation_status: String
  • resource_arn: String
  • resource_id: String
  • resource_name: String
  • resource_region: String
  • resource_service_name: String
  • resource_status: String
  • resource_type: String
  • spend_date: Datetime
  • sum_recommendation_estimated_savings: Float
  • sum_spend_amount: Float
  • tenant_id: String
ResourceGroupingsWhereRequest

Fields:

  • _and: [ResourceGroupingsWhereRequest]
  • _not: ResourceGroupingsWhereRequest
  • _or: [ResourceGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • recommendation_category: QueryWhereStringRequest
  • recommendation_rule_name: QueryWhereStringRequest
  • recommendation_severity: QueryWhereStringRequest
  • recommendation_status: QueryWhereStringRequest
  • resource_arn: QueryWhereStringRequest
  • resource_id: QueryWhereStringRequest
  • resource_name: QueryWhereStringRequest
  • resource_region: QueryWhereStringRequest
  • resource_service_name: QueryWhereStringRequest
  • resource_status: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • spend_date: QueryWhereDatetimeRequest
  • tenant_id: QueryWhereStringRequest
RulePreviewSampleEvent

Fields:

  • id: String!
  • namespace: String
  • service: String
  • title: String!
SLOConfigCreateRequest

Fields:

  • enabled: Boolean!
  • goal: Float
  • name: String!
  • threshold: Float
SLOConfigListResponse

Fields:

  • data: SLOListResponse!
SLOConfigResponse

Fields:

  • enabled: Boolean!
  • goal: String
  • id: String!
  • name: String!
  • threshold: Float!
SLOConfigUpdateRequest

Fields:

  • enabled: Boolean!
  • goal: Float
  • id: uuid!
  • name: String!
  • threshold: Float
SLOCreateRequest

Fields:

  • cloud_account_id: String!
  • config: [SLOConfigCreateRequest]
  • namespace: String!
  • workload_id: String!
  • workload_name: String!
SLOCreateResponse

Fields:

  • success: Boolean!
SLOListRequest

Fields:

  • cloud_account_id: String!
  • namespace: [String]
  • workload_id: [String]
  • workload_name: [String]
SLOListResponse

Fields:

  • cloud_account_id: String!
  • config: [SLOConfigResponse]
  • namespace: String!
  • workload_id: String!
  • workload_name: String!
SLOResponse

Fields:

  • data: SLOCreateResponse!
SLOUpdateConfigResponse

Fields:

  • data: SLOUpdateResponse!
SLOUpdateRequest

Fields:

  • cloud_account_id: String!
  • config: [SLOConfigUpdateRequest]
  • namespace: String!
  • workload_id: String!
  • workload_name: String!
SLOUpdateResponse

Fields:

  • success: Boolean!
SaveLLMConversationRequest

Fields:

  • conversation_id: String!
SaveLLMConversationResponse

Fields:

  • data: SaveResponse!
SaveResponse

Fields:

  • success: Boolean!
ServiceApplication

Fields:

  • CPUThrottlingTime: float8
  • Category: ServiceCategory
  • DesiredInstances: Int
  • Downstreams: [Link]
  • FailedInstances: Int
  • HealthReason: String
  • Id: ServiceApplicationId!
  • Indicators: [String]
  • Instances: [Instance]
  • IsHealthy: Boolean
  • Labels: jsonb
  • OOMKills: Int
  • Restarts: Int
  • Status: Int
  • Type: [String]
  • Upstreams: [Link]
  • VolumeSize: float8
  • VolumeUsed: float8
ServiceApplicationId

Fields:

  • kind: String
  • name: String!
  • namespace: String
ServiceCategory

Fields:

  • category: String
ServiceMap

Fields:

  • applications: [ServiceApplication]
  • generated_at: timestamp
  • labels: [String]
ServiceMapResponse

Fields:

  • data: ServiceMap
SloReportObservationResponse

Fields:

  • rows: [SloReportObservationRowResponse]
SloReportObservationRowResponse

Fields:

  • account_id: String
  • config_name: String
  • status: String
  • tenant_id: String
  • timestamp: Datetime
  • total_bad_events: String
  • total_events: String
  • total_good_events: String
  • workload_name: String
  • workload_namespace: String
SloReportObservationWhereRequest

Fields:

  • _and: [SloReportObservationWhereRequest]
  • _not: SloReportObservationWhereRequest
  • _or: [SloReportObservationWhereRequest]
  • account_id: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
  • workload_name: QueryWhereStringRequest
  • workload_namespace: QueryWhereStringRequest
SortField

Fields:

  • column_name: String!
  • order: String!
SortFieldInput

Fields:

  • column_name: String!
  • order: String!
SpendGroupingsResponse

Fields:

  • rows: [SpendGroupingsRowResponse]
SpendGroupingsRowResponse

Fields:

  • account_count: Float
  • account_id: String
  • currency_type: String
  • resource_count: Float
  • resource_id: String
  • resource_region: String
  • resource_service_name: String
  • resource_type: String
  • spend_amount: Float
  • spend_count: Float
  • spend_date: Datetime
  • tenant_id: String
SpendGroupingsWhereRequest

Fields:

  • _and: [SpendGroupingsWhereRequest]
  • _not: SpendGroupingsWhereRequest
  • _or: [SpendGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • exclude_aggregate: QueryWhereBooleanRequest
  • resource_id: QueryWhereStringRequest
  • resource_region: QueryWhereStringRequest
  • resource_service_name: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • spend_date: QueryWhereDatetimeRequest
  • tenant_id: QueryWhereStringRequest
SpendsResponse

Fields:

  • rows: [SpendsRowResponse]
SpendsRowResponse

Fields:

  • amount: Float
  • business_unit: String
  • cloud_account: String
  • cloud_resource_id: String
  • date: Datetime
  • exclude_aggregate: Boolean
  • id: String
  • resource_region: String
  • resource_service_name: String
  • resource_type: String
  • tags: Json
  • tenant: String
  • unit: String
SpendsWhereRequest

Fields:

  • _and: [SpendsWhereRequest]
  • _not: SpendsWhereRequest
  • _or: [SpendsWhereRequest]
  • amount: QueryWhereFloatRequest
  • business_unit: QueryWhereStringRequest
  • cloud_account: QueryWhereStringRequest
  • cloud_resource_id: QueryWhereStringRequest
  • date: QueryWhereDatetimeRequest
  • id: QueryWhereStringRequest
  • resource_region: QueryWhereStringRequest
  • resource_service_name: QueryWhereStringRequest
  • resource_type: QueryWhereStringRequest
  • tenant: QueryWhereStringRequest
  • unit: QueryWhereStringRequest
String_array_comparison_exp

Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

Fields:

  • _contained_in: [String!] - is the array contained in the given array value
  • _contains: [String!] - does the array contain the given value
  • _eq: [String!]
  • _gt: [String!]
  • _gte: [String!]
  • _in: [[String!]!]
  • _is_null: Boolean
  • _lt: [String!]
  • _lte: [String!]
  • _neq: [String!]
  • _nin: [[String!]!]
String_comparison_exp

Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

Fields:

  • _eq: String
  • _gt: String
  • _gte: String
  • _ilike: String - does the column match the given case-insensitive pattern
  • _in: [String!]
  • _iregex: String - does the column match the given POSIX regular expression, case insensitive
  • _is_null: Boolean
  • _like: String - does the column match the given pattern
  • _lt: String
  • _lte: String
  • _neq: String
  • _nilike: String - does the column NOT match the given case-insensitive pattern
  • _nin: [String!]
  • _niregex: String - does the column NOT match the given POSIX regular expression, case insensitive
  • _nlike: String - does the column NOT match the given pattern
  • _nregex: String - does the column NOT match the given POSIX regular expression, case sensitive
  • _nsimilar: String - does the column NOT match the given SQL regular expression
  • _regex: String - does the column match the given POSIX regular expression, case sensitive
  • _similar: String - does the column match the given SQL regular expression
TenantAttributeRequest

Fields:

  • name: String!
  • value: String!
TenantAttributeResponse

Fields:

  • created_at: Datetime!
  • id: String!
  • name: String!
  • tenant_id: String!
  • updated_at: Datetime!
  • value: String!
TicketAddCommentObjectInput

Fields:

  • account_id: String!
  • comment: String!
  • integration_id: String
  • source: String!
  • tenant: String
  • ticket_id: String!
TicketComments

Fields:

  • comments: [Comment]
  • error: String
  • ticket_id: String!
TicketGetCommentsObjectInput

Fields:

  • account_id: String!
  • integration_id: String!
  • source: String!
  • ticket_id: String!
TicketGroupingsResponse

Fields:

  • rows: [TicketGroupingsRowResponse]
TicketGroupingsRowResponse

Fields:

  • account_id: String
  • assignee: String
  • count: Int
  • created_by: String
  • reference_id: String
  • severity: String
  • status: String
  • tenant_id: String
  • ticket_type: String
TicketGroupingsWhereRequest

Fields:

  • _and: [TicketGroupingsWhereRequest]
  • _not: TicketGroupingsWhereRequest
  • _or: [TicketGroupingsWhereRequest]
  • account_id: QueryWhereStringRequest
  • assignee: QueryWhereStringRequest
  • created_at: QueryWhereDatetimeRequest
  • created_by: QueryWhereStringRequest
  • reference_id: QueryWhereStringRequest
  • severity: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • ticket_type: QueryWhereStringRequest
TicketIntegrationConfigValueInput

Fields:

  • name: String!
  • value: String!
ToggleSystemRuleOverrideResponse

Fields:

  • error: String
  • is_overridden: Boolean
  • success: Boolean!
ToolRequest

Fields:

  • config: jsonb
  • description: String!
  • executor_type: String
  • name: String!
  • runbook_action_id: String
  • schema: jsonb
TraceGroupingValues

Fields:

  • count: Int!
  • destination_workload_name: String!
  • destination_workload_namespace: String!
  • destination_workload_zone: String
  • duration_ns: Float!
  • error_count: Int!
  • http_status_code: String!
  • max_latency: Float!
  • p95_latency: Float!
  • p99_latency: Float!
  • resource: String!
  • span_name: String!
  • workload_name: String!
  • workload_namespace: String!
TraceGroupingWhereRequest

Fields:

  • _and: [TraceGroupingWhereRequest]
  • _not: TraceGroupingWhereRequest
  • _or: [TraceGroupingWhereRequest]
  • account_id: QueryWhereStringRequest
  • destination_name: QueryWhereStringRequest
  • destination_workload_name: QueryWhereStringRequest
  • destination_workload_namespace: QueryWhereStringRequest
  • destination_workload_zone: QueryWhereStringRequest
  • duration_ns: QueryWhereFloatRequest
  • error_count: QueryWhereFloatRequest
  • headers: QueryWhereStringRequest
  • http_status_code: QueryWhereStringRequest
  • parent_span_id: QueryWhereStringRequest
  • resource: QueryWhereStringRequest
  • span_id: QueryWhereStringRequest
  • span_name: QueryWhereStringRequest
  • status_code: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
  • trace_id: QueryWhereStringRequest
  • trace_source: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
  • workload_namespace: QueryWhereStringRequest
  • workload_zone: QueryWhereStringRequest
TraceHeatMapInput

Fields:

  • account_id: String!
  • trace_id: String!
TraceHeatMapOutput

Fields:

  • duration_ns: Float
  • events_attributes: jsonb
  • events_name: [String]
  • resource_attributes: jsonb
  • service_name: String
  • span_attributes: jsonb
  • span_id: String
  • span_name: String
  • status_code: String
  • timestamp: String
  • trace_id: String
TraceHeatMapRowResponse

Fields:

  • account_id: String
  • duration_ns: Float
  • events_attributes: String
  • events_name: String
  • parent_span_id: String
  • resource: String
  • resource_attributes: String
  • service_name: String
  • span_attributes: String
  • span_id: String
  • span_name: String
  • status_code: String
  • timestamp: Datetime
  • trace_id: String
TraceHeatMapWhereRequest

Fields:

  • _and: [TraceWhereRequest]
  • _not: TraceWhereRequest
  • _or: [TraceWhereRequest]
  • account_id: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
  • trace_id: QueryWhereStringRequest
TraceRowGroupResponse

Fields:

  • account_id: String
  • count: Int
  • destination_name: String
  • destination_workload_name: String
  • destination_workload_namespace: String
  • destination_workload_zone: String
  • duration_ns: Float
  • error_count: Float
  • headers: String
  • http_response: String
  • http_status_code: String
  • max_latency: Float
  • p50_latency: Float
  • p95_latency: Float
  • p99_latency: Float
  • parent_span_id: String
  • request_payload: String
  • resource: String
  • span_id: String
  • span_name: String
  • status_code: String
  • timestamp: Datetime
  • trace_id: String
  • trace_source: String
  • workload_name: String
  • workload_namespace: String
  • workload_zone: String
TraceRowResponse

Fields:

  • account_id: String
  • destination_name: String
  • destination_workload_name: String
  • destination_workload_namespace: String
  • duration_ns: Float
  • headers: String
  • http_response: String
  • http_status_code: String
  • parent_span_id: String
  • request_payload: String
  • resource: String
  • span_id: String
  • span_name: String
  • spanattributes: String
  • status_code: String
  • timestamp: Datetime
  • trace_id: String
  • trace_source: String
  • workload_name: String
  • workload_namespace: String
TraceServiceMapLabelFilter

Fields:

  • key: String!
  • operator: String!
  • value: String!
TraceServiceMapRequest

Fields:

  • account_id: String!
  • end_time: String
  • label_filter: [TraceServiceMapLabelFilter]
  • start_time: String
  • workload_name: String
  • workload_namespace: String
TraceWhereRequest

Fields:

  • _and: [TraceWhereRequest]
  • _not: TraceWhereRequest
  • _or: [TraceWhereRequest]
  • account_id: QueryWhereStringRequest
  • destination_name: QueryWhereStringRequest
  • destination_workload_name: QueryWhereStringRequest
  • destination_workload_namespace: QueryWhereStringRequest
  • duration_ns: QueryWhereFloatRequest
  • headers: QueryWhereStringRequest
  • http_status_code: QueryWhereStringRequest
  • parent_span_id: QueryWhereStringRequest
  • resource: QueryWhereStringRequest
  • span_id: QueryWhereStringRequest
  • span_name: QueryWhereStringRequest
  • status_code: QueryWhereStringRequest
  • timestamp: QueryWhereDatetimeRequest
  • trace_id: QueryWhereStringRequest
  • trace_source: QueryWhereStringRequest
  • workload_name: QueryWhereStringRequest
  • workload_namespace: QueryWhereStringRequest
TracesGroupResponse

Fields:

  • rows: [TraceRowGroupResponse]
TracesGroupV3CountResponse

Fields:

  • count: Int!
TracesHeatMapResponse

Fields:

  • rows: [TraceHeatMapRowResponse]
TracesOutputResponse

Fields:

  • attributes: jsonb
  • destination_name: String
  • destination_workload_name: String
  • destination_workload_namespace: String
  • duration_ns: bigint
  • end_time: String
  • end_time_unix_nano: String
  • events_attributes: [jsonb!]
  • events_name: [String!]
  • events_timestamp: [String!]
  • headers: String
  • http_response: String
  • http_status_code: String
  • links_attributes: [jsonb!]
  • links_span_id: [String!]
  • links_traceId: [String!]
  • links_trace_state: [String!]
  • operation: String
  • parent_span_id: String
  • query_type: String
  • request_payload: String
  • resource: String
  • resource_attributes: OTelResourceAttributes
  • service: String
  • service_name: String
  • span_attributes: jsonb
  • span_attributes_json: jsonb
  • span_id: String
  • span_kind: String
  • span_name: String
  • start_time: String
  • start_time_unix_nano: String
  • status: jsonb
  • status_code: String
  • status_message: String
  • tag_filters: jsonb
  • timestamp: String
  • trace_id: String
  • trace_ids: [String!]
  • trace_source: String
  • trace_state: String
  • workload_name: String
  • workload_namespace: String
TracesResponse

Fields:

  • rows: [TraceRowResponse]
TracesV3CountResponse

Fields:

  • count: Int!
TracesV3Input

Fields:

  • account_id: String!
  • end_time: Float!
  • limit: Int
  • offset: Int
  • provider_source: String
  • provider_type: String
  • query: String
  • query_request: QueryRequestInput
  • request: jsonb
  • sort_fields: [SortFieldInput!]
  • start_time: Float!
TracesV3LabelValuesRequest

Fields:

  • account_id: String!
  • label: String
  • provider_source: String
  • provider_type: String
  • query_request: QueryRequestInput
TracesV3LabelValuesResponse

Fields:

  • label: String!
  • values: [String]
TriageCorrelatedEvent

Fields:

  • correlated_event_id: String!
  • correlated_finding_type: String
  • correlated_fingerprint: String!
  • correlated_starts_at: timestamp!
  • correlated_state: String!
  • correlated_title: String!
  • correlation_reason: String!
  • correlation_score: Float!
  • correlation_type: String!
  • dependency_distance: Int!
  • subject_name: String
  • subject_namespace: String
  • subject_owner: String
  • subject_owner_kind: String
  • time_offset_minutes: Int!
TriageDuplicateEvent

Fields:

  • created_at: timestamp!
  • event_id: String!
  • event_starts_at: timestamp!
  • event_state: String!
  • first_event_id: String!
  • occurrence_number: Int!
TriageDuplicateInfo

Fields:

  • duplicate_chain: [TriageDuplicateEvent]
  • first_event_id: String!
  • occurrence_number: Int!
  • total_occurrences: Int!
TriageHistoricalStats

Fields:

  • avg_duration_hours: Float!
  • closed_count: Int!
  • closure_rate: Float!
  • firing_count: Int!
  • first_seen_at: timestamp
  • last_seen_at: timestamp
  • noise_level: Float!
  • resolution_rate: Float!
  • resolved_count: Int!
  • total_events: Int!
TriageHourlyBucket

Fields:

  • closed_count: Int!
  • firing_count: Int!
  • hour: timestamp!
  • resolved_count: Int!
TriageRule

Fields:

  • account_id: String
  • action: String!
  • action_value: String
  • can_override: Boolean!
  • created_at: timestamp!
  • created_by: String
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • enabled: Boolean!
  • id: String!
  • is_editable: Boolean!
  • is_overridden: Boolean
  • is_system_rule: Boolean
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int!
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: String
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: String
  • priority: Int!
  • reason: String
  • rule_type: String!
  • tenant_id: String
  • updated_at: timestamp!
  • updated_by: String
TriageRuleEventOutput

Fields:

  • account_id: String
  • classification: String
  • classified_at: String
  • id: String
  • nb_status: String
  • priority: String
  • starts_at: String
  • status: String
  • subject_name: String
  • subject_namespace: String
  • subject_type: String
  • title: String
TriageRulePreview

Fields:

  • action: String!
  • expires_at: timestamp
  • match_criteria: String!
  • rule_type: String!
TriggerAnomalyExecuteRequest

Fields:

  • account_id: String!
TriggerAnomalyExecuteResponse

Fields:

  • message: String!
  • status: String!
UnmapKBFromAgentRequest

Fields:

  • account_id: String!
  • agent_id: String!
  • kb_id: String!
UnmapKBFromAgentResponse

Fields:

  • data: jsonb
  • errors: [Error]
UpdateAgentExtensionDetails

Fields:

  • agent_name: String!
  • prompt: String
  • tools: [String]
UpdateAgentExtensionRequest

Fields:

  • account_id: String!
  • agent: UpdateAgentExtensionDetails
UpdateAgentExtensionResponse

Fields:

  • data: jsonb
  • err: jsonb
UpdateAgentRequest

Fields:

  • account_id: String!
  • agent: AgentRequestUpdateStruct!
UpdateAgentResponse

Fields:

  • data: jsonb
  • errors: jsonb
UpdateAlertRule

Fields:

  • accountId: String!
  • action_params: jsonb!
  • alert: String!
  • annotations: Annotations!
  • category: String!
  • duration: String!
  • enabled: Boolean!
  • expr: String!
  • labels: Labels!
  • severity: String!
  • source: String!
  • trigger_params: jsonb!
UpdateApprovalInput

Fields:

  • account_id: uuid!
  • id: uuid!
  • minimum_approval: Int
  • reviewees: [uuid]
  • reviewers: [uuid]
UpdateApprovalOutput

Fields:

  • id: uuid
UpdateFunctionInput

Fields:

  • description: String!
  • name: String!
  • prompt: String!
  • status: String
  • variable_defaults: jsonb
  • variables: [String]
  • version: Int
UpdateGCRequest

Fields:

  • account_id: String!
  • global_context: GlobalContextUpdateInput!
UpdateGCResponse

Fields:

  • data: jsonb
  • errors: [Error]
UpdateKBRequest

Fields:

  • account_id: String!
  • knowledgebase: KnowledgebaseUpdateInput!
UpdateKBResponse

Fields:

  • data: jsonb
  • errors: [Error]
UpdateNBStatusResponse

Fields:

  • new_status: String!
  • prev_status: String!
  • success: Boolean!
UpdateToolRequest

Fields:

  • account_id: String!
  • tool: UpdateToolRequestBody!
UpdateToolRequestBody

Fields:

  • config: jsonb
  • description: String
  • executor_type: String
  • id: String!
  • name: String!
  • runbook_action_id: String
  • schema: jsonb
  • status: String
UpdateToolResponse

Fields:

  • data: jsonb
  • errors: jsonb
UpdateTriageRuleResponse

Fields:

  • bulk_operation: BulkOperationResponse
  • error: String
  • rule: TriageRule
  • success: Boolean!
UpgradeExecuteCommandResponse

Fields:

  • error: String
  • output: String
  • success: Boolean
UpgradePlanResponse

Fields:

  • account_id: String
  • created_at: timestamp
  • current_version: String
  • id: String
  • k8s_provider: String
  • owner: String
  • status: String
  • steps: jsonb
  • target_version: String
  • tenant_id: String
  • updated_at: timestamp
UserAuthToken

Fields:

  • accessed_at: timestamp
  • created_at: timestamp
  • id: String
  • name: String
  • provider: String
  • status: String
UserAuthTokenResponse

Fields:

  • tokens: [UserAuthToken]
UserByTenantRow

Fields:

  • created_at: String
  • display_name: String
  • id: String
  • last_accessed_at: String
  • status: String
  • tenant_id: String
  • user_groups: Json
  • user_roles: Json
  • username: String
UserHistoryInput

Fields:

  • account_id: String!
  • data: String!
  • duration: Float!
  • module: String!
  • status: String!
UserHistoryOutput

Fields:

  • status: String!
UserTenantRoleRow

Fields:

  • entity_id: String
  • entity_type: String
  • role: String
  • tenant_id: String
  • username: String
UserTenantRolesResponse

Fields:

  • rows: [UserTenantRoleRow]
UserTenantRolesWhereRequest

Fields:

  • _and: [UserTenantRolesWhereRequest]
  • _not: UserTenantRolesWhereRequest
  • _or: [UserTenantRolesWhereRequest]
  • entity_id: QueryWhereStringRequest
  • entity_type: QueryWhereStringRequest
  • role: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • username: QueryWhereStringRequest
UserTokenCreateRequest

Fields:

  • name: String!
UserTokenCreateResponse

Fields:

  • name: String!
  • token: String!
UserTokenDeleteRequest

Fields:

  • name: String!
UserTokenDeleteResponse

Fields:

  • name: String!
UsersByTenantResponse

Fields:

  • rows: [UserByTenantRow]
UsersByTenantWhereRequest

Fields:

  • _and: [UsersByTenantWhereRequest]
  • _not: UsersByTenantWhereRequest
  • _or: [UsersByTenantWhereRequest]
  • display_name: QueryWhereStringRequest
  • id: QueryWhereStringRequest
  • status: QueryWhereStringRequest
  • tenant_id: QueryWhereStringRequest
  • username: QueryWhereStringRequest
ValidateCloudCredentialsInput

Fields:

  • client_id: String
  • client_secret: String
  • cloud_provider: String!
  • credentials_json: String
  • project_id: String
  • subscription_id: String
  • tenant_id: String
ValidateCloudCredentialsOutput

Fields:

  • errorMessage: String
  • missingPermissions: [String!]
  • permissionDetails: [PermissionStatusOutput!]!
  • provider: String!
  • success: Boolean!
Workflow

Fields:

  • account_id: String!
  • created_at: timestamp
  • created_by: String
  • created_by_user: WorkflowUser
  • definition: WorkflowDefinition!
  • id: String!
  • last_execution_status: String
  • last_execution_time: timestamp
  • name: String!
  • status: String
  • tags: jsonb
  • tenant_id: String!
  • updated_at: timestamp
  • updated_by: String
  • updated_by_user: WorkflowUser
WorkflowCountRequest

Fields:

  • account_id: String!
  • status: String
  • trigger_type: String
WorkflowCountResponse

Fields:

  • count: Int!
WorkflowCreateRequest

Fields:

  • account_id: String!
  • workflow: WorkflowRequest!
WorkflowCreateResponse

Fields:

  • id: String!
  • token: String
WorkflowDefinition

Fields:

  • hooks: [WorkflowDefinitionHook]
  • inputs: [WorkflowDefinitionInput]
  • output: jsonb
  • retry_policy: WorkflowDefinitionRetryPolicy
  • tasks: [WorkflowDefinitionTask]
  • timeout: String
  • triggers: [WorkflowDefinitionTrigger]
  • version: String
WorkflowDefinitionFailurePolicyRequest

Fields:

  • action: String
  • retry: WorkflowDefinitionRetryPolicyRequest
WorkflowDefinitionFailurePolicyResponse

Fields:

  • action: String
  • retry: WorkflowDefinitionRetryPolicyResponse
WorkflowDefinitionHook

Fields:

  • always: [WorkflowDefinitionHookAction]
  • failure: [WorkflowDefinitionHookAction]
  • success: [WorkflowDefinitionHookAction]
WorkflowDefinitionHookAction

Fields:

  • params: jsonb
  • type: String!
WorkflowDefinitionHookActionRequest

Fields:

  • params: jsonb
  • type: String!
WorkflowDefinitionHookRequest

Fields:

  • always: [WorkflowDefinitionHookActionRequest]
  • failure: [WorkflowDefinitionHookActionRequest]
  • success: [WorkflowDefinitionHookActionRequest]
WorkflowDefinitionInput

Fields:

  • default: String
  • description: String
  • id: String!
  • type: String
WorkflowDefinitionInputRequest

Fields:

  • default: jsonb
  • description: String
  • id: String!
  • required: Boolean
  • type: String
WorkflowDefinitionRequest

Fields:

  • hooks: [WorkflowDefinitionHookRequest]
  • inputs: [WorkflowDefinitionInputRequest]
  • output: jsonb
  • retry_policy: WorkflowDefinitionRetryPolicyRequest
  • tasks: [WorkflowDefinitionTaskRequest]
  • timeout: String
  • triggers: [WorkflowDefinitionTriggerRequest]
  • version: String
WorkflowDefinitionRetryPolicy

Fields:

  • backoff_coefficient: Float
  • initial_interval: String
  • maximum_attempts: Int
  • maximum_interval: String
  • non_retryable_error_types: [String]
WorkflowDefinitionRetryPolicyRequest

Fields:

  • backoff_coefficient: Float
  • initial_interval: String
  • maximum_attempts: Int
  • maximum_interval: String
  • non_retryable_error_types: [String]
WorkflowDefinitionRetryPolicyResponse

Fields:

  • backoff_coefficient: Float
  • initial_interval: String
  • maximum_attempts: Int
  • maximum_interval: String
  • non_retryable_error_types: [String]
WorkflowDefinitionTask

Fields:

  • depends_on: [String!]
  • failure_policy: WorkflowDefinitionFailurePolicyResponse
  • hooks: WorkflowDefinitionHook
  • id: String!
  • if: String
  • matrix: String
  • outputs: jsonb
  • params: jsonb
  • retry_policy: WorkflowDefinitionRetryPolicy
  • set_state: jsonb
  • set_vars: jsonb
  • tasks: [WorkflowDefinitionTask]
  • timeout: String
  • type: String!
WorkflowDefinitionTaskRequest

Fields:

  • depends_on: [String!]
  • failure_policy: WorkflowDefinitionFailurePolicyRequest
  • hooks: WorkflowDefinitionHookRequest
  • id: String!
  • if: String
  • matrix: jsonb
  • params: jsonb
  • set_state: jsonb
  • set_vars: jsonb
  • tasks: [WorkflowDefinitionTaskRequest]
  • timeout: String
  • type: String!
WorkflowDefinitionTrigger

Fields:

  • params: jsonb
  • type: String!
WorkflowDefinitionTriggerRequest

Fields:

  • params: jsonb
  • type: String!
WorkflowDeleteRequest

Fields:

  • account_id: String!
  • id: String!
WorkflowDeleteResponse

Fields:

  • message: String!
WorkflowDryrunRequest

Fields:

  • account_id: String!
  • definition: WorkflowDefinitionRequest!
  • inputs: jsonb
WorkflowDryrunResponse

Fields:

  • error: String
  • output: jsonb
  • status: String!
  • tasks: [WorkflowExecutionTaskResponse]
WorkflowExecutionCountRequest

Fields:

  • account_id: String!
  • end_date: timestamp
  • start_date: timestamp
  • status: String
  • trigger_type: String
  • workflow_id: String
WorkflowExecutionCountResponse

Fields:

  • count: Int!
WorkflowExecutionGetRequest

Fields:

  • account_id: String!
  • id: String!
  • workflow_id: String!
WorkflowExecutionGetResponse

Fields:

  • close_time: timestamp
  • error: String
  • id: String!
  • inputs: jsonb
  • parent_workflow_id: String
  • start_time: timestamp
  • status: String
  • tasks: [WorkflowExecutionTaskResponse]
  • triggered_by: String
  • workflow_id: String!
  • workflow_result: jsonb
WorkflowExecutionListRequest

Fields:

  • account_id: String!
  • id: String!
  • limit: Int
  • next_page_token: String
  • status: String
  • trigger_type: String
WorkflowExecutionListResponse

Fields:

  • executions: [WorkflowExecutionSummary!]
  • next_page_token: String
WorkflowExecutionSummary

Fields:

  • close_time: timestamp
  • id: String!
  • parent_workflow_id: String
  • start_time: timestamp
  • status: String!
  • trigger_type: String
  • triggered_by: String
  • workflow_id: String!
WorkflowExecutionTaskResponse

Fields:

  • attempt: Int
  • children: jsonb
  • end_time: timestamp
  • error: String
  • id: String!
  • input: jsonb
  • output: jsonb
  • start_time: timestamp
  • status: String!
  • type: String!
WorkflowGetRequest

Fields:

  • account_id: String!
  • id: String!
WorkflowListRequest

Fields:

  • account_id: String!
  • last_execution_status: String
  • limit: Int
  • name: String
  • next_page_token: String
  • status: String
  • tags: String
  • type: String
WorkflowListResponse

Fields:

  • next_page_token: String
  • total_count: Int
  • workflows: [Workflow]
WorkflowPauseResponse

Fields:

  • data: jsonb
WorkflowRequest

Fields:

  • definition: WorkflowDefinitionRequest!
  • name: String!
  • status: String
  • tags: jsonb
WorkflowResumeResponse

Fields:

  • data: jsonb
WorkflowRetriggerRequest

Fields:

  • account_id: String!
  • execution_id: String!
  • inputs: jsonb
  • workflow_id: String!
WorkflowRetriggerResponse

Fields:

  • execution_id: String!
  • id: String!
WorkflowTaskDefinitionListRequest

Fields:

  • limit: Int
  • name: String
  • offset: Int
WorkflowTaskDefinitionListResponse

Fields:

  • tasks: [WorkflowTaskDefinitionResponse]
WorkflowTaskDefinitionResponse

Fields:

  • description: String!
  • input_schema: jsonb
  • name: String!
  • output_schema: jsonb
WorkflowTriggerRequest

Fields:

  • account_id: String!
  • id: String!
  • inputs: jsonb
WorkflowTriggerResponse

Fields:

  • execution_id: String!
  • id: String!
WorkflowUpdateRequest

Fields:

  • account_id: String!
  • id: String!
  • workflow: WorkflowRequest!
WorkflowUpdateResponse

Fields:

  • account_id: String
  • created_at: Datetime
  • created_by: String
  • definition: jsonb
  • id: String
  • last_execution_status: String
  • name: String
  • status: String
  • tags: jsonb
  • tenant_id: String
  • trigger_details: jsonb
  • updated_at: Datetime
  • updated_by: String
WorkflowUser

Fields:

  • display_name: String
  • id: String
WorkflowValidateResponse

Fields:

  • message: String
account_env_type

columns and relationships of "account_env_type"

Fields:

  • value: String!
account_env_type_aggregate

aggregated selection of "account_env_type"

Fields:

  • aggregate: account_env_type_aggregate_fields
  • nodes: [account_env_type!]!
account_env_type_enum

Values:

  • non_prod
  • prod
account_env_type_enum_comparison_exp

Boolean expression to compare columns of type "account_env_type_enum". All fields are combined with logical 'AND'.

Fields:

  • _eq: account_env_type_enum
  • _in: [account_env_type_enum!]
  • _is_null: Boolean
  • _neq: account_env_type_enum
  • _nin: [account_env_type_enum!]
account_env_type_updates

Fields:

  • _set: account_env_type_set_input - sets the columns of the filtered rows to the given values
  • where: account_env_type_bool_exp! - filter the rows which have to be updated
account_purpose_type

columns and relationships of "account_purpose_type"

Fields:

  • value: String!
account_purpose_type_aggregate

aggregated selection of "account_purpose_type"

Fields:

  • aggregate: account_purpose_type_aggregate_fields
  • nodes: [account_purpose_type!]!
account_purpose_type_updates

Fields:

  • _set: account_purpose_type_set_input - sets the columns of the filtered rows to the given values
  • where: account_purpose_type_bool_exp! - filter the rows which have to be updated
apply_recommendation_input

Fields:

  • account_id: String!
  • data: jsonb
  • provider: String
  • provider_config: ProviderConfig
  • recommendation_id: String!
apply_recommendation_output

Fields:

  • data: [jsonb]!
bigint
bigint_comparison_exp

Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.

Fields:

  • _eq: bigint
  • _gt: bigint
  • _gte: bigint
  • _in: [bigint!]
  • _is_null: Boolean
  • _lt: bigint
  • _lte: bigint
  • _neq: bigint
  • _nin: [bigint!]
bytea
bytea_comparison_exp

Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'.

Fields:

  • _eq: bytea
  • _gt: bytea
  • _gte: bytea
  • _in: [bytea!]
  • _is_null: Boolean
  • _lt: bytea
  • _lte: bytea
  • _neq: bytea
  • _nin: [bytea!]
citext
citext_comparison_exp

Boolean expression to compare columns of type "citext". All fields are combined with logical 'AND'.

Fields:

  • _eq: citext
  • _gt: citext
  • _gte: citext
  • _ilike: citext - does the column match the given case-insensitive pattern
  • _in: [citext!]
  • _iregex: citext - does the column match the given POSIX regular expression, case insensitive
  • _is_null: Boolean
  • _like: citext - does the column match the given pattern
  • _lt: citext
  • _lte: citext
  • _neq: citext
  • _nilike: citext - does the column NOT match the given case-insensitive pattern
  • _nin: [citext!]
  • _niregex: citext - does the column NOT match the given POSIX regular expression, case insensitive
  • _nlike: citext - does the column NOT match the given pattern
  • _nregex: citext - does the column NOT match the given POSIX regular expression, case sensitive
  • _nsimilar: citext - does the column NOT match the given SQL regular expression
  • _regex: citext - does the column match the given POSIX regular expression, case sensitive
  • _similar: citext - does the column match the given SQL regular expression
cursor_ordering

ordering argument of a cursor

Values:

  • ASC - ascending ordering of the cursor
  • DESC - descending ordering of the cursor
db_type

columns and relationships of "db_type"

Fields:

  • value: String!
db_type_aggregate

aggregated selection of "db_type"

Fields:

  • aggregate: db_type_aggregate_fields
  • nodes: [db_type!]!
db_type_updates

Fields:

  • _set: db_type_set_input - sets the columns of the filtered rows to the given values
  • where: db_type_bool_exp! - filter the rows which have to be updated
flight_check_response

Fields:

  • account_id: String
  • comparison: jsonb
  • health_check: jsonb
  • id: String
  • plan_id: String
  • pre_flight_summary: jsonb
  • status: String
float8
float8_comparison_exp

Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'.

Fields:

  • _eq: float8
  • _gt: float8
  • _gte: float8
  • _in: [float8!]
  • _is_null: Boolean
  • _lt: float8
  • _lte: float8
  • _neq: float8
  • _nin: [float8!]
generate_cluster_recommendations_output

Fields:

  • data: jsonb!
group_roles

columns and relationships of "group_roles"

Fields:

  • created_at: timestamp!
  • created_by: uuid!
  • entity_id: String!
  • entity_type: citext!
  • group_id: uuid!
  • id: uuid!
  • role: citext!
  • updated_at: timestamp!
  • user_group: user_groups! - An object relationship
group_roles_aggregate

aggregated selection of "group_roles"

Fields:

  • aggregate: group_roles_aggregate_fields
  • nodes: [group_roles!]!
group_roles_updates

Fields:

  • _set: group_roles_set_input - sets the columns of the filtered rows to the given values
  • where: group_roles_bool_exp! - filter the rows which have to be updated
health_check_response

Fields:

  • account_id: String
  • load_balancers: jsonb
  • node_groups: jsonb
  • nodes: jsonb
  • persistentVolumes: jsonb
  • services: jsonb
  • workloads: jsonb
insert_ticket_one_resp

Fields:

  • action: String
  • error: String
  • id: uuid
  • message: String
  • ticket_id: String
  • url: String
json
json_comparison_exp

Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'.

Fields:

  • _eq: json
  • _gt: json
  • _gte: json
  • _in: [json!]
  • _is_null: Boolean
  • _lt: json
  • _lte: json
  • _neq: json
  • _nin: [json!]
jsonb
jsonb_cast_exp

Fields:

  • String: String_comparison_exp
jsonb_comparison_exp

Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.

Fields:

  • _cast: jsonb_cast_exp
  • _contained_in: jsonb - is the column contained in the given json value
  • _contains: jsonb - does the column contain the given json value at the top level
  • _eq: jsonb
  • _gt: jsonb
  • _gte: jsonb
  • _has_key: String - does the string exist as a top-level key in the column
  • _has_keys_all: [String!] - do all of these strings exist as top-level keys in the column
  • _has_keys_any: [String!] - do any of these strings exist as top-level keys in the column
  • _in: [jsonb!]
  • _is_null: Boolean
  • _lt: jsonb
  • _lte: jsonb
  • _neq: jsonb
  • _nin: [jsonb!]
k8saccount_namespace_role_input

Fields:

  • account_id: String!
  • namespace: String!
  • role: String!
marketplace_customers

columns and relationships of "marketplace_customers"

Fields:

  • action: String
  • created_at: timestamp!
  • customer_identifier: String!
  • entitlement_details: jsonb
  • id: uuid!
  • is_active: Boolean
  • is_free_trial_on: Boolean!
  • marketplace: String!
  • name: String
  • offer_identifier: String
  • pricing_tier: String
  • product_code: String!
  • provider_account_id: String!
  • subscription_expiry: timestamp
  • subscription_status: String!
  • tenant_id: uuid
  • updated_at: timestamp!
marketplace_customers_aggregate

aggregated selection of "marketplace_customers"

Fields:

  • aggregate: marketplace_customers_aggregate_fields
  • nodes: [marketplace_customers!]!
marketplace_customers_updates

Fields:

  • _append: marketplace_customers_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: marketplace_customers_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: marketplace_customers_delete_elem_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_key: marketplace_customers_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: marketplace_customers_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: marketplace_customers_set_input - sets the columns of the filtered rows to the given values
  • where: marketplace_customers_bool_exp! - filter the rows which have to be updated
mutation_root

mutation root

Fields:

  • agent_token_create: AgentRegenerateTokenOutput - regenerate agent account token
  • ai_create_agent: CreateAgentResponse
  • ai_create_agent_extension: CreateAgentExtensionResponse
  • ai_create_function: FunctionResponse
  • ai_create_gc: CreateGCResponse - Create an account-scoped global context file
  • ai_create_kb: CreateKBResponse - Create an account-scoped knowledge base
  • ai_create_rag: CreateAgentRagOutput - This action is used to add data to built-in agents
  • ai_create_tool: CreateToolResponse
  • ai_delete_agent: DeleteAgentResponse
  • ai_delete_function: AiDeleteFunctionResponse
  • ai_delete_gc: DeleteGCResponse - Delete a global context
  • ai_delete_kb: DeleteKBResponse - Delete a knowledge base
  • ai_delete_llm_conversation_by_id: DeleteLlmConversationByIdOutput - delete conversation from all tables
  • ai_delete_saved_conversation: DeleteLLMConversationResponse - delete llm conversation
  • ai_delete_tool: DeleteToolResponse
  • ai_feedback_create: GenerateFeedbackResponse - Generate feedback
  • ai_followup_response: AIFollowupResponse
  • ai_generate_es_dsl_query: AIGetESDslQueryResponse
  • ai_generate_loki_query: AIGetLokiQueryResponse
  • ai_generate_prometheus_query: AIGetPrometheusQueryResponse - Generate Prometheus Query
  • ai_get_conversation_suggestions: AIGetConversationSuggestionResponse
  • ai_get_conversation_usage_metrics: AIGetConversationUsageMetricsResponse
  • ai_map_kb_to_agent: MapKBToAgentResponse - Map a knowledge base to an agent (many-to-many)
  • ai_save_conversation: SaveLLMConversationResponse
  • ai_stop_investigation: AIStopInvestigationResponse
  • ai_submit_client_tool_call_response: AISubmitClientToolCallResponse
  • ai_trigger_investigation: AITriggerInvestigationResponse
  • ai_unmap_kb_from_agent: UnmapKBFromAgentResponse - Remove agent mapping from a knowledge base
  • ai_update_agent: UpdateAgentResponse - Changes the status of agent
  • ai_update_agent_extension: UpdateAgentExtensionResponse
  • ai_update_function: FunctionUpdateResponse
  • ai_update_gc: UpdateGCResponse - Update a global context
  • ai_update_kb: UpdateKBResponse - Update a knowledge base
  • ai_update_tool: UpdateToolResponse
  • alertmanager_create_rule: AlertRuleResponse - insert alert rule
  • alertmanager_disable_rule: AlertRuleResponse - disable alert rule
  • alertmanager_list_actions: AlertAction
  • alertmanager_update_rule: AlertRuleResponse - update alert rule
  • anomaly_template_list: AnomalyTemplateListResponse
  • application_deployment_compare: ApplicationDeploymentCompareOutput
  • application_get_profile: ApplicationProfileDataResponse
  • application_metrics: ApplicationMetricsOutput
  • application_profile: ApplicationProfileDataResponse
  • application_profile_convert: ApplicationProfileConvertDataResponse - pprof profile
  • apply_recommendations: apply_recommendation_output
  • auth_account_group_roles_upsert_one: auth_account_group_roles_upsert_one_output
  • auth_account_user_roles_upsert_one: auth_account_user_roles_upsert_one_output
  • auth_k8saccount_namespace_group_roles_upsert_one: auth_k8saccount_namespace_group_roles_upsert_one_output
  • auth_k8saccount_namespace_user_roles_upsert_one: auth_k8saccount_namespace_user_roles_upsert_one_output
  • auth_tenant_group_roles_upsert_one: auth_tenant_group_roles_upsert_one_output
  • auth_tenant_user_roles_upsert_one: auth_tenant_user_roles_upsert_one_output
  • auto_optimize_insert_one: auto_optimize_insert_one_output - auto pilot single insert
  • auto_optimize_skip_execution: auto_optimize_skip_response - to skip auto optimize tasks
  • auto_optimize_update_one: auto_optimize_insert_one_output - auto optimize single edit
  • auto_optimize_update_status: auto_optimize_update_status_response - action to change status of auto optimize
  • auto_pilot_approval_policy_delete: auto_pilot_policy_delete_output - action to delete auto pilot policy for approval
  • auto_runbook_action_delete_one: auto_runbook_action_delete_one_output - action to delete runbook action with ID
  • auto_runbook_action_insert_one: auto_runbook_action_insert_one_output
  • auto_runbook_custom_action_update: auto_runbook_custom_action_update_output - action to update custom action in runbook
  • auto_runbook_edit_one: auto_runbook_insert_one_output
  • auto_runbook_insert_one: auto_runbook_insert_one_output - action to insert one auto playbook
  • auto_runbook_manually_run: auto_runbook_manual_run_response - auto runbook manual run
  • auto_runbook_publish_action: auto_runbook_action_status_output - to publish runbook action status
  • auto_runbook_skip_execution: auto_runbook_skip_response - Skip RunBook execution
  • auto_runbook_task_change_approval_status: auto_runbook_task_approval_response - change status for task level runbook approval
  • auto_runbook_task_manual_run: auto_runbook_task_manual_run_response - manual execute for runbook task
  • auto_runbook_update_status: auto_runbook_update_status_response - Update runbook status
  • autopilot_get_autopilot_for_event: GetAutopiloteOutput - action to get runbooks for event ids
  • aws_cloud_formation: AWSCloudFormationOutput - get aws cloud formation url
  • aws_onboard_status: AwsOnboardStatusOutput - Check AWS single-account onboarding status via SNS callback
  • aws_org_onboard: AwsOrgOnboardOutput - Onboard AWS organization
  • aws_org_refresh_token: AwsOrgRefreshTokenOutput - Refresh AWS organization verification token
  • aws_org_status: AwsOrgStatusOutput - Get AWS organization onboarding status
  • azure_eventgrid_onboard: AzureEventGridOnboardOutput - Generate Azure ARM template deployment URL for EventGrid integration
  • cloud_accounts_delete: DeleteByPkResponse
  • cloud_accounts_insert_one: cloud_accounts_insert_one_output
  • config_delete: ConfigDeleteOutput
  • config_get: GetConfigResponse
  • config_list: [Config]
  • config_save: ConfigSaveOutput
  • create_auto_pilot_policy: CreateApprovalOutput - to create new auto pilot policy
  • database_performance_insights: QueryDatabasePerformanceResponse
  • delete_account_env_type: account_env_type_mutation_response - delete data from the table: "account_env_type"
  • delete_account_env_type_by_pk: account_env_type - delete single row from the table: "account_env_type"
  • delete_account_purpose_type: account_purpose_type_mutation_response - delete data from the table: "account_purpose_type"
  • delete_account_purpose_type_by_pk: account_purpose_type - delete single row from the table: "account_purpose_type"
  • delete_active_resources: active_resources_mutation_response - delete data from the table: "active_resources"
  • delete_active_resources_by_pk: active_resources - delete single row from the table: "active_resources"
  • delete_agent: agent_mutation_response - delete data from the table: "agent"
  • delete_agent_audit_log: agent_audit_log_mutation_response - delete data from the table: "agent_audit_log"
  • delete_agent_audit_log_by_pk: agent_audit_log - delete single row from the table: "agent_audit_log"
  • delete_agent_by_pk: agent - delete single row from the table: "agent"
  • delete_agent_playbook: agent_playbook_mutation_response - delete data from the table: "agent_playbook"
  • delete_agent_playbook_action: agent_playbook_action_mutation_response - delete data from the table: "agent_playbook_action"
  • delete_agent_playbook_action_by_pk: agent_playbook_action - delete single row from the table: "agent_playbook_action"
  • delete_agent_playbook_by_pk: agent_playbook - delete single row from the table: "agent_playbook"
  • delete_agent_playbook_processor: agent_playbook_processor_mutation_response - delete data from the table: "agent_playbook_processor"
  • delete_agent_playbook_processor_by_pk: agent_playbook_processor - delete single row from the table: "agent_playbook_processor"
  • delete_agent_playbook_source: agent_playbook_source_mutation_response - delete data from the table: "agent_playbook_source"
  • delete_agent_playbook_source_by_pk: agent_playbook_source - delete single row from the table: "agent_playbook_source"
  • delete_agent_playbook_trigger: agent_playbook_trigger_mutation_response - delete data from the table: "agent_playbook_trigger"
  • delete_agent_playbook_trigger_by_pk: agent_playbook_trigger - delete single row from the table: "agent_playbook_trigger"
  • delete_agent_task: agent_task_mutation_response - delete data from the table: "agent_task"
  • delete_agent_task_by_pk: agent_task - delete single row from the table: "agent_task"
  • delete_anomaly: anomaly_mutation_response - delete data from the table: "anomaly"
  • delete_anomaly_by_pk: anomaly - delete single row from the table: "anomaly"
  • delete_anomaly_change_operator: anomaly_change_operator_mutation_response - delete data from the table: "anomaly_change_operator"
  • delete_anomaly_change_operator_by_pk: anomaly_change_operator - delete single row from the table: "anomaly_change_operator"
  • delete_anomaly_config: anomaly_config_mutation_response - delete data from the table: "anomaly_config"
  • delete_anomaly_config_by_pk: anomaly_config - delete single row from the table: "anomaly_config"
  • delete_anomaly_config_type: anomaly_config_type_mutation_response - delete data from the table: "anomaly_config_type"
  • delete_anomaly_config_type_by_pk: anomaly_config_type - delete single row from the table: "anomaly_config_type"
  • delete_anomaly_type: anomaly_type_mutation_response - delete data from the table: "anomaly_type"
  • delete_anomaly_type_by_pk: anomaly_type - delete single row from the table: "anomaly_type"
  • delete_application_group: application_group_mutation_response - delete data from the table: "application_group"
  • delete_application_group_by_pk: application_group - delete single row from the table: "application_group"
  • delete_application_group_mapping: application_group_mapping_mutation_response - delete data from the table: "application_group_mapping"
  • delete_application_group_mapping_by_pk: application_group_mapping - delete single row from the table: "application_group_mapping"
  • delete_application_profile: application_profile_mutation_response - delete data from the table: "application_profile"
  • delete_application_profile_by_pk: application_profile - delete single row from the table: "application_profile"
  • delete_audit: audit_mutation_response - delete data from the table: "audit"
  • delete_audit_by_pk: audit - delete single row from the table: "audit"
  • delete_auth_provider_type: auth_provider_type_mutation_response - delete data from the table: "auth_provider_type"
  • delete_auth_provider_type_by_pk: auth_provider_type - delete single row from the table: "auth_provider_type"
  • delete_auth_type: auth_type_mutation_response - delete data from the table: "auth_type"
  • delete_auth_type_by_pk: auth_type - delete single row from the table: "auth_type"
  • delete_auto_optimize_resource_map: auto_optimize_resource_map_mutation_response - delete data from the table: "auto_optimize_resource_map"
  • delete_auto_optimize_resource_map_by_pk: auto_optimize_resource_map - delete single row from the table: "auto_optimize_resource_map"
  • delete_auto_pilot: auto_pilot_mutation_response - delete data from the table: "auto_pilot"
  • delete_auto_pilot_approval_policy: auto_pilot_approval_policy_mutation_response - delete data from the table: "auto_pilot_approval_policy"
  • delete_auto_pilot_approval_policy_by_pk: auto_pilot_approval_policy - delete single row from the table: "auto_pilot_approval_policy"
  • delete_auto_pilot_approval_status: auto_pilot_approval_status_mutation_response - delete data from the table: "auto_pilot_approval_status"
  • delete_auto_pilot_approval_status_by_pk: auto_pilot_approval_status - delete single row from the table: "auto_pilot_approval_status"
  • delete_auto_pilot_approvals: auto_pilot_approvals_mutation_response - delete data from the table: "auto_pilot_approvals"
  • delete_auto_pilot_approvals_by_pk: auto_pilot_approvals - delete single row from the table: "auto_pilot_approvals"
  • delete_auto_pilot_by_pk: auto_pilot - delete single row from the table: "auto_pilot"
  • delete_auto_pilot_category: auto_pilot_category_mutation_response - delete data from the table: "auto_pilot_category"
  • delete_auto_pilot_category_by_pk: auto_pilot_category - delete single row from the table: "auto_pilot_category"
  • delete_auto_pilot_execution_status: auto_pilot_execution_status_mutation_response - delete data from the table: "auto_pilot_execution_status"
  • delete_auto_pilot_execution_status_by_pk: auto_pilot_execution_status - delete single row from the table: "auto_pilot_execution_status"
  • delete_auto_pilot_reviewee: auto_pilot_reviewee_mutation_response - delete data from the table: "auto_pilot_reviewee"
  • delete_auto_pilot_reviewee_by_pk: auto_pilot_reviewee - delete single row from the table: "auto_pilot_reviewee"
  • delete_auto_pilot_reviewers: auto_pilot_reviewers_mutation_response - delete data from the table: "auto_pilot_reviewers"
  • delete_auto_pilot_reviewers_by_pk: auto_pilot_reviewers - delete single row from the table: "auto_pilot_reviewers"
  • delete_auto_pilot_status: auto_pilot_status_mutation_response - delete data from the table: "auto_pilot_status"
  • delete_auto_pilot_status_by_pk: auto_pilot_status - delete single row from the table: "auto_pilot_status"
  • delete_auto_pilot_task: auto_pilot_task_mutation_response - delete data from the table: "auto_pilot_task"
  • delete_auto_pilot_task_by_pk: auto_pilot_task - delete single row from the table: "auto_pilot_task"
  • delete_auto_pilot_task_status: auto_pilot_task_status_mutation_response - delete data from the table: "auto_pilot_task_status"
  • delete_auto_pilot_task_status_by_pk: auto_pilot_task_status - delete single row from the table: "auto_pilot_task_status"
  • delete_auto_playbook: auto_playbook_mutation_response - delete data from the table: "auto_playbook"
  • delete_auto_playbook_actions: auto_playbook_actions_mutation_response - delete data from the table: "auto_playbook_actions"
  • delete_auto_playbook_actions_by_pk: auto_playbook_actions - delete single row from the table: "auto_playbook_actions"
  • delete_auto_playbook_by_pk: auto_playbook - delete single row from the table: "auto_playbook"
  • delete_auto_playbook_execution_status: auto_playbook_execution_status_mutation_response - delete data from the table: "auto_playbook_execution_status"
  • delete_auto_playbook_execution_status_by_pk: auto_playbook_execution_status - delete single row from the table: "auto_playbook_execution_status"
  • delete_auto_playbook_executions: auto_playbook_executions_mutation_response - delete data from the table: "auto_playbook_executions"
  • delete_auto_playbook_executions_by_pk: auto_playbook_executions - delete single row from the table: "auto_playbook_executions"
  • delete_auto_playbook_status: auto_playbook_status_mutation_response - delete data from the table: "auto_playbook_status"
  • delete_auto_playbook_status_by_pk: auto_playbook_status - delete single row from the table: "auto_playbook_status"
  • delete_auto_playbook_task: auto_playbook_task_mutation_response - delete data from the table: "auto_playbook_task"
  • delete_auto_playbook_task_by_pk: auto_playbook_task - delete single row from the table: "auto_playbook_task"
  • delete_auto_playbook_task_status: auto_playbook_task_status_mutation_response - delete data from the table: "auto_playbook_task_status"
  • delete_auto_playbook_task_status_by_pk: auto_playbook_task_status - delete single row from the table: "auto_playbook_task_status"
  • delete_autopilot_attributes: autopilot_attributes_mutation_response - delete data from the table: "autopilot_attributes"
  • delete_autopilot_attributes_by_pk: autopilot_attributes - delete single row from the table: "autopilot_attributes"
  • delete_billing: billing_mutation_response - delete data from the table: "billing"
  • delete_billing_by_pk: billing - delete single row from the table: "billing"
  • delete_billing_usage_cost: billing_usage_cost_mutation_response - delete data from the table: "billing_usage_cost"
  • delete_billing_usage_cost_by_pk: billing_usage_cost - delete single row from the table: "billing_usage_cost"
  • delete_business_unit: business_unit_mutation_response - delete data from the table: "business_unit"
  • delete_business_unit_by_pk: business_unit - delete single row from the table: "business_unit"
  • delete_businessunit_funding: businessunit_funding_mutation_response - delete data from the table: "businessunit_funding"
  • delete_businessunit_funding_by_pk: businessunit_funding - delete single row from the table: "businessunit_funding"
  • delete_businessunit_users: businessunit_users_mutation_response - delete data from the table: "businessunit_users"
  • delete_businessunit_users_by_pk: businessunit_users - delete single row from the table: "businessunit_users"
  • delete_cloud_account_attrs: cloud_account_attrs_mutation_response - delete data from the table: "cloud_account_attrs"
  • delete_cloud_account_attrs_by_pk: cloud_account_attrs - delete single row from the table: "cloud_account_attrs"
  • delete_cloud_account_onboarding_errors: cloud_account_onboarding_errors_mutation_response - delete data from the table: "cloud_account_onboarding_errors"
  • delete_cloud_account_onboarding_errors_by_pk: cloud_account_onboarding_errors - delete single row from the table: "cloud_account_onboarding_errors"
  • delete_cloud_account_score: cloud_account_score_mutation_response - delete data from the table: "cloud_account_score"
  • delete_cloud_account_score_by_pk: cloud_account_score - delete single row from the table: "cloud_account_score"
  • delete_cloud_account_status_type: cloud_account_status_type_mutation_response - delete data from the table: "cloud_account_status_type"
  • delete_cloud_account_status_type_by_pk: cloud_account_status_type - delete single row from the table: "cloud_account_status_type"
  • delete_cloud_account_sync_status_type: cloud_account_sync_status_type_mutation_response - delete data from the table: "cloud_account_sync_status_type"
  • delete_cloud_account_sync_status_type_by_pk: cloud_account_sync_status_type - delete single row from the table: "cloud_account_sync_status_type"
  • delete_cloud_accounts: cloud_accounts_mutation_response - delete data from the table: "cloud_accounts"
  • delete_cloud_accounts_by_pk: cloud_accounts - delete single row from the table: "cloud_accounts"
  • delete_cloud_api_permission_errors: cloud_api_permission_errors_mutation_response - delete data from the table: "cloud_api_permission_errors"
  • delete_cloud_api_permission_errors_by_pk: cloud_api_permission_errors - delete single row from the table: "cloud_api_permission_errors"
  • delete_cloud_provider_type: cloud_provider_type_mutation_response - delete data from the table: "cloud_provider_type"
  • delete_cloud_provider_type_by_pk: cloud_provider_type - delete single row from the table: "cloud_provider_type"
  • delete_cloud_resource_attributes: cloud_resource_attributes_mutation_response - delete data from the table: "cloud_resource_attributes"
  • delete_cloud_resource_attributes_by_pk: cloud_resource_attributes - delete single row from the table: "cloud_resource_attributes"
  • delete_cloud_resource_details: cloud_resource_details_mutation_response - delete data from the table: "cloud_resource_details"
  • delete_cloud_resource_details_by_pk: cloud_resource_details - delete single row from the table: "cloud_resource_details"
  • delete_cloud_resource_metrics: cloud_resource_metrics_mutation_response - delete data from the table: "cloud_resource_metrics"
  • delete_cloud_resource_metrics_by_pk: cloud_resource_metrics - delete single row from the table: "cloud_resource_metrics"
  • delete_cloud_resource_status_type: cloud_resource_status_type_mutation_response - delete data from the table: "cloud_resource_status_type"
  • delete_cloud_resource_status_type_by_pk: cloud_resource_status_type - delete single row from the table: "cloud_resource_status_type"
  • delete_cloud_resourses: cloud_resourses_mutation_response - delete data from the table: "cloud_resourses"
  • delete_cloud_resourses_by_pk: cloud_resourses - delete single row from the table: "cloud_resourses"
  • delete_configuration_store: configuration_store_mutation_response - delete data from the table: "configuration_store"
  • delete_configuration_store_by_pk: configuration_store - delete single row from the table: "configuration_store"
  • delete_db_type: db_type_mutation_response - delete data from the table: "db_type"
  • delete_db_type_by_pk: db_type - delete single row from the table: "db_type"
  • delete_dw_pipe: dw_pipe_mutation_response - delete data from the table: "dw_pipe"
  • delete_dw_pipe_by_pk: dw_pipe - delete single row from the table: "dw_pipe"
  • delete_dw_pipe_usage: dw_pipe_usage_mutation_response - delete data from the table: "dw_pipe_usage"
  • delete_dw_pipe_usage_by_pk: dw_pipe_usage - delete single row from the table: "dw_pipe_usage"
  • delete_dw_queries: dw_queries_mutation_response - delete data from the table: "dw_queries"
  • delete_dw_queries_by_pk: dw_queries - delete single row from the table: "dw_queries"
  • delete_dw_query_profile_data: dw_query_profile_data_mutation_response - delete data from the table: "dw_query_profile_data"
  • delete_dw_query_profile_data_by_pk: dw_query_profile_data - delete single row from the table: "dw_query_profile_data"
  • delete_dw_tables: dw_tables_mutation_response - delete data from the table: "dw_tables"
  • delete_dw_tables_by_pk: dw_tables - delete single row from the table: "dw_tables"
  • delete_etl_jobs: etl_jobs_mutation_response - delete data from the table: "etl_jobs"
  • delete_etl_jobs_by_pk: etl_jobs - delete single row from the table: "etl_jobs"
  • delete_event_bulk_operations: event_bulk_operations_mutation_response - delete data from the table: "event_bulk_operations"
  • delete_event_bulk_operations_by_pk: event_bulk_operations - delete single row from the table: "event_bulk_operations"
  • delete_event_classification: event_classification_mutation_response - delete data from the table: "event_classification"
  • delete_event_classification_by_pk: event_classification - delete single row from the table: "event_classification"
  • delete_event_correlations: event_correlations_mutation_response - delete data from the table: "event_correlations"
  • delete_event_correlations_by_pk: event_correlations - delete single row from the table: "event_correlations"
  • delete_event_duplicates: event_duplicates_mutation_response - delete data from the table: "event_duplicates"
  • delete_event_duplicates_by_pk: event_duplicates - delete single row from the table: "event_duplicates"
  • delete_event_history: event_history_mutation_response - delete data from the table: "event_history"
  • delete_event_history_by_pk: event_history - delete single row from the table: "event_history"
  • delete_event_incoming_webhooks: event_incoming_webhooks_mutation_response - delete data from the table: "event_incoming_webhooks"
  • delete_event_incoming_webhooks_by_pk: event_incoming_webhooks - delete single row from the table: "event_incoming_webhooks"
  • delete_event_log_analysis: event_log_analysis_mutation_response - delete data from the table: "event_log_analysis"
  • delete_event_log_analysis_by_pk: event_log_analysis - delete single row from the table: "event_log_analysis"
  • delete_event_log_analysis_status: event_log_analysis_status_mutation_response - delete data from the table: "event_log_analysis_status"
  • delete_event_log_analysis_status_by_pk: event_log_analysis_status - delete single row from the table: "event_log_analysis_status"
  • delete_event_resolution: event_resolution_mutation_response - delete data from the table: "event_resolution"
  • delete_event_resolution_by_pk: event_resolution - delete single row from the table: "event_resolution"
  • delete_event_rule_severity: event_rule_severity_mutation_response - delete data from the table: "event_rule_severity"
  • delete_event_rule_severity_by_pk: event_rule_severity - delete single row from the table: "event_rule_severity"
  • delete_event_rule_source: event_rule_source_mutation_response - delete data from the table: "event_rule_source"
  • delete_event_rule_source_by_pk: event_rule_source - delete single row from the table: "event_rule_source"
  • delete_event_rules: event_rules_mutation_response - delete data from the table: "event_rules"
  • delete_event_rules_by_pk: event_rules - delete single row from the table: "event_rules"
  • delete_event_severity: event_severity_mutation_response - delete data from the table: "event_severity"
  • delete_event_severity_by_pk: event_severity - delete single row from the table: "event_severity"
  • delete_event_source: event_source_mutation_response - delete data from the table: "event_source"
  • delete_event_source_by_pk: event_source - delete single row from the table: "event_source"
  • delete_event_status: event_status_mutation_response - delete data from the table: "event_status"
  • delete_event_status_by_pk: event_status - delete single row from the table: "event_status"
  • delete_event_triage_rules: event_triage_rules_mutation_response - delete data from the table: "event_triage_rules"
  • delete_event_triage_rules_by_pk: event_triage_rules - delete single row from the table: "event_triage_rules"
  • delete_events: events_mutation_response - delete data from the table: "events"
  • delete_events_by_pk: events - delete single row from the table: "events"
  • delete_feature: feature_mutation_response - delete data from the table: "feature"
  • delete_feature_by_pk: feature - delete single row from the table: "feature"
  • delete_feature_flag: feature_flag_mutation_response - delete data from the table: "feature_flag"
  • delete_feature_flag_by_pk: feature_flag - delete single row from the table: "feature_flag"
  • delete_funding_sources: funding_sources_mutation_response - delete data from the table: "funding_sources"
  • delete_funding_sources_by_pk: funding_sources - delete single row from the table: "funding_sources"
  • delete_group_roles: group_roles_mutation_response - delete data from the table: "group_roles"
  • delete_group_roles_by_pk: group_roles - delete single row from the table: "group_roles"
  • delete_insight: insight_mutation_response - delete data from the table: "insight"
  • delete_insight_by_pk: insight - delete single row from the table: "insight"
  • delete_insight_severity: insight_severity_mutation_response - delete data from the table: "insight_severity"
  • delete_insight_severity_by_pk: insight_severity - delete single row from the table: "insight_severity"
  • delete_integration_categories: integration_categories_mutation_response - delete data from the table: "integration_categories"
  • delete_integration_categories_by_pk: integration_categories - delete single row from the table: "integration_categories"
  • delete_integration_config_values: integration_config_values_mutation_response - delete data from the table: "integration_config_values"
  • delete_integration_config_values_by_pk: integration_config_values - delete single row from the table: "integration_config_values"
  • delete_integration_sources: integration_sources_mutation_response - delete data from the table: "integration_sources"
  • delete_integration_sources_by_pk: integration_sources - delete single row from the table: "integration_sources"
  • delete_integration_statuses: integration_statuses_mutation_response - delete data from the table: "integration_statuses"
  • delete_integration_statuses_by_pk: integration_statuses - delete single row from the table: "integration_statuses"
  • delete_integration_types: integration_types_mutation_response - delete data from the table: "integration_types"
  • delete_integration_types_by_pk: integration_types - delete single row from the table: "integration_types"
  • delete_integrations: integrations_mutation_response - delete data from the table: "integrations"
  • delete_integrations_by_pk: integrations - delete single row from the table: "integrations"
  • delete_integrations_cloud_accounts: integrations_cloud_accounts_mutation_response - delete data from the table: "integrations_cloud_accounts"
  • delete_integrations_cloud_accounts_by_pk: integrations_cloud_accounts - delete single row from the table: "integrations_cloud_accounts"
  • delete_jira_configurations: jira_configurations_mutation_response - delete data from the table: "jira_configurations"
  • delete_jira_configurations_by_pk: jira_configurations - delete single row from the table: "jira_configurations"
  • delete_k8s_namespaces: k8s_namespaces_mutation_response - delete data from the table: "k8s_namespaces"
  • delete_k8s_namespaces_by_pk: k8s_namespaces - delete single row from the table: "k8s_namespaces"
  • delete_k8s_nodes: k8s_nodes_mutation_response - delete data from the table: "k8s_nodes"
  • delete_k8s_nodes_by_pk: k8s_nodes - delete single row from the table: "k8s_nodes"
  • delete_k8s_pods: k8s_pods_mutation_response - delete data from the table: "k8s_pods"
  • delete_k8s_pods_by_pk: k8s_pods - delete single row from the table: "k8s_pods"
  • delete_k8s_workloads: k8s_workloads_mutation_response - delete data from the table: "k8s_workloads"
  • delete_k8s_workloads_by_pk: k8s_workloads - delete single row from the table: "k8s_workloads"
  • delete_knowledge_base: knowledge_base_mutation_response - delete data from the table: "knowledge_base"
  • delete_knowledge_base_by_pk: knowledge_base - delete single row from the table: "knowledge_base"
  • delete_knowledge_graph_edge: knowledge_graph_edge_mutation_response - delete data from the table: "knowledge_graph_edge"
  • delete_knowledge_graph_edge_by_pk: knowledge_graph_edge - delete single row from the table: "knowledge_graph_edge"
  • delete_knowledge_graph_metadata: knowledge_graph_metadata_mutation_response - delete data from the table: "knowledge_graph_metadata"
  • delete_knowledge_graph_metadata_by_pk: knowledge_graph_metadata - delete single row from the table: "knowledge_graph_metadata"
  • delete_knowledge_graph_node: knowledge_graph_node_mutation_response - delete data from the table: "knowledge_graph_node"
  • delete_knowledge_graph_node_by_pk: knowledge_graph_node - delete single row from the table: "knowledge_graph_node"
  • delete_knowledge_graph_relationship_types: knowledge_graph_relationship_types_mutation_response - delete data from the table: "knowledge_graph_relationship_types"
  • delete_knowledge_graph_relationship_types_by_pk: knowledge_graph_relationship_types - delete single row from the table: "knowledge_graph_relationship_types"
  • delete_knowledge_graph_tenant_filters: knowledge_graph_tenant_filters_mutation_response - delete data from the table: "knowledge_graph_tenant_filters"
  • delete_knowledge_graph_tenant_filters_by_pk: knowledge_graph_tenant_filters - delete single row from the table: "knowledge_graph_tenant_filters"
  • delete_llm_agents: llm_agents_mutation_response - delete data from the table: "llm_agents"
  • delete_llm_agents_by_pk: llm_agents - delete single row from the table: "llm_agents"
  • delete_llm_agents_installation: llm_agents_installation_mutation_response - delete data from the table: "llm_agents_installation"
  • delete_llm_agents_installation_by_pk: llm_agents_installation - delete single row from the table: "llm_agents_installation"
  • delete_llm_conversation_agent: llm_conversation_agent_mutation_response - delete data from the table: "llm_conversation_agent"
  • delete_llm_conversation_agent_by_pk: llm_conversation_agent - delete single row from the table: "llm_conversation_agent"
  • delete_llm_conversation_agent_critiques: llm_conversation_agent_critiques_mutation_response - delete data from the table: "llm_conversation_agent_critiques"
  • delete_llm_conversation_agent_critiques_by_pk: llm_conversation_agent_critiques - delete single row from the table: "llm_conversation_agent_critiques"
  • delete_llm_conversation_feedback: llm_conversation_feedback_mutation_response - delete data from the table: "llm_conversation_feedback"
  • delete_llm_conversation_feedback_by_pk: llm_conversation_feedback - delete single row from the table: "llm_conversation_feedback"
  • delete_llm_conversation_history: llm_conversation_history_mutation_response - delete data from the table: "llm_conversation_history"
  • delete_llm_conversation_history_by_pk: llm_conversation_history - delete single row from the table: "llm_conversation_history"
  • delete_llm_conversation_messages: llm_conversation_messages_mutation_response - delete data from the table: "llm_conversation_messages"
  • delete_llm_conversation_messages_by_pk: llm_conversation_messages - delete single row from the table: "llm_conversation_messages"
  • delete_llm_conversation_saved: llm_conversation_saved_mutation_response - delete data from the table: "llm_conversation_saved"
  • delete_llm_conversation_saved_by_pk: llm_conversation_saved - delete single row from the table: "llm_conversation_saved"
  • delete_llm_conversation_tool_calls: llm_conversation_tool_calls_mutation_response - delete data from the table: "llm_conversation_tool_calls"
  • delete_llm_conversation_tool_calls_by_pk: llm_conversation_tool_calls - delete single row from the table: "llm_conversation_tool_calls"
  • delete_llm_conversations: llm_conversations_mutation_response - delete data from the table: "llm_conversations"
  • delete_llm_conversations_by_pk: llm_conversations - delete single row from the table: "llm_conversations"
  • delete_llm_functions: llm_functions_mutation_response - delete data from the table: "llm_functions"
  • delete_llm_functions_by_pk: llm_functions - delete single row from the table: "llm_functions"
  • delete_llm_model_pricing: llm_model_pricing_mutation_response - delete data from the table: "llm_model_pricing"
  • delete_llm_model_pricing_by_pk: llm_model_pricing - delete single row from the table: "llm_model_pricing"
  • delete_llm_rag_audit: llm_rag_audit_mutation_response - delete data from the table: "llm_rag_audit"
  • delete_llm_rag_audit_by_pk: llm_rag_audit - delete single row from the table: "llm_rag_audit"
  • delete_llm_rags: llm_rags_mutation_response - delete data from the table: "llm_rags"
  • delete_llm_rags_by_pk: llm_rags - delete single row from the table: "llm_rags"
  • delete_marketplace_customers: marketplace_customers_mutation_response - delete data from the table: "marketplace_customers"
  • delete_marketplace_customers_by_pk: marketplace_customers - delete single row from the table: "marketplace_customers"
  • delete_messaging_platforms: messaging_platforms_mutation_response - delete data from the table: "messaging_platforms"
  • delete_messaging_platforms_by_pk: messaging_platforms - delete single row from the table: "messaging_platforms"
  • delete_messaging_platforms_type: messaging_platforms_type_mutation_response - delete data from the table: "messaging_platforms_type"
  • delete_messaging_platforms_type_by_pk: messaging_platforms_type - delete single row from the table: "messaging_platforms_type"
  • delete_metrics_summary: metrics_summary_mutation_response - delete data from the table: "metrics_summary"
  • delete_metrics_summary_by_pk: metrics_summary - delete single row from the table: "metrics_summary"
  • delete_ms_teams_channels: ms_teams_channels_mutation_response - delete data from the table: "ms_teams_channels"
  • delete_ms_teams_channels_by_pk: ms_teams_channels - delete single row from the table: "ms_teams_channels"
  • delete_notification_channel_account_mappings: notification_channel_account_mappings_mutation_response - delete data from the table: "notification_channel_account_mappings"
  • delete_notification_channel_account_mappings_by_pk: notification_channel_account_mappings - delete single row from the table: "notification_channel_account_mappings"
  • delete_notification_platform_types: notification_platform_types_mutation_response - delete data from the table: "notification_platform_types"
  • delete_notification_platform_types_by_pk: notification_platform_types - delete single row from the table: "notification_platform_types"
  • delete_notification_rule_mappings: notification_rule_mappings_mutation_response - delete data from the table: "notification_rule_mappings"
  • delete_notification_rule_mappings_by_pk: notification_rule_mappings - delete single row from the table: "notification_rule_mappings"
  • delete_notification_rules: notification_rules_mutation_response - delete data from the table: "notification_rules"
  • delete_notification_rules_by_pk: notification_rules - delete single row from the table: "notification_rules"
  • delete_notification_severity_type: notification_severity_type_mutation_response - delete data from the table: "notification_severity_type"
  • delete_notification_severity_type_by_pk: notification_severity_type - delete single row from the table: "notification_severity_type"
  • delete_notification_source_type: notification_source_type_mutation_response - delete data from the table: "notification_source_type"
  • delete_notification_source_type_by_pk: notification_source_type - delete single row from the table: "notification_source_type"
  • delete_notification_user: notification_user_mutation_response - delete data from the table: "notification_user"
  • delete_notification_user_by_pk: notification_user - delete single row from the table: "notification_user"
  • delete_notification_user_status_type: notification_user_status_type_mutation_response - delete data from the table: "notification_user_status_type"
  • delete_notification_user_status_type_by_pk: notification_user_status_type - delete single row from the table: "notification_user_status_type"
  • delete_notifications: notifications_mutation_response - delete data from the table: "notifications"
  • delete_notifications_by_pk: notifications - delete single row from the table: "notifications"
  • delete_notifications_delivery_mode_type: notifications_delivery_mode_type_mutation_response - delete data from the table: "notifications_delivery_mode_type"
  • delete_notifications_delivery_mode_type_by_pk: notifications_delivery_mode_type - delete single row from the table: "notifications_delivery_mode_type"
  • delete_notifications_frequency_type: notifications_frequency_type_mutation_response - delete data from the table: "notifications_frequency_type"
  • delete_notifications_frequency_type_by_pk: notifications_frequency_type - delete single row from the table: "notifications_frequency_type"
  • delete_project_accounts: project_accounts_mutation_response - delete data from the table: "project_accounts"
  • delete_project_accounts_by_pk: project_accounts - delete single row from the table: "project_accounts"
  • delete_project_category_type: project_category_type_mutation_response - delete data from the table: "project_category_type"
  • delete_project_category_type_by_pk: project_category_type - delete single row from the table: "project_category_type"
  • delete_project_cloud_resources: project_cloud_resources_mutation_response - delete data from the table: "project_cloud_resources"
  • delete_project_cloud_resources_by_pk: project_cloud_resources - delete single row from the table: "project_cloud_resources"
  • delete_project_fundings: project_fundings_mutation_response - delete data from the table: "project_fundings"
  • delete_project_fundings_by_pk: project_fundings - delete single row from the table: "project_fundings"
  • delete_project_users: project_users_mutation_response - delete data from the table: "project_users"
  • delete_project_users_by_pk: project_users - delete single row from the table: "project_users"
  • delete_projects: projects_mutation_response - delete data from the table: "projects"
  • delete_projects_by_pk: projects - delete single row from the table: "projects"
  • delete_recommendation: recommendation_mutation_response - delete data from the table: "recommendation"
  • delete_recommendation_action_type: recommendation_action_type_mutation_response - delete data from the table: "recommendation_action_type"
  • delete_recommendation_action_type_by_pk: recommendation_action_type - delete single row from the table: "recommendation_action_type"
  • delete_recommendation_by_pk: recommendation - delete single row from the table: "recommendation"
  • delete_recommendation_category_type: recommendation_category_type_mutation_response - delete data from the table: "recommendation_category_type"
  • delete_recommendation_category_type_by_pk: recommendation_category_type - delete single row from the table: "recommendation_category_type"
  • delete_recommendation_resolution: recommendation_resolution_mutation_response - delete data from the table: "recommendation_resolution"
  • delete_recommendation_resolution_by_pk: recommendation_resolution - delete single row from the table: "recommendation_resolution"
  • delete_recommendation_severity_type: recommendation_severity_type_mutation_response - delete data from the table: "recommendation_severity_type"
  • delete_recommendation_severity_type_by_pk: recommendation_severity_type - delete single row from the table: "recommendation_severity_type"
  • delete_recommendation_status_type: recommendation_status_type_mutation_response - delete data from the table: "recommendation_status_type"
  • delete_recommendation_status_type_by_pk: recommendation_status_type - delete single row from the table: "recommendation_status_type"
  • delete_roles: roles_mutation_response - delete data from the table: "roles"
  • delete_roles_by_pk: roles - delete single row from the table: "roles"
  • delete_runbook_action: runbook_action_mutation_response - delete data from the table: "runbook_action"
  • delete_runbook_action_by_pk: runbook_action - delete single row from the table: "runbook_action"
  • delete_runbook_action_library: runbook_action_library_mutation_response - delete data from the table: "runbook_action_library"
  • delete_runbook_action_library_by_pk: runbook_action_library - delete single row from the table: "runbook_action_library"
  • delete_runbook_action_status: runbook_action_status_mutation_response - delete data from the table: "runbook_action_status"
  • delete_runbook_action_status_by_pk: runbook_action_status - delete single row from the table: "runbook_action_status"
  • delete_runbook_task_output: runbook_task_output_mutation_response - delete data from the table: "runbook_task_output"
  • delete_runbook_task_output_by_pk: runbook_task_output - delete single row from the table: "runbook_task_output"
  • delete_schedule_unit_type: schedule_unit_type_mutation_response - delete data from the table: "schedule_unit_type"
  • delete_schedule_unit_type_by_pk: schedule_unit_type - delete single row from the table: "schedule_unit_type"
  • delete_sent_notifications: sent_notifications_mutation_response - delete data from the table: "sent_notifications"
  • delete_sent_notifications_by_pk: sent_notifications - delete single row from the table: "sent_notifications"
  • delete_slack_bots: slack_bots_mutation_response - delete data from the table: "slack_bots"
  • delete_slack_bots_by_pk: slack_bots - delete single row from the table: "slack_bots"
  • delete_slack_oauth_states: slack_oauth_states_mutation_response - delete data from the table: "slack_oauth_states"
  • delete_slack_oauth_states_by_pk: slack_oauth_states - delete single row from the table: "slack_oauth_states"
  • delete_slo_config: slo_config_mutation_response - delete data from the table: "slo_config"
  • delete_slo_config_by_pk: slo_config - delete single row from the table: "slo_config"
  • delete_slo_report: slo_report_mutation_response - delete data from the table: "slo_report"
  • delete_slo_report_by_pk: slo_report - delete single row from the table: "slo_report"
  • delete_slo_status: slo_status_mutation_response - delete data from the table: "slo_status"
  • delete_slo_status_by_pk: slo_status - delete single row from the table: "slo_status"
  • delete_spends: spends_mutation_response - delete data from the table: "spends"
  • delete_spends_by_pk: spends - delete single row from the table: "spends"
  • delete_spends_resource_group_type: spends_resource_group_type_mutation_response - delete data from the table: "spends_resource_group_type"
  • delete_spends_resource_group_type_by_pk: spends_resource_group_type - delete single row from the table: "spends_resource_group_type"
  • delete_tenant: tenant_mutation_response - delete data from the table: "tenant"
  • delete_tenant_attrs: tenant_attrs_mutation_response - delete data from the table: "tenant_attrs"
  • delete_tenant_attrs_by_pk: tenant_attrs - delete single row from the table: "tenant_attrs"
  • delete_tenant_by_pk: tenant - delete single row from the table: "tenant"
  • delete_tenant_onboarding: tenant_onboarding_mutation_response - delete data from the table: "tenant_onboarding"
  • delete_tenant_onboarding_by_pk: tenant_onboarding - delete single row from the table: "tenant_onboarding"
  • delete_tenant_type: tenant_type_mutation_response - delete data from the table: "tenant_type"
  • delete_tenant_type_by_pk: tenant_type - delete single row from the table: "tenant_type"
  • delete_tenant_users: tenant_users_mutation_response - delete data from the table: "tenant_users"
  • delete_tenant_users_by_pk: tenant_users - delete single row from the table: "tenant_users"
  • delete_ticket_severity_type: ticket_severity_type_mutation_response - delete data from the table: "ticket_severity_type"
  • delete_ticket_severity_type_by_pk: ticket_severity_type - delete single row from the table: "ticket_severity_type"
  • delete_ticket_source_type: ticket_source_type_mutation_response - delete data from the table: "ticket_source_type"
  • delete_ticket_source_type_by_pk: ticket_source_type - delete single row from the table: "ticket_source_type"
  • delete_ticket_tool_types: ticket_tool_types_mutation_response - delete data from the table: "ticket_tool_types"
  • delete_ticket_tool_types_by_pk: ticket_tool_types - delete single row from the table: "ticket_tool_types"
  • delete_tickets: tickets_mutation_response - delete data from the table: "tickets"
  • delete_tickets_by_pk: tickets - delete single row from the table: "tickets"
  • delete_upgrade_plan: upgrade_plan_mutation_response - delete data from the table: "upgrade_plan"
  • delete_upgrade_plan_audit: upgrade_plan_audit_mutation_response - delete data from the table: "upgrade_plan_audit"
  • delete_upgrade_plan_audit_by_pk: upgrade_plan_audit - delete single row from the table: "upgrade_plan_audit"
  • delete_upgrade_plan_by_pk: upgrade_plan - delete single row from the table: "upgrade_plan"
  • delete_upgrade_plan_status_type: upgrade_plan_status_type_mutation_response - delete data from the table: "upgrade_plan_status_type"
  • delete_upgrade_plan_status_type_by_pk: upgrade_plan_status_type - delete single row from the table: "upgrade_plan_status_type"
  • delete_upgrade_plan_steps: upgrade_plan_steps_mutation_response - delete data from the table: "upgrade_plan_steps"
  • delete_upgrade_plan_steps_by_pk: upgrade_plan_steps - delete single row from the table: "upgrade_plan_steps"
  • delete_upgrade_plan_tasks: upgrade_plan_tasks_mutation_response - delete data from the table: "upgrade_plan_tasks"
  • delete_upgrade_plan_tasks_by_pk: upgrade_plan_tasks - delete single row from the table: "upgrade_plan_tasks"
  • delete_user_attrs: user_attrs_mutation_response - delete data from the table: "user_attrs"
  • delete_user_attrs_by_pk: user_attrs - delete single row from the table: "user_attrs"
  • delete_user_auths: user_auths_mutation_response - delete data from the table: "user_auths"
  • delete_user_auths_by_pk: user_auths - delete single row from the table: "user_auths"
  • delete_user_groups: user_groups_mutation_response - delete data from the table: "user_groups"
  • delete_user_groups_by_pk: user_groups - delete single row from the table: "user_groups"
  • delete_user_history: user_history_mutation_response - delete data from the table: "user_history"
  • delete_user_history_by_pk: user_history - delete single row from the table: "user_history"
  • delete_user_roles: user_roles_mutation_response - delete data from the table: "user_roles"
  • delete_user_roles_by_pk: user_roles - delete single row from the table: "user_roles"
  • delete_user_status_type: user_status_type_mutation_response - delete data from the table: "user_status_type"
  • delete_user_status_type_by_pk: user_status_type - delete single row from the table: "user_status_type"
  • delete_usergroup_users: usergroup_users_mutation_response - delete data from the table: "usergroup_users"
  • delete_usergroup_users_by_pk: usergroup_users - delete single row from the table: "usergroup_users"
  • delete_users: users_mutation_response - delete data from the table: "users"
  • delete_users_by_pk: users - delete single row from the table: "users"
  • event_backfill_triage: EventBackfillTriageOutput - Backfill triage data for historical events (admin only)
  • event_bulk_operation_status: GetBulkOperationStatusResponse - Check the status of a bulk classification operation
  • event_classify: ClassifyEventResponse - Classify an event as TP/FP/BP/Duplicate with optional rule creation
  • event_classify_preview: ClassifyPreviewResponse - Preview the impact of classifying an event before confirming
  • event_create_triage_rule: CreateTriageRuleResponse - Create a new triage rule for automatic event processing
  • event_deduplicate_correlations: EventDeduplicateCorrelationsOutput - Remove duplicate correlation records (admin only)
  • event_delete_triage_rule: DeleteTriageRuleResponse - Delete or disable a triage rule
  • event_get_classification: EventClassification - Get classification record for an event
  • event_get_correlations: EventGetCorrelationsOutput - Get correlated events for an event
  • event_get_duplicate_suggestions: EventGetDuplicateSuggestionsOutput - Get suggested original events for duplicate classification
  • event_get_duplicates: EventGetDuplicatesOutput - Get duplicate chain for an event
  • event_get_timeline: EventTimelineOutput - Get chronological timeline of events related to an event
  • event_get_triage: EventGetTriageOutput - Get comprehensive triage information for an event
  • event_get_triage_rule_events: EventGetTriageRuleEventsOutput - Get events that were classified by a specific triage rule
  • event_get_triage_rules: EventGetTriageRulesOutput - Get triage rules for an account
  • event_preview_triage_rule: EventPreviewTriageRuleOutput - Preview how many existing events would match a triage rule criteria
  • event_resolve: event_resolve_output
  • event_toggle_system_rule_override: ToggleSystemRuleOverrideResponse - Toggle system rule override for an account (enable/disable a system rule)
  • event_update: EventsRowResponse
  • event_update_nb_status: UpdateNBStatusResponse - Update the nb_status (triage status) of an event
  • event_update_triage_rule: UpdateTriageRuleResponse - Update an existing triage rule
  • generate_node_recommendations: generate_cluster_recommendations_output - To get node recommendations
  • insert_account_env_type: account_env_type_mutation_response - insert data into the table: "account_env_type"
  • insert_account_env_type_one: account_env_type - insert a single row into the table: "account_env_type"
  • insert_account_purpose_type: account_purpose_type_mutation_response - insert data into the table: "account_purpose_type"
  • insert_account_purpose_type_one: account_purpose_type - insert a single row into the table: "account_purpose_type"
  • insert_active_resources: active_resources_mutation_response - insert data into the table: "active_resources"
  • insert_active_resources_one: active_resources - insert a single row into the table: "active_resources"
  • insert_agent: agent_mutation_response - insert data into the table: "agent"
  • insert_agent_audit_log: agent_audit_log_mutation_response - insert data into the table: "agent_audit_log"
  • insert_agent_audit_log_one: agent_audit_log - insert a single row into the table: "agent_audit_log"
  • insert_agent_one: agent - insert a single row into the table: "agent"
  • insert_agent_playbook: agent_playbook_mutation_response - insert data into the table: "agent_playbook"
  • insert_agent_playbook_action: agent_playbook_action_mutation_response - insert data into the table: "agent_playbook_action"
  • insert_agent_playbook_action_one: agent_playbook_action - insert a single row into the table: "agent_playbook_action"
  • insert_agent_playbook_one: agent_playbook - insert a single row into the table: "agent_playbook"
  • insert_agent_playbook_processor: agent_playbook_processor_mutation_response - insert data into the table: "agent_playbook_processor"
  • insert_agent_playbook_processor_one: agent_playbook_processor - insert a single row into the table: "agent_playbook_processor"
  • insert_agent_playbook_source: agent_playbook_source_mutation_response - insert data into the table: "agent_playbook_source"
  • insert_agent_playbook_source_one: agent_playbook_source - insert a single row into the table: "agent_playbook_source"
  • insert_agent_playbook_trigger: agent_playbook_trigger_mutation_response - insert data into the table: "agent_playbook_trigger"
  • insert_agent_playbook_trigger_one: agent_playbook_trigger - insert a single row into the table: "agent_playbook_trigger"
  • insert_agent_task: agent_task_mutation_response - insert data into the table: "agent_task"
  • insert_agent_task_one: agent_task - insert a single row into the table: "agent_task"
  • insert_anomaly: anomaly_mutation_response - insert data into the table: "anomaly"
  • insert_anomaly_change_operator: anomaly_change_operator_mutation_response - insert data into the table: "anomaly_change_operator"
  • insert_anomaly_change_operator_one: anomaly_change_operator - insert a single row into the table: "anomaly_change_operator"
  • insert_anomaly_config: anomaly_config_mutation_response - insert data into the table: "anomaly_config"
  • insert_anomaly_config_one: anomaly_config - insert a single row into the table: "anomaly_config"
  • insert_anomaly_config_type: anomaly_config_type_mutation_response - insert data into the table: "anomaly_config_type"
  • insert_anomaly_config_type_one: anomaly_config_type - insert a single row into the table: "anomaly_config_type"
  • insert_anomaly_one: anomaly - insert a single row into the table: "anomaly"
  • insert_anomaly_type: anomaly_type_mutation_response - insert data into the table: "anomaly_type"
  • insert_anomaly_type_one: anomaly_type - insert a single row into the table: "anomaly_type"
  • insert_application_group: application_group_mutation_response - insert data into the table: "application_group"
  • insert_application_group_mapping: application_group_mapping_mutation_response - insert data into the table: "application_group_mapping"
  • insert_application_group_mapping_one: application_group_mapping - insert a single row into the table: "application_group_mapping"
  • insert_application_group_one: application_group - insert a single row into the table: "application_group"
  • insert_application_profile: application_profile_mutation_response - insert data into the table: "application_profile"
  • insert_application_profile_one: application_profile - insert a single row into the table: "application_profile"
  • insert_audit: audit_mutation_response - insert data into the table: "audit"
  • insert_audit_one: audit - insert a single row into the table: "audit"
  • insert_auth_provider_type: auth_provider_type_mutation_response - insert data into the table: "auth_provider_type"
  • insert_auth_provider_type_one: auth_provider_type - insert a single row into the table: "auth_provider_type"
  • insert_auth_type: auth_type_mutation_response - insert data into the table: "auth_type"
  • insert_auth_type_one: auth_type - insert a single row into the table: "auth_type"
  • insert_auto_optimize_resource_map: auto_optimize_resource_map_mutation_response - insert data into the table: "auto_optimize_resource_map"
  • insert_auto_optimize_resource_map_one: auto_optimize_resource_map - insert a single row into the table: "auto_optimize_resource_map"
  • insert_auto_pilot: auto_pilot_mutation_response - insert data into the table: "auto_pilot"
  • insert_auto_pilot_approval_policy: auto_pilot_approval_policy_mutation_response - insert data into the table: "auto_pilot_approval_policy"
  • insert_auto_pilot_approval_policy_one: auto_pilot_approval_policy - insert a single row into the table: "auto_pilot_approval_policy"
  • insert_auto_pilot_approval_status: auto_pilot_approval_status_mutation_response - insert data into the table: "auto_pilot_approval_status"
  • insert_auto_pilot_approval_status_one: auto_pilot_approval_status - insert a single row into the table: "auto_pilot_approval_status"
  • insert_auto_pilot_approvals: auto_pilot_approvals_mutation_response - insert data into the table: "auto_pilot_approvals"
  • insert_auto_pilot_approvals_one: auto_pilot_approvals - insert a single row into the table: "auto_pilot_approvals"
  • insert_auto_pilot_category: auto_pilot_category_mutation_response - insert data into the table: "auto_pilot_category"
  • insert_auto_pilot_category_one: auto_pilot_category - insert a single row into the table: "auto_pilot_category"
  • insert_auto_pilot_execution_status: auto_pilot_execution_status_mutation_response - insert data into the table: "auto_pilot_execution_status"
  • insert_auto_pilot_execution_status_one: auto_pilot_execution_status - insert a single row into the table: "auto_pilot_execution_status"
  • insert_auto_pilot_one: auto_pilot - insert a single row into the table: "auto_pilot"
  • insert_auto_pilot_reviewee: auto_pilot_reviewee_mutation_response - insert data into the table: "auto_pilot_reviewee"
  • insert_auto_pilot_reviewee_one: auto_pilot_reviewee - insert a single row into the table: "auto_pilot_reviewee"
  • insert_auto_pilot_reviewers: auto_pilot_reviewers_mutation_response - insert data into the table: "auto_pilot_reviewers"
  • insert_auto_pilot_reviewers_one: auto_pilot_reviewers - insert a single row into the table: "auto_pilot_reviewers"
  • insert_auto_pilot_status: auto_pilot_status_mutation_response - insert data into the table: "auto_pilot_status"
  • insert_auto_pilot_status_one: auto_pilot_status - insert a single row into the table: "auto_pilot_status"
  • insert_auto_pilot_task: auto_pilot_task_mutation_response - insert data into the table: "auto_pilot_task"
  • insert_auto_pilot_task_one: auto_pilot_task - insert a single row into the table: "auto_pilot_task"
  • insert_auto_pilot_task_status: auto_pilot_task_status_mutation_response - insert data into the table: "auto_pilot_task_status"
  • insert_auto_pilot_task_status_one: auto_pilot_task_status - insert a single row into the table: "auto_pilot_task_status"
  • insert_auto_playbook: auto_playbook_mutation_response - insert data into the table: "auto_playbook"
  • insert_auto_playbook_actions: auto_playbook_actions_mutation_response - insert data into the table: "auto_playbook_actions"
  • insert_auto_playbook_actions_one: auto_playbook_actions - insert a single row into the table: "auto_playbook_actions"
  • insert_auto_playbook_execution_status: auto_playbook_execution_status_mutation_response - insert data into the table: "auto_playbook_execution_status"
  • insert_auto_playbook_execution_status_one: auto_playbook_execution_status - insert a single row into the table: "auto_playbook_execution_status"
  • insert_auto_playbook_executions: auto_playbook_executions_mutation_response - insert data into the table: "auto_playbook_executions"
  • insert_auto_playbook_executions_one: auto_playbook_executions - insert a single row into the table: "auto_playbook_executions"
  • insert_auto_playbook_one: auto_playbook - insert a single row into the table: "auto_playbook"
  • insert_auto_playbook_status: auto_playbook_status_mutation_response - insert data into the table: "auto_playbook_status"
  • insert_auto_playbook_status_one: auto_playbook_status - insert a single row into the table: "auto_playbook_status"
  • insert_auto_playbook_task: auto_playbook_task_mutation_response - insert data into the table: "auto_playbook_task"
  • insert_auto_playbook_task_one: auto_playbook_task - insert a single row into the table: "auto_playbook_task"
  • insert_auto_playbook_task_status: auto_playbook_task_status_mutation_response - insert data into the table: "auto_playbook_task_status"
  • insert_auto_playbook_task_status_one: auto_playbook_task_status - insert a single row into the table: "auto_playbook_task_status"
  • insert_autopilot_attributes: autopilot_attributes_mutation_response - insert data into the table: "autopilot_attributes"
  • insert_autopilot_attributes_one: autopilot_attributes - insert a single row into the table: "autopilot_attributes"
  • insert_billing: billing_mutation_response - insert data into the table: "billing"
  • insert_billing_one: billing - insert a single row into the table: "billing"
  • insert_billing_usage_cost: billing_usage_cost_mutation_response - insert data into the table: "billing_usage_cost"
  • insert_billing_usage_cost_one: billing_usage_cost - insert a single row into the table: "billing_usage_cost"
  • insert_business_unit: business_unit_mutation_response - insert data into the table: "business_unit"
  • insert_business_unit_one: business_unit - insert a single row into the table: "business_unit"
  • insert_businessunit_funding: businessunit_funding_mutation_response - insert data into the table: "businessunit_funding"
  • insert_businessunit_funding_one: businessunit_funding - insert a single row into the table: "businessunit_funding"
  • insert_businessunit_users: businessunit_users_mutation_response - insert data into the table: "businessunit_users"
  • insert_businessunit_users_one: businessunit_users - insert a single row into the table: "businessunit_users"
  • insert_cloud_account_attrs: cloud_account_attrs_mutation_response - insert data into the table: "cloud_account_attrs"
  • insert_cloud_account_attrs_one: cloud_account_attrs - insert a single row into the table: "cloud_account_attrs"
  • insert_cloud_account_onboarding_errors: cloud_account_onboarding_errors_mutation_response - insert data into the table: "cloud_account_onboarding_errors"
  • insert_cloud_account_onboarding_errors_one: cloud_account_onboarding_errors - insert a single row into the table: "cloud_account_onboarding_errors"
  • insert_cloud_account_score: cloud_account_score_mutation_response - insert data into the table: "cloud_account_score"
  • insert_cloud_account_score_one: cloud_account_score - insert a single row into the table: "cloud_account_score"
  • insert_cloud_account_status_type: cloud_account_status_type_mutation_response - insert data into the table: "cloud_account_status_type"
  • insert_cloud_account_status_type_one: cloud_account_status_type - insert a single row into the table: "cloud_account_status_type"
  • insert_cloud_account_sync_status_type: cloud_account_sync_status_type_mutation_response - insert data into the table: "cloud_account_sync_status_type"
  • insert_cloud_account_sync_status_type_one: cloud_account_sync_status_type - insert a single row into the table: "cloud_account_sync_status_type"
  • insert_cloud_accounts: cloud_accounts_mutation_response - insert data into the table: "cloud_accounts"
  • insert_cloud_accounts_one: cloud_accounts - insert a single row into the table: "cloud_accounts"
  • insert_cloud_api_permission_errors: cloud_api_permission_errors_mutation_response - insert data into the table: "cloud_api_permission_errors"
  • insert_cloud_api_permission_errors_one: cloud_api_permission_errors - insert a single row into the table: "cloud_api_permission_errors"
  • insert_cloud_provider_type: cloud_provider_type_mutation_response - insert data into the table: "cloud_provider_type"
  • insert_cloud_provider_type_one: cloud_provider_type - insert a single row into the table: "cloud_provider_type"
  • insert_cloud_resource_attributes: cloud_resource_attributes_mutation_response - insert data into the table: "cloud_resource_attributes"
  • insert_cloud_resource_attributes_one: cloud_resource_attributes - insert a single row into the table: "cloud_resource_attributes"
  • insert_cloud_resource_details: cloud_resource_details_mutation_response - insert data into the table: "cloud_resource_details"
  • insert_cloud_resource_details_one: cloud_resource_details - insert a single row into the table: "cloud_resource_details"
  • insert_cloud_resource_metrics: cloud_resource_metrics_mutation_response - insert data into the table: "cloud_resource_metrics"
  • insert_cloud_resource_metrics_one: cloud_resource_metrics - insert a single row into the table: "cloud_resource_metrics"
  • insert_cloud_resource_status_type: cloud_resource_status_type_mutation_response - insert data into the table: "cloud_resource_status_type"
  • insert_cloud_resource_status_type_one: cloud_resource_status_type - insert a single row into the table: "cloud_resource_status_type"
  • insert_cloud_resourses: cloud_resourses_mutation_response - insert data into the table: "cloud_resourses"
  • insert_cloud_resourses_one: cloud_resourses - insert a single row into the table: "cloud_resourses"
  • insert_configuration_store: configuration_store_mutation_response - insert data into the table: "configuration_store"
  • insert_configuration_store_one: configuration_store - insert a single row into the table: "configuration_store"
  • insert_db_type: db_type_mutation_response - insert data into the table: "db_type"
  • insert_db_type_one: db_type - insert a single row into the table: "db_type"
  • insert_dw_pipe: dw_pipe_mutation_response - insert data into the table: "dw_pipe"
  • insert_dw_pipe_one: dw_pipe - insert a single row into the table: "dw_pipe"
  • insert_dw_pipe_usage: dw_pipe_usage_mutation_response - insert data into the table: "dw_pipe_usage"
  • insert_dw_pipe_usage_one: dw_pipe_usage - insert a single row into the table: "dw_pipe_usage"
  • insert_dw_queries: dw_queries_mutation_response - insert data into the table: "dw_queries"
  • insert_dw_queries_one: dw_queries - insert a single row into the table: "dw_queries"
  • insert_dw_query_profile_data: dw_query_profile_data_mutation_response - insert data into the table: "dw_query_profile_data"
  • insert_dw_query_profile_data_one: dw_query_profile_data - insert a single row into the table: "dw_query_profile_data"
  • insert_dw_tables: dw_tables_mutation_response - insert data into the table: "dw_tables"
  • insert_dw_tables_one: dw_tables - insert a single row into the table: "dw_tables"
  • insert_etl_jobs: etl_jobs_mutation_response - insert data into the table: "etl_jobs"
  • insert_etl_jobs_one: etl_jobs - insert a single row into the table: "etl_jobs"
  • insert_event_bulk_operations: event_bulk_operations_mutation_response - insert data into the table: "event_bulk_operations"
  • insert_event_bulk_operations_one: event_bulk_operations - insert a single row into the table: "event_bulk_operations"
  • insert_event_classification: event_classification_mutation_response - insert data into the table: "event_classification"
  • insert_event_classification_one: event_classification - insert a single row into the table: "event_classification"
  • insert_event_correlations: event_correlations_mutation_response - insert data into the table: "event_correlations"
  • insert_event_correlations_one: event_correlations - insert a single row into the table: "event_correlations"
  • insert_event_duplicates: event_duplicates_mutation_response - insert data into the table: "event_duplicates"
  • insert_event_duplicates_one: event_duplicates - insert a single row into the table: "event_duplicates"
  • insert_event_history: event_history_mutation_response - insert data into the table: "event_history"
  • insert_event_history_one: event_history - insert a single row into the table: "event_history"
  • insert_event_incoming_webhooks: event_incoming_webhooks_mutation_response - insert data into the table: "event_incoming_webhooks"
  • insert_event_incoming_webhooks_one: event_incoming_webhooks - insert a single row into the table: "event_incoming_webhooks"
  • insert_event_log_analysis: event_log_analysis_mutation_response - insert data into the table: "event_log_analysis"
  • insert_event_log_analysis_one: event_log_analysis - insert a single row into the table: "event_log_analysis"
  • insert_event_log_analysis_status: event_log_analysis_status_mutation_response - insert data into the table: "event_log_analysis_status"
  • insert_event_log_analysis_status_one: event_log_analysis_status - insert a single row into the table: "event_log_analysis_status"
  • insert_event_resolution: event_resolution_mutation_response - insert data into the table: "event_resolution"
  • insert_event_resolution_one: event_resolution - insert a single row into the table: "event_resolution"
  • insert_event_rule_severity: event_rule_severity_mutation_response - insert data into the table: "event_rule_severity"
  • insert_event_rule_severity_one: event_rule_severity - insert a single row into the table: "event_rule_severity"
  • insert_event_rule_source: event_rule_source_mutation_response - insert data into the table: "event_rule_source"
  • insert_event_rule_source_one: event_rule_source - insert a single row into the table: "event_rule_source"
  • insert_event_rules: event_rules_mutation_response - insert data into the table: "event_rules"
  • insert_event_rules_one: event_rules - insert a single row into the table: "event_rules"
  • insert_event_severity: event_severity_mutation_response - insert data into the table: "event_severity"
  • insert_event_severity_one: event_severity - insert a single row into the table: "event_severity"
  • insert_event_source: event_source_mutation_response - insert data into the table: "event_source"
  • insert_event_source_one: event_source - insert a single row into the table: "event_source"
  • insert_event_status: event_status_mutation_response - insert data into the table: "event_status"
  • insert_event_status_one: event_status - insert a single row into the table: "event_status"
  • insert_event_triage_rules: event_triage_rules_mutation_response - insert data into the table: "event_triage_rules"
  • insert_event_triage_rules_one: event_triage_rules - insert a single row into the table: "event_triage_rules"
  • insert_events: events_mutation_response - insert data into the table: "events"
  • insert_events_one: events - insert a single row into the table: "events"
  • insert_feature: feature_mutation_response - insert data into the table: "feature"
  • insert_feature_flag: feature_flag_mutation_response - insert data into the table: "feature_flag"
  • insert_feature_flag_one: feature_flag - insert a single row into the table: "feature_flag"
  • insert_feature_one: feature - insert a single row into the table: "feature"
  • insert_funding_sources: funding_sources_mutation_response - insert data into the table: "funding_sources"
  • insert_funding_sources_one: funding_sources - insert a single row into the table: "funding_sources"
  • insert_group_roles: group_roles_mutation_response - insert data into the table: "group_roles"
  • insert_group_roles_one: group_roles - insert a single row into the table: "group_roles"
  • insert_insight: insight_mutation_response - insert data into the table: "insight"
  • insert_insight_one: insight - insert a single row into the table: "insight"
  • insert_insight_severity: insight_severity_mutation_response - insert data into the table: "insight_severity"
  • insert_insight_severity_one: insight_severity - insert a single row into the table: "insight_severity"
  • insert_integration_categories: integration_categories_mutation_response - insert data into the table: "integration_categories"
  • insert_integration_categories_one: integration_categories - insert a single row into the table: "integration_categories"
  • insert_integration_config_values: integration_config_values_mutation_response - insert data into the table: "integration_config_values"
  • insert_integration_config_values_one: integration_config_values - insert a single row into the table: "integration_config_values"
  • insert_integration_sources: integration_sources_mutation_response - insert data into the table: "integration_sources"
  • insert_integration_sources_one: integration_sources - insert a single row into the table: "integration_sources"
  • insert_integration_statuses: integration_statuses_mutation_response - insert data into the table: "integration_statuses"
  • insert_integration_statuses_one: integration_statuses - insert a single row into the table: "integration_statuses"
  • insert_integration_types: integration_types_mutation_response - insert data into the table: "integration_types"
  • insert_integration_types_one: integration_types - insert a single row into the table: "integration_types"
  • insert_integrations: integrations_mutation_response - insert data into the table: "integrations"
  • insert_integrations_cloud_accounts: integrations_cloud_accounts_mutation_response - insert data into the table: "integrations_cloud_accounts"
  • insert_integrations_cloud_accounts_one: integrations_cloud_accounts - insert a single row into the table: "integrations_cloud_accounts"
  • insert_integrations_one: integrations - insert a single row into the table: "integrations"
  • insert_jira_configurations: jira_configurations_mutation_response - insert data into the table: "jira_configurations"
  • insert_jira_configurations_one: jira_configurations - insert a single row into the table: "jira_configurations"
  • insert_k8s_namespaces: k8s_namespaces_mutation_response - insert data into the table: "k8s_namespaces"
  • insert_k8s_namespaces_one: k8s_namespaces - insert a single row into the table: "k8s_namespaces"
  • insert_k8s_nodes: k8s_nodes_mutation_response - insert data into the table: "k8s_nodes"
  • insert_k8s_nodes_one: k8s_nodes - insert a single row into the table: "k8s_nodes"
  • insert_k8s_pods: k8s_pods_mutation_response - insert data into the table: "k8s_pods"
  • insert_k8s_pods_one: k8s_pods - insert a single row into the table: "k8s_pods"
  • insert_k8s_workloads: k8s_workloads_mutation_response - insert data into the table: "k8s_workloads"
  • insert_k8s_workloads_one: k8s_workloads - insert a single row into the table: "k8s_workloads"
  • insert_knowledge_base: knowledge_base_mutation_response - insert data into the table: "knowledge_base"
  • insert_knowledge_base_one: knowledge_base - insert a single row into the table: "knowledge_base"
  • insert_knowledge_graph_edge: knowledge_graph_edge_mutation_response - insert data into the table: "knowledge_graph_edge"
  • insert_knowledge_graph_edge_one: knowledge_graph_edge - insert a single row into the table: "knowledge_graph_edge"
  • insert_knowledge_graph_metadata: knowledge_graph_metadata_mutation_response - insert data into the table: "knowledge_graph_metadata"
  • insert_knowledge_graph_metadata_one: knowledge_graph_metadata - insert a single row into the table: "knowledge_graph_metadata"
  • insert_knowledge_graph_node: knowledge_graph_node_mutation_response - insert data into the table: "knowledge_graph_node"
  • insert_knowledge_graph_node_one: knowledge_graph_node - insert a single row into the table: "knowledge_graph_node"
  • insert_knowledge_graph_relationship_types: knowledge_graph_relationship_types_mutation_response - insert data into the table: "knowledge_graph_relationship_types"
  • insert_knowledge_graph_relationship_types_one: knowledge_graph_relationship_types - insert a single row into the table: "knowledge_graph_relationship_types"
  • insert_knowledge_graph_tenant_filters: knowledge_graph_tenant_filters_mutation_response - insert data into the table: "knowledge_graph_tenant_filters"
  • insert_knowledge_graph_tenant_filters_one: knowledge_graph_tenant_filters - insert a single row into the table: "knowledge_graph_tenant_filters"
  • insert_llm_agents: llm_agents_mutation_response - insert data into the table: "llm_agents"
  • insert_llm_agents_installation: llm_agents_installation_mutation_response - insert data into the table: "llm_agents_installation"
  • insert_llm_agents_installation_one: llm_agents_installation - insert a single row into the table: "llm_agents_installation"
  • insert_llm_agents_one: llm_agents - insert a single row into the table: "llm_agents"
  • insert_llm_conversation_agent: llm_conversation_agent_mutation_response - insert data into the table: "llm_conversation_agent"
  • insert_llm_conversation_agent_critiques: llm_conversation_agent_critiques_mutation_response - insert data into the table: "llm_conversation_agent_critiques"
  • insert_llm_conversation_agent_critiques_one: llm_conversation_agent_critiques - insert a single row into the table: "llm_conversation_agent_critiques"
  • insert_llm_conversation_agent_one: llm_conversation_agent - insert a single row into the table: "llm_conversation_agent"
  • insert_llm_conversation_feedback: llm_conversation_feedback_mutation_response - insert data into the table: "llm_conversation_feedback"
  • insert_llm_conversation_feedback_one: llm_conversation_feedback - insert a single row into the table: "llm_conversation_feedback"
  • insert_llm_conversation_history: llm_conversation_history_mutation_response - insert data into the table: "llm_conversation_history"
  • insert_llm_conversation_history_one: llm_conversation_history - insert a single row into the table: "llm_conversation_history"
  • insert_llm_conversation_messages: llm_conversation_messages_mutation_response - insert data into the table: "llm_conversation_messages"
  • insert_llm_conversation_messages_one: llm_conversation_messages - insert a single row into the table: "llm_conversation_messages"
  • insert_llm_conversation_saved: llm_conversation_saved_mutation_response - insert data into the table: "llm_conversation_saved"
  • insert_llm_conversation_saved_one: llm_conversation_saved - insert a single row into the table: "llm_conversation_saved"
  • insert_llm_conversation_tool_calls: llm_conversation_tool_calls_mutation_response - insert data into the table: "llm_conversation_tool_calls"
  • insert_llm_conversation_tool_calls_one: llm_conversation_tool_calls - insert a single row into the table: "llm_conversation_tool_calls"
  • insert_llm_conversations: llm_conversations_mutation_response - insert data into the table: "llm_conversations"
  • insert_llm_conversations_one: llm_conversations - insert a single row into the table: "llm_conversations"
  • insert_llm_functions: llm_functions_mutation_response - insert data into the table: "llm_functions"
  • insert_llm_functions_one: llm_functions - insert a single row into the table: "llm_functions"
  • insert_llm_model_pricing: llm_model_pricing_mutation_response - insert data into the table: "llm_model_pricing"
  • insert_llm_model_pricing_one: llm_model_pricing - insert a single row into the table: "llm_model_pricing"
  • insert_llm_rag_audit: llm_rag_audit_mutation_response - insert data into the table: "llm_rag_audit"
  • insert_llm_rag_audit_one: llm_rag_audit - insert a single row into the table: "llm_rag_audit"
  • insert_llm_rags: llm_rags_mutation_response - insert data into the table: "llm_rags"
  • insert_llm_rags_one: llm_rags - insert a single row into the table: "llm_rags"
  • insert_marketplace_customers: marketplace_customers_mutation_response - insert data into the table: "marketplace_customers"
  • insert_marketplace_customers_one: marketplace_customers - insert a single row into the table: "marketplace_customers"
  • insert_messaging_platforms: messaging_platforms_mutation_response - insert data into the table: "messaging_platforms"
  • insert_messaging_platforms_one: messaging_platforms - insert a single row into the table: "messaging_platforms"
  • insert_messaging_platforms_type: messaging_platforms_type_mutation_response - insert data into the table: "messaging_platforms_type"
  • insert_messaging_platforms_type_one: messaging_platforms_type - insert a single row into the table: "messaging_platforms_type"
  • insert_metrics_summary: metrics_summary_mutation_response - insert data into the table: "metrics_summary"
  • insert_metrics_summary_one: metrics_summary - insert a single row into the table: "metrics_summary"
  • insert_ms_teams_channels: ms_teams_channels_mutation_response - insert data into the table: "ms_teams_channels"
  • insert_ms_teams_channels_one: ms_teams_channels - insert a single row into the table: "ms_teams_channels"
  • insert_notification_channel_account_mappings: notification_channel_account_mappings_mutation_response - insert data into the table: "notification_channel_account_mappings"
  • insert_notification_channel_account_mappings_one: notification_channel_account_mappings - insert a single row into the table: "notification_channel_account_mappings"
  • insert_notification_platform_types: notification_platform_types_mutation_response - insert data into the table: "notification_platform_types"
  • insert_notification_platform_types_one: notification_platform_types - insert a single row into the table: "notification_platform_types"
  • insert_notification_rule_mappings: notification_rule_mappings_mutation_response - insert data into the table: "notification_rule_mappings"
  • insert_notification_rule_mappings_one: notification_rule_mappings - insert a single row into the table: "notification_rule_mappings"
  • insert_notification_rules: notification_rules_mutation_response - insert data into the table: "notification_rules"
  • insert_notification_rules_one: notification_rules - insert a single row into the table: "notification_rules"
  • insert_notification_severity_type: notification_severity_type_mutation_response - insert data into the table: "notification_severity_type"
  • insert_notification_severity_type_one: notification_severity_type - insert a single row into the table: "notification_severity_type"
  • insert_notification_source_type: notification_source_type_mutation_response - insert data into the table: "notification_source_type"
  • insert_notification_source_type_one: notification_source_type - insert a single row into the table: "notification_source_type"
  • insert_notification_user: notification_user_mutation_response - insert data into the table: "notification_user"
  • insert_notification_user_one: notification_user - insert a single row into the table: "notification_user"
  • insert_notification_user_status_type: notification_user_status_type_mutation_response - insert data into the table: "notification_user_status_type"
  • insert_notification_user_status_type_one: notification_user_status_type - insert a single row into the table: "notification_user_status_type"
  • insert_notifications: notifications_mutation_response - insert data into the table: "notifications"
  • insert_notifications_delivery_mode_type: notifications_delivery_mode_type_mutation_response - insert data into the table: "notifications_delivery_mode_type"
  • insert_notifications_delivery_mode_type_one: notifications_delivery_mode_type - insert a single row into the table: "notifications_delivery_mode_type"
  • insert_notifications_frequency_type: notifications_frequency_type_mutation_response - insert data into the table: "notifications_frequency_type"
  • insert_notifications_frequency_type_one: notifications_frequency_type - insert a single row into the table: "notifications_frequency_type"
  • insert_notifications_one: notifications - insert a single row into the table: "notifications"
  • insert_project_accounts: project_accounts_mutation_response - insert data into the table: "project_accounts"
  • insert_project_accounts_one: project_accounts - insert a single row into the table: "project_accounts"
  • insert_project_category_type: project_category_type_mutation_response - insert data into the table: "project_category_type"
  • insert_project_category_type_one: project_category_type - insert a single row into the table: "project_category_type"
  • insert_project_cloud_resources: project_cloud_resources_mutation_response - insert data into the table: "project_cloud_resources"
  • insert_project_cloud_resources_one: project_cloud_resources - insert a single row into the table: "project_cloud_resources"
  • insert_project_fundings: project_fundings_mutation_response - insert data into the table: "project_fundings"
  • insert_project_fundings_one: project_fundings - insert a single row into the table: "project_fundings"
  • insert_project_users: project_users_mutation_response - insert data into the table: "project_users"
  • insert_project_users_one: project_users - insert a single row into the table: "project_users"
  • insert_projects: projects_mutation_response - insert data into the table: "projects"
  • insert_projects_one: projects - insert a single row into the table: "projects"
  • insert_recommendation: recommendation_mutation_response - insert data into the table: "recommendation"
  • insert_recommendation_action_type: recommendation_action_type_mutation_response - insert data into the table: "recommendation_action_type"
  • insert_recommendation_action_type_one: recommendation_action_type - insert a single row into the table: "recommendation_action_type"
  • insert_recommendation_category_type: recommendation_category_type_mutation_response - insert data into the table: "recommendation_category_type"
  • insert_recommendation_category_type_one: recommendation_category_type - insert a single row into the table: "recommendation_category_type"
  • insert_recommendation_one: recommendation - insert a single row into the table: "recommendation"
  • insert_recommendation_resolution: recommendation_resolution_mutation_response - insert data into the table: "recommendation_resolution"
  • insert_recommendation_resolution_one: recommendation_resolution - insert a single row into the table: "recommendation_resolution"
  • insert_recommendation_severity_type: recommendation_severity_type_mutation_response - insert data into the table: "recommendation_severity_type"
  • insert_recommendation_severity_type_one: recommendation_severity_type - insert a single row into the table: "recommendation_severity_type"
  • insert_recommendation_status_type: recommendation_status_type_mutation_response - insert data into the table: "recommendation_status_type"
  • insert_recommendation_status_type_one: recommendation_status_type - insert a single row into the table: "recommendation_status_type"
  • insert_roles: roles_mutation_response - insert data into the table: "roles"
  • insert_roles_one: roles - insert a single row into the table: "roles"
  • insert_runbook_action: runbook_action_mutation_response - insert data into the table: "runbook_action"
  • insert_runbook_action_library: runbook_action_library_mutation_response - insert data into the table: "runbook_action_library"
  • insert_runbook_action_library_one: runbook_action_library - insert a single row into the table: "runbook_action_library"
  • insert_runbook_action_one: runbook_action - insert a single row into the table: "runbook_action"
  • insert_runbook_action_status: runbook_action_status_mutation_response - insert data into the table: "runbook_action_status"
  • insert_runbook_action_status_one: runbook_action_status - insert a single row into the table: "runbook_action_status"
  • insert_runbook_task_output: runbook_task_output_mutation_response - insert data into the table: "runbook_task_output"
  • insert_runbook_task_output_one: runbook_task_output - insert a single row into the table: "runbook_task_output"
  • insert_schedule_unit_type: schedule_unit_type_mutation_response - insert data into the table: "schedule_unit_type"
  • insert_schedule_unit_type_one: schedule_unit_type - insert a single row into the table: "schedule_unit_type"
  • insert_sent_notifications: sent_notifications_mutation_response - insert data into the table: "sent_notifications"
  • insert_sent_notifications_one: sent_notifications - insert a single row into the table: "sent_notifications"
  • insert_slack_bots: slack_bots_mutation_response - insert data into the table: "slack_bots"
  • insert_slack_bots_one: slack_bots - insert a single row into the table: "slack_bots"
  • insert_slack_oauth_states: slack_oauth_states_mutation_response - insert data into the table: "slack_oauth_states"
  • insert_slack_oauth_states_one: slack_oauth_states - insert a single row into the table: "slack_oauth_states"
  • insert_slo_config: slo_config_mutation_response - insert data into the table: "slo_config"
  • insert_slo_config_one: slo_config - insert a single row into the table: "slo_config"
  • insert_slo_report: slo_report_mutation_response - insert data into the table: "slo_report"
  • insert_slo_report_one: slo_report - insert a single row into the table: "slo_report"
  • insert_slo_status: slo_status_mutation_response - insert data into the table: "slo_status"
  • insert_slo_status_one: slo_status - insert a single row into the table: "slo_status"
  • insert_spends: spends_mutation_response - insert data into the table: "spends"
  • insert_spends_one: spends - insert a single row into the table: "spends"
  • insert_spends_resource_group_type: spends_resource_group_type_mutation_response - insert data into the table: "spends_resource_group_type"
  • insert_spends_resource_group_type_one: spends_resource_group_type - insert a single row into the table: "spends_resource_group_type"
  • insert_tenant: tenant_mutation_response - insert data into the table: "tenant"
  • insert_tenant_attrs: tenant_attrs_mutation_response - insert data into the table: "tenant_attrs"
  • insert_tenant_attrs_one: tenant_attrs - insert a single row into the table: "tenant_attrs"
  • insert_tenant_onboarding: tenant_onboarding_mutation_response - insert data into the table: "tenant_onboarding"
  • insert_tenant_onboarding_one: tenant_onboarding - insert a single row into the table: "tenant_onboarding"
  • insert_tenant_one: tenant - insert a single row into the table: "tenant"
  • insert_tenant_type: tenant_type_mutation_response - insert data into the table: "tenant_type"
  • insert_tenant_type_one: tenant_type - insert a single row into the table: "tenant_type"
  • insert_tenant_users: tenant_users_mutation_response - insert data into the table: "tenant_users"
  • insert_tenant_users_one: tenant_users - insert a single row into the table: "tenant_users"
  • insert_ticket_severity_type: ticket_severity_type_mutation_response - insert data into the table: "ticket_severity_type"
  • insert_ticket_severity_type_one: ticket_severity_type - insert a single row into the table: "ticket_severity_type"
  • insert_ticket_source_type: ticket_source_type_mutation_response - insert data into the table: "ticket_source_type"
  • insert_ticket_source_type_one: ticket_source_type - insert a single row into the table: "ticket_source_type"
  • insert_ticket_tool_types: ticket_tool_types_mutation_response - insert data into the table: "ticket_tool_types"
  • insert_ticket_tool_types_one: ticket_tool_types - insert a single row into the table: "ticket_tool_types"
  • insert_tickets: tickets_mutation_response - insert data into the table: "tickets"
  • insert_tickets_one: tickets - insert a single row into the table: "tickets"
  • insert_upgrade_plan: upgrade_plan_mutation_response - insert data into the table: "upgrade_plan"
  • insert_upgrade_plan_audit: upgrade_plan_audit_mutation_response - insert data into the table: "upgrade_plan_audit"
  • insert_upgrade_plan_audit_one: upgrade_plan_audit - insert a single row into the table: "upgrade_plan_audit"
  • insert_upgrade_plan_one: upgrade_plan - insert a single row into the table: "upgrade_plan"
  • insert_upgrade_plan_status_type: upgrade_plan_status_type_mutation_response - insert data into the table: "upgrade_plan_status_type"
  • insert_upgrade_plan_status_type_one: upgrade_plan_status_type - insert a single row into the table: "upgrade_plan_status_type"
  • insert_upgrade_plan_steps: upgrade_plan_steps_mutation_response - insert data into the table: "upgrade_plan_steps"
  • insert_upgrade_plan_steps_one: upgrade_plan_steps - insert a single row into the table: "upgrade_plan_steps"
  • insert_upgrade_plan_tasks: upgrade_plan_tasks_mutation_response - insert data into the table: "upgrade_plan_tasks"
  • insert_upgrade_plan_tasks_one: upgrade_plan_tasks - insert a single row into the table: "upgrade_plan_tasks"
  • insert_user_attrs: user_attrs_mutation_response - insert data into the table: "user_attrs"
  • insert_user_attrs_one: user_attrs - insert a single row into the table: "user_attrs"
  • insert_user_auths: user_auths_mutation_response - insert data into the table: "user_auths"
  • insert_user_auths_one: user_auths - insert a single row into the table: "user_auths"
  • insert_user_groups: user_groups_mutation_response - insert data into the table: "user_groups"
  • insert_user_groups_one: user_groups - insert a single row into the table: "user_groups"
  • insert_user_history: user_history_mutation_response - insert data into the table: "user_history"
  • insert_user_history_one: user_history - insert a single row into the table: "user_history"
  • insert_user_roles: user_roles_mutation_response - insert data into the table: "user_roles"
  • insert_user_roles_one: user_roles - insert a single row into the table: "user_roles"
  • insert_user_status_type: user_status_type_mutation_response - insert data into the table: "user_status_type"
  • insert_user_status_type_one: user_status_type - insert a single row into the table: "user_status_type"
  • insert_usergroup_users: usergroup_users_mutation_response - insert data into the table: "usergroup_users"
  • insert_usergroup_users_one: usergroup_users - insert a single row into the table: "usergroup_users"
  • insert_users: users_mutation_response - insert data into the table: "users"
  • insert_users_one: users - insert a single row into the table: "users"
  • integrations_create_config: CreateIntegrationConfigResponse
  • integrations_delete_config: DeleteIntegrationConfigResponse
  • integrations_update_status: DeleteIntegrationConfigResponse
  • kg_get_complete_graph: kg_get_complete_graph_output - get knowledge graph for tenant
  • list_insights: InsightResponse
  • logs_get_query: FetchLogQueryOutput - logs_get_query
  • notification_rule_upsert_one: notification_rule_mapping_output
  • recommendation_export: ExportRecommendationResponse
  • recommendation_job_create: recommendation_job_create_output
  • runbook_action_status: runbook_action_status_output - action to change status of runbook action
  • security_scan_image: security_scan_image_output
  • slo_config_create: SLOResponse
  • slo_config_list: SLOConfigListResponse
  • slo_config_update: SLOUpdateConfigResponse
  • tenant_attribute_upsert: [TenantAttributeResponse!]! - upsert tenant attributes
  • tenant_insert_one: tenant_insert_one_output
  • ticket_add_comment: TicketComments!
  • ticket_integration_create_config: ticket_integration_create_config_output!
  • tickets_insert_one: tickets_insert_one_output!
  • traces_service_map: ServiceMapResponse
  • trigger_anomaly_execute: TriggerAnomalyExecuteResponse
  • update_account_env_type: account_env_type_mutation_response - update data of the table: "account_env_type"
  • update_account_env_type_by_pk: account_env_type - update single row of the table: "account_env_type"
  • update_account_env_type_many: [account_env_type_mutation_response] - update multiples rows of table: "account_env_type"
  • update_account_purpose_type: account_purpose_type_mutation_response - update data of the table: "account_purpose_type"
  • update_account_purpose_type_by_pk: account_purpose_type - update single row of the table: "account_purpose_type"
  • update_account_purpose_type_many: [account_purpose_type_mutation_response] - update multiples rows of table: "account_purpose_type"
  • update_active_resources: active_resources_mutation_response - update data of the table: "active_resources"
  • update_active_resources_by_pk: active_resources - update single row of the table: "active_resources"
  • update_active_resources_many: [active_resources_mutation_response] - update multiples rows of table: "active_resources"
  • update_agent: agent_mutation_response - update data of the table: "agent"
  • update_agent_audit_log: agent_audit_log_mutation_response - update data of the table: "agent_audit_log"
  • update_agent_audit_log_by_pk: agent_audit_log - update single row of the table: "agent_audit_log"
  • update_agent_audit_log_many: [agent_audit_log_mutation_response] - update multiples rows of table: "agent_audit_log"
  • update_agent_by_pk: agent - update single row of the table: "agent"
  • update_agent_many: [agent_mutation_response] - update multiples rows of table: "agent"
  • update_agent_playbook: agent_playbook_mutation_response - update data of the table: "agent_playbook"
  • update_agent_playbook_action: agent_playbook_action_mutation_response - update data of the table: "agent_playbook_action"
  • update_agent_playbook_action_by_pk: agent_playbook_action - update single row of the table: "agent_playbook_action"
  • update_agent_playbook_action_many: [agent_playbook_action_mutation_response] - update multiples rows of table: "agent_playbook_action"
  • update_agent_playbook_by_pk: agent_playbook - update single row of the table: "agent_playbook"
  • update_agent_playbook_many: [agent_playbook_mutation_response] - update multiples rows of table: "agent_playbook"
  • update_agent_playbook_processor: agent_playbook_processor_mutation_response - update data of the table: "agent_playbook_processor"
  • update_agent_playbook_processor_by_pk: agent_playbook_processor - update single row of the table: "agent_playbook_processor"
  • update_agent_playbook_processor_many: [agent_playbook_processor_mutation_response] - update multiples rows of table: "agent_playbook_processor"
  • update_agent_playbook_source: agent_playbook_source_mutation_response - update data of the table: "agent_playbook_source"
  • update_agent_playbook_source_by_pk: agent_playbook_source - update single row of the table: "agent_playbook_source"
  • update_agent_playbook_source_many: [agent_playbook_source_mutation_response] - update multiples rows of table: "agent_playbook_source"
  • update_agent_playbook_trigger: agent_playbook_trigger_mutation_response - update data of the table: "agent_playbook_trigger"
  • update_agent_playbook_trigger_by_pk: agent_playbook_trigger - update single row of the table: "agent_playbook_trigger"
  • update_agent_playbook_trigger_many: [agent_playbook_trigger_mutation_response] - update multiples rows of table: "agent_playbook_trigger"
  • update_agent_task: agent_task_mutation_response - update data of the table: "agent_task"
  • update_agent_task_by_pk: agent_task - update single row of the table: "agent_task"
  • update_agent_task_many: [agent_task_mutation_response] - update multiples rows of table: "agent_task"
  • update_anomaly: anomaly_mutation_response - update data of the table: "anomaly"
  • update_anomaly_by_pk: anomaly - update single row of the table: "anomaly"
  • update_anomaly_change_operator: anomaly_change_operator_mutation_response - update data of the table: "anomaly_change_operator"
  • update_anomaly_change_operator_by_pk: anomaly_change_operator - update single row of the table: "anomaly_change_operator"
  • update_anomaly_change_operator_many: [anomaly_change_operator_mutation_response] - update multiples rows of table: "anomaly_change_operator"
  • update_anomaly_config: anomaly_config_mutation_response - update data of the table: "anomaly_config"
  • update_anomaly_config_by_pk: anomaly_config - update single row of the table: "anomaly_config"
  • update_anomaly_config_many: [anomaly_config_mutation_response] - update multiples rows of table: "anomaly_config"
  • update_anomaly_config_type: anomaly_config_type_mutation_response - update data of the table: "anomaly_config_type"
  • update_anomaly_config_type_by_pk: anomaly_config_type - update single row of the table: "anomaly_config_type"
  • update_anomaly_config_type_many: [anomaly_config_type_mutation_response] - update multiples rows of table: "anomaly_config_type"
  • update_anomaly_many: [anomaly_mutation_response] - update multiples rows of table: "anomaly"
  • update_anomaly_type: anomaly_type_mutation_response - update data of the table: "anomaly_type"
  • update_anomaly_type_by_pk: anomaly_type - update single row of the table: "anomaly_type"
  • update_anomaly_type_many: [anomaly_type_mutation_response] - update multiples rows of table: "anomaly_type"
  • update_application_group: application_group_mutation_response - update data of the table: "application_group"
  • update_application_group_by_pk: application_group - update single row of the table: "application_group"
  • update_application_group_many: [application_group_mutation_response] - update multiples rows of table: "application_group"
  • update_application_group_mapping: application_group_mapping_mutation_response - update data of the table: "application_group_mapping"
  • update_application_group_mapping_by_pk: application_group_mapping - update single row of the table: "application_group_mapping"
  • update_application_group_mapping_many: [application_group_mapping_mutation_response] - update multiples rows of table: "application_group_mapping"
  • update_application_profile: application_profile_mutation_response - update data of the table: "application_profile"
  • update_application_profile_by_pk: application_profile - update single row of the table: "application_profile"
  • update_application_profile_many: [application_profile_mutation_response] - update multiples rows of table: "application_profile"
  • update_audit: audit_mutation_response - update data of the table: "audit"
  • update_audit_by_pk: audit - update single row of the table: "audit"
  • update_audit_many: [audit_mutation_response] - update multiples rows of table: "audit"
  • update_auth_provider_type: auth_provider_type_mutation_response - update data of the table: "auth_provider_type"
  • update_auth_provider_type_by_pk: auth_provider_type - update single row of the table: "auth_provider_type"
  • update_auth_provider_type_many: [auth_provider_type_mutation_response] - update multiples rows of table: "auth_provider_type"
  • update_auth_type: auth_type_mutation_response - update data of the table: "auth_type"
  • update_auth_type_by_pk: auth_type - update single row of the table: "auth_type"
  • update_auth_type_many: [auth_type_mutation_response] - update multiples rows of table: "auth_type"
  • update_auto_optimize_resource_map: auto_optimize_resource_map_mutation_response - update data of the table: "auto_optimize_resource_map"
  • update_auto_optimize_resource_map_by_pk: auto_optimize_resource_map - update single row of the table: "auto_optimize_resource_map"
  • update_auto_optimize_resource_map_many: [auto_optimize_resource_map_mutation_response] - update multiples rows of table: "auto_optimize_resource_map"
  • update_auto_pilot: auto_pilot_mutation_response - update data of the table: "auto_pilot"
  • update_auto_pilot_approval_policy: auto_pilot_approval_policy_mutation_response - update data of the table: "auto_pilot_approval_policy"
  • update_auto_pilot_approval_policy_by_pk: auto_pilot_approval_policy - update single row of the table: "auto_pilot_approval_policy"
  • update_auto_pilot_approval_policy_many: [auto_pilot_approval_policy_mutation_response] - update multiples rows of table: "auto_pilot_approval_policy"
  • update_auto_pilot_approval_status: auto_pilot_approval_status_mutation_response - update data of the table: "auto_pilot_approval_status"
  • update_auto_pilot_approval_status_by_pk: auto_pilot_approval_status - update single row of the table: "auto_pilot_approval_status"
  • update_auto_pilot_approval_status_many: [auto_pilot_approval_status_mutation_response] - update multiples rows of table: "auto_pilot_approval_status"
  • update_auto_pilot_approvals: auto_pilot_approvals_mutation_response - update data of the table: "auto_pilot_approvals"
  • update_auto_pilot_approvals_by_pk: auto_pilot_approvals - update single row of the table: "auto_pilot_approvals"
  • update_auto_pilot_approvals_many: [auto_pilot_approvals_mutation_response] - update multiples rows of table: "auto_pilot_approvals"
  • update_auto_pilot_by_pk: auto_pilot - update single row of the table: "auto_pilot"
  • update_auto_pilot_category: auto_pilot_category_mutation_response - update data of the table: "auto_pilot_category"
  • update_auto_pilot_category_by_pk: auto_pilot_category - update single row of the table: "auto_pilot_category"
  • update_auto_pilot_category_many: [auto_pilot_category_mutation_response] - update multiples rows of table: "auto_pilot_category"
  • update_auto_pilot_execution_status: auto_pilot_execution_status_mutation_response - update data of the table: "auto_pilot_execution_status"
  • update_auto_pilot_execution_status_by_pk: auto_pilot_execution_status - update single row of the table: "auto_pilot_execution_status"
  • update_auto_pilot_execution_status_many: [auto_pilot_execution_status_mutation_response] - update multiples rows of table: "auto_pilot_execution_status"
  • update_auto_pilot_many: [auto_pilot_mutation_response] - update multiples rows of table: "auto_pilot"
  • update_auto_pilot_policy: UpdateApprovalOutput - update auto pilot approval policy
  • update_auto_pilot_reviewee: auto_pilot_reviewee_mutation_response - update data of the table: "auto_pilot_reviewee"
  • update_auto_pilot_reviewee_by_pk: auto_pilot_reviewee - update single row of the table: "auto_pilot_reviewee"
  • update_auto_pilot_reviewee_many: [auto_pilot_reviewee_mutation_response] - update multiples rows of table: "auto_pilot_reviewee"
  • update_auto_pilot_reviewers: auto_pilot_reviewers_mutation_response - update data of the table: "auto_pilot_reviewers"
  • update_auto_pilot_reviewers_by_pk: auto_pilot_reviewers - update single row of the table: "auto_pilot_reviewers"
  • update_auto_pilot_reviewers_many: [auto_pilot_reviewers_mutation_response] - update multiples rows of table: "auto_pilot_reviewers"
  • update_auto_pilot_status: auto_pilot_status_mutation_response - update data of the table: "auto_pilot_status"
  • update_auto_pilot_status_by_pk: auto_pilot_status - update single row of the table: "auto_pilot_status"
  • update_auto_pilot_status_many: [auto_pilot_status_mutation_response] - update multiples rows of table: "auto_pilot_status"
  • update_auto_pilot_task: auto_pilot_task_mutation_response - update data of the table: "auto_pilot_task"
  • update_auto_pilot_task_by_pk: auto_pilot_task - update single row of the table: "auto_pilot_task"
  • update_auto_pilot_task_many: [auto_pilot_task_mutation_response] - update multiples rows of table: "auto_pilot_task"
  • update_auto_pilot_task_status: auto_pilot_task_status_mutation_response - update data of the table: "auto_pilot_task_status"
  • update_auto_pilot_task_status_by_pk: auto_pilot_task_status - update single row of the table: "auto_pilot_task_status"
  • update_auto_pilot_task_status_many: [auto_pilot_task_status_mutation_response] - update multiples rows of table: "auto_pilot_task_status"
  • update_auto_playbook: auto_playbook_mutation_response - update data of the table: "auto_playbook"
  • update_auto_playbook_actions: auto_playbook_actions_mutation_response - update data of the table: "auto_playbook_actions"
  • update_auto_playbook_actions_by_pk: auto_playbook_actions - update single row of the table: "auto_playbook_actions"
  • update_auto_playbook_actions_many: [auto_playbook_actions_mutation_response] - update multiples rows of table: "auto_playbook_actions"
  • update_auto_playbook_by_pk: auto_playbook - update single row of the table: "auto_playbook"
  • update_auto_playbook_execution_status: auto_playbook_execution_status_mutation_response - update data of the table: "auto_playbook_execution_status"
  • update_auto_playbook_execution_status_by_pk: auto_playbook_execution_status - update single row of the table: "auto_playbook_execution_status"
  • update_auto_playbook_execution_status_many: [auto_playbook_execution_status_mutation_response] - update multiples rows of table: "auto_playbook_execution_status"
  • update_auto_playbook_executions: auto_playbook_executions_mutation_response - update data of the table: "auto_playbook_executions"
  • update_auto_playbook_executions_by_pk: auto_playbook_executions - update single row of the table: "auto_playbook_executions"
  • update_auto_playbook_executions_many: [auto_playbook_executions_mutation_response] - update multiples rows of table: "auto_playbook_executions"
  • update_auto_playbook_many: [auto_playbook_mutation_response] - update multiples rows of table: "auto_playbook"
  • update_auto_playbook_status: auto_playbook_status_mutation_response - update data of the table: "auto_playbook_status"
  • update_auto_playbook_status_by_pk: auto_playbook_status - update single row of the table: "auto_playbook_status"
  • update_auto_playbook_status_many: [auto_playbook_status_mutation_response] - update multiples rows of table: "auto_playbook_status"
  • update_auto_playbook_task: auto_playbook_task_mutation_response - update data of the table: "auto_playbook_task"
  • update_auto_playbook_task_by_pk: auto_playbook_task - update single row of the table: "auto_playbook_task"
  • update_auto_playbook_task_many: [auto_playbook_task_mutation_response] - update multiples rows of table: "auto_playbook_task"
  • update_auto_playbook_task_status: auto_playbook_task_status_mutation_response - update data of the table: "auto_playbook_task_status"
  • update_auto_playbook_task_status_by_pk: auto_playbook_task_status - update single row of the table: "auto_playbook_task_status"
  • update_auto_playbook_task_status_many: [auto_playbook_task_status_mutation_response] - update multiples rows of table: "auto_playbook_task_status"
  • update_autopilot_attributes: autopilot_attributes_mutation_response - update data of the table: "autopilot_attributes"
  • update_autopilot_attributes_by_pk: autopilot_attributes - update single row of the table: "autopilot_attributes"
  • update_autopilot_attributes_many: [autopilot_attributes_mutation_response] - update multiples rows of table: "autopilot_attributes"
  • update_billing: billing_mutation_response - update data of the table: "billing"
  • update_billing_by_pk: billing - update single row of the table: "billing"
  • update_billing_many: [billing_mutation_response] - update multiples rows of table: "billing"
  • update_billing_usage_cost: billing_usage_cost_mutation_response - update data of the table: "billing_usage_cost"
  • update_billing_usage_cost_by_pk: billing_usage_cost - update single row of the table: "billing_usage_cost"
  • update_billing_usage_cost_many: [billing_usage_cost_mutation_response] - update multiples rows of table: "billing_usage_cost"
  • update_business_unit: business_unit_mutation_response - update data of the table: "business_unit"
  • update_business_unit_by_pk: business_unit - update single row of the table: "business_unit"
  • update_business_unit_many: [business_unit_mutation_response] - update multiples rows of table: "business_unit"
  • update_businessunit_funding: businessunit_funding_mutation_response - update data of the table: "businessunit_funding"
  • update_businessunit_funding_by_pk: businessunit_funding - update single row of the table: "businessunit_funding"
  • update_businessunit_funding_many: [businessunit_funding_mutation_response] - update multiples rows of table: "businessunit_funding"
  • update_businessunit_users: businessunit_users_mutation_response - update data of the table: "businessunit_users"
  • update_businessunit_users_by_pk: businessunit_users - update single row of the table: "businessunit_users"
  • update_businessunit_users_many: [businessunit_users_mutation_response] - update multiples rows of table: "businessunit_users"
  • update_cloud_account_attrs: cloud_account_attrs_mutation_response - update data of the table: "cloud_account_attrs"
  • update_cloud_account_attrs_by_pk: cloud_account_attrs - update single row of the table: "cloud_account_attrs"
  • update_cloud_account_attrs_many: [cloud_account_attrs_mutation_response] - update multiples rows of table: "cloud_account_attrs"
  • update_cloud_account_onboarding_errors: cloud_account_onboarding_errors_mutation_response - update data of the table: "cloud_account_onboarding_errors"
  • update_cloud_account_onboarding_errors_by_pk: cloud_account_onboarding_errors - update single row of the table: "cloud_account_onboarding_errors"
  • update_cloud_account_onboarding_errors_many: [cloud_account_onboarding_errors_mutation_response] - update multiples rows of table: "cloud_account_onboarding_errors"
  • update_cloud_account_score: cloud_account_score_mutation_response - update data of the table: "cloud_account_score"
  • update_cloud_account_score_by_pk: cloud_account_score - update single row of the table: "cloud_account_score"
  • update_cloud_account_score_many: [cloud_account_score_mutation_response] - update multiples rows of table: "cloud_account_score"
  • update_cloud_account_status_type: cloud_account_status_type_mutation_response - update data of the table: "cloud_account_status_type"
  • update_cloud_account_status_type_by_pk: cloud_account_status_type - update single row of the table: "cloud_account_status_type"
  • update_cloud_account_status_type_many: [cloud_account_status_type_mutation_response] - update multiples rows of table: "cloud_account_status_type"
  • update_cloud_account_sync_status_type: cloud_account_sync_status_type_mutation_response - update data of the table: "cloud_account_sync_status_type"
  • update_cloud_account_sync_status_type_by_pk: cloud_account_sync_status_type - update single row of the table: "cloud_account_sync_status_type"
  • update_cloud_account_sync_status_type_many: [cloud_account_sync_status_type_mutation_response] - update multiples rows of table: "cloud_account_sync_status_type"
  • update_cloud_accounts: cloud_accounts_mutation_response - update data of the table: "cloud_accounts"
  • update_cloud_accounts_by_pk: cloud_accounts - update single row of the table: "cloud_accounts"
  • update_cloud_accounts_many: [cloud_accounts_mutation_response] - update multiples rows of table: "cloud_accounts"
  • update_cloud_api_permission_errors: cloud_api_permission_errors_mutation_response - update data of the table: "cloud_api_permission_errors"
  • update_cloud_api_permission_errors_by_pk: cloud_api_permission_errors - update single row of the table: "cloud_api_permission_errors"
  • update_cloud_api_permission_errors_many: [cloud_api_permission_errors_mutation_response] - update multiples rows of table: "cloud_api_permission_errors"
  • update_cloud_provider_type: cloud_provider_type_mutation_response - update data of the table: "cloud_provider_type"
  • update_cloud_provider_type_by_pk: cloud_provider_type - update single row of the table: "cloud_provider_type"
  • update_cloud_provider_type_many: [cloud_provider_type_mutation_response] - update multiples rows of table: "cloud_provider_type"
  • update_cloud_resource_attributes: cloud_resource_attributes_mutation_response - update data of the table: "cloud_resource_attributes"
  • update_cloud_resource_attributes_by_pk: cloud_resource_attributes - update single row of the table: "cloud_resource_attributes"
  • update_cloud_resource_attributes_many: [cloud_resource_attributes_mutation_response] - update multiples rows of table: "cloud_resource_attributes"
  • update_cloud_resource_details: cloud_resource_details_mutation_response - update data of the table: "cloud_resource_details"
  • update_cloud_resource_details_by_pk: cloud_resource_details - update single row of the table: "cloud_resource_details"
  • update_cloud_resource_details_many: [cloud_resource_details_mutation_response] - update multiples rows of table: "cloud_resource_details"
  • update_cloud_resource_metrics: cloud_resource_metrics_mutation_response - update data of the table: "cloud_resource_metrics"
  • update_cloud_resource_metrics_by_pk: cloud_resource_metrics - update single row of the table: "cloud_resource_metrics"
  • update_cloud_resource_metrics_many: [cloud_resource_metrics_mutation_response] - update multiples rows of table: "cloud_resource_metrics"
  • update_cloud_resource_status_type: cloud_resource_status_type_mutation_response - update data of the table: "cloud_resource_status_type"
  • update_cloud_resource_status_type_by_pk: cloud_resource_status_type - update single row of the table: "cloud_resource_status_type"
  • update_cloud_resource_status_type_many: [cloud_resource_status_type_mutation_response] - update multiples rows of table: "cloud_resource_status_type"
  • update_cloud_resourses: cloud_resourses_mutation_response - update data of the table: "cloud_resourses"
  • update_cloud_resourses_by_pk: cloud_resourses - update single row of the table: "cloud_resourses"
  • update_cloud_resourses_many: [cloud_resourses_mutation_response] - update multiples rows of table: "cloud_resourses"
  • update_configuration_store: configuration_store_mutation_response - update data of the table: "configuration_store"
  • update_configuration_store_by_pk: configuration_store - update single row of the table: "configuration_store"
  • update_configuration_store_many: [configuration_store_mutation_response] - update multiples rows of table: "configuration_store"
  • update_db_type: db_type_mutation_response - update data of the table: "db_type"
  • update_db_type_by_pk: db_type - update single row of the table: "db_type"
  • update_db_type_many: [db_type_mutation_response] - update multiples rows of table: "db_type"
  • update_dw_pipe: dw_pipe_mutation_response - update data of the table: "dw_pipe"
  • update_dw_pipe_by_pk: dw_pipe - update single row of the table: "dw_pipe"
  • update_dw_pipe_many: [dw_pipe_mutation_response] - update multiples rows of table: "dw_pipe"
  • update_dw_pipe_usage: dw_pipe_usage_mutation_response - update data of the table: "dw_pipe_usage"
  • update_dw_pipe_usage_by_pk: dw_pipe_usage - update single row of the table: "dw_pipe_usage"
  • update_dw_pipe_usage_many: [dw_pipe_usage_mutation_response] - update multiples rows of table: "dw_pipe_usage"
  • update_dw_queries: dw_queries_mutation_response - update data of the table: "dw_queries"
  • update_dw_queries_by_pk: dw_queries - update single row of the table: "dw_queries"
  • update_dw_queries_many: [dw_queries_mutation_response] - update multiples rows of table: "dw_queries"
  • update_dw_query_profile_data: dw_query_profile_data_mutation_response - update data of the table: "dw_query_profile_data"
  • update_dw_query_profile_data_by_pk: dw_query_profile_data - update single row of the table: "dw_query_profile_data"
  • update_dw_query_profile_data_many: [dw_query_profile_data_mutation_response] - update multiples rows of table: "dw_query_profile_data"
  • update_dw_tables: dw_tables_mutation_response - update data of the table: "dw_tables"
  • update_dw_tables_by_pk: dw_tables - update single row of the table: "dw_tables"
  • update_dw_tables_many: [dw_tables_mutation_response] - update multiples rows of table: "dw_tables"
  • update_etl_jobs: etl_jobs_mutation_response - update data of the table: "etl_jobs"
  • update_etl_jobs_by_pk: etl_jobs - update single row of the table: "etl_jobs"
  • update_etl_jobs_many: [etl_jobs_mutation_response] - update multiples rows of table: "etl_jobs"
  • update_event_bulk_operations: event_bulk_operations_mutation_response - update data of the table: "event_bulk_operations"
  • update_event_bulk_operations_by_pk: event_bulk_operations - update single row of the table: "event_bulk_operations"
  • update_event_bulk_operations_many: [event_bulk_operations_mutation_response] - update multiples rows of table: "event_bulk_operations"
  • update_event_classification: event_classification_mutation_response - update data of the table: "event_classification"
  • update_event_classification_by_pk: event_classification - update single row of the table: "event_classification"
  • update_event_classification_many: [event_classification_mutation_response] - update multiples rows of table: "event_classification"
  • update_event_correlations: event_correlations_mutation_response - update data of the table: "event_correlations"
  • update_event_correlations_by_pk: event_correlations - update single row of the table: "event_correlations"
  • update_event_correlations_many: [event_correlations_mutation_response] - update multiples rows of table: "event_correlations"
  • update_event_duplicates: event_duplicates_mutation_response - update data of the table: "event_duplicates"
  • update_event_duplicates_by_pk: event_duplicates - update single row of the table: "event_duplicates"
  • update_event_duplicates_many: [event_duplicates_mutation_response] - update multiples rows of table: "event_duplicates"
  • update_event_history: event_history_mutation_response - update data of the table: "event_history"
  • update_event_history_by_pk: event_history - update single row of the table: "event_history"
  • update_event_history_many: [event_history_mutation_response] - update multiples rows of table: "event_history"
  • update_event_incoming_webhooks: event_incoming_webhooks_mutation_response - update data of the table: "event_incoming_webhooks"
  • update_event_incoming_webhooks_by_pk: event_incoming_webhooks - update single row of the table: "event_incoming_webhooks"
  • update_event_incoming_webhooks_many: [event_incoming_webhooks_mutation_response] - update multiples rows of table: "event_incoming_webhooks"
  • update_event_log_analysis: event_log_analysis_mutation_response - update data of the table: "event_log_analysis"
  • update_event_log_analysis_by_pk: event_log_analysis - update single row of the table: "event_log_analysis"
  • update_event_log_analysis_many: [event_log_analysis_mutation_response] - update multiples rows of table: "event_log_analysis"
  • update_event_log_analysis_status: event_log_analysis_status_mutation_response - update data of the table: "event_log_analysis_status"
  • update_event_log_analysis_status_by_pk: event_log_analysis_status - update single row of the table: "event_log_analysis_status"
  • update_event_log_analysis_status_many: [event_log_analysis_status_mutation_response] - update multiples rows of table: "event_log_analysis_status"
  • update_event_resolution: event_resolution_mutation_response - update data of the table: "event_resolution"
  • update_event_resolution_by_pk: event_resolution - update single row of the table: "event_resolution"
  • update_event_resolution_many: [event_resolution_mutation_response] - update multiples rows of table: "event_resolution"
  • update_event_rule_severity: event_rule_severity_mutation_response - update data of the table: "event_rule_severity"
  • update_event_rule_severity_by_pk: event_rule_severity - update single row of the table: "event_rule_severity"
  • update_event_rule_severity_many: [event_rule_severity_mutation_response] - update multiples rows of table: "event_rule_severity"
  • update_event_rule_source: event_rule_source_mutation_response - update data of the table: "event_rule_source"
  • update_event_rule_source_by_pk: event_rule_source - update single row of the table: "event_rule_source"
  • update_event_rule_source_many: [event_rule_source_mutation_response] - update multiples rows of table: "event_rule_source"
  • update_event_rules: event_rules_mutation_response - update data of the table: "event_rules"
  • update_event_rules_by_pk: event_rules - update single row of the table: "event_rules"
  • update_event_rules_many: [event_rules_mutation_response] - update multiples rows of table: "event_rules"
  • update_event_severity: event_severity_mutation_response - update data of the table: "event_severity"
  • update_event_severity_by_pk: event_severity - update single row of the table: "event_severity"
  • update_event_severity_many: [event_severity_mutation_response] - update multiples rows of table: "event_severity"
  • update_event_source: event_source_mutation_response - update data of the table: "event_source"
  • update_event_source_by_pk: event_source - update single row of the table: "event_source"
  • update_event_source_many: [event_source_mutation_response] - update multiples rows of table: "event_source"
  • update_event_status: event_status_mutation_response - update data of the table: "event_status"
  • update_event_status_by_pk: event_status - update single row of the table: "event_status"
  • update_event_status_many: [event_status_mutation_response] - update multiples rows of table: "event_status"
  • update_event_triage_rules: event_triage_rules_mutation_response - update data of the table: "event_triage_rules"
  • update_event_triage_rules_by_pk: event_triage_rules - update single row of the table: "event_triage_rules"
  • update_event_triage_rules_many: [event_triage_rules_mutation_response] - update multiples rows of table: "event_triage_rules"
  • update_events: events_mutation_response - update data of the table: "events"
  • update_events_by_pk: events - update single row of the table: "events"
  • update_events_many: [events_mutation_response] - update multiples rows of table: "events"
  • update_feature: feature_mutation_response - update data of the table: "feature"
  • update_feature_by_pk: feature - update single row of the table: "feature"
  • update_feature_flag: feature_flag_mutation_response - update data of the table: "feature_flag"
  • update_feature_flag_by_pk: feature_flag - update single row of the table: "feature_flag"
  • update_feature_flag_many: [feature_flag_mutation_response] - update multiples rows of table: "feature_flag"
  • update_feature_many: [feature_mutation_response] - update multiples rows of table: "feature"
  • update_funding_sources: funding_sources_mutation_response - update data of the table: "funding_sources"
  • update_funding_sources_by_pk: funding_sources - update single row of the table: "funding_sources"
  • update_funding_sources_many: [funding_sources_mutation_response] - update multiples rows of table: "funding_sources"
  • update_group_roles: group_roles_mutation_response - update data of the table: "group_roles"
  • update_group_roles_by_pk: group_roles - update single row of the table: "group_roles"
  • update_group_roles_many: [group_roles_mutation_response] - update multiples rows of table: "group_roles"
  • update_insight: insight_mutation_response - update data of the table: "insight"
  • update_insight_by_pk: insight - update single row of the table: "insight"
  • update_insight_many: [insight_mutation_response] - update multiples rows of table: "insight"
  • update_insight_severity: insight_severity_mutation_response - update data of the table: "insight_severity"
  • update_insight_severity_by_pk: insight_severity - update single row of the table: "insight_severity"
  • update_insight_severity_many: [insight_severity_mutation_response] - update multiples rows of table: "insight_severity"
  • update_integration_categories: integration_categories_mutation_response - update data of the table: "integration_categories"
  • update_integration_categories_by_pk: integration_categories - update single row of the table: "integration_categories"
  • update_integration_categories_many: [integration_categories_mutation_response] - update multiples rows of table: "integration_categories"
  • update_integration_config_values: integration_config_values_mutation_response - update data of the table: "integration_config_values"
  • update_integration_config_values_by_pk: integration_config_values - update single row of the table: "integration_config_values"
  • update_integration_config_values_many: [integration_config_values_mutation_response] - update multiples rows of table: "integration_config_values"
  • update_integration_sources: integration_sources_mutation_response - update data of the table: "integration_sources"
  • update_integration_sources_by_pk: integration_sources - update single row of the table: "integration_sources"
  • update_integration_sources_many: [integration_sources_mutation_response] - update multiples rows of table: "integration_sources"
  • update_integration_statuses: integration_statuses_mutation_response - update data of the table: "integration_statuses"
  • update_integration_statuses_by_pk: integration_statuses - update single row of the table: "integration_statuses"
  • update_integration_statuses_many: [integration_statuses_mutation_response] - update multiples rows of table: "integration_statuses"
  • update_integration_types: integration_types_mutation_response - update data of the table: "integration_types"
  • update_integration_types_by_pk: integration_types - update single row of the table: "integration_types"
  • update_integration_types_many: [integration_types_mutation_response] - update multiples rows of table: "integration_types"
  • update_integrations: integrations_mutation_response - update data of the table: "integrations"
  • update_integrations_by_pk: integrations - update single row of the table: "integrations"
  • update_integrations_cloud_accounts: integrations_cloud_accounts_mutation_response - update data of the table: "integrations_cloud_accounts"
  • update_integrations_cloud_accounts_by_pk: integrations_cloud_accounts - update single row of the table: "integrations_cloud_accounts"
  • update_integrations_cloud_accounts_many: [integrations_cloud_accounts_mutation_response] - update multiples rows of table: "integrations_cloud_accounts"
  • update_integrations_many: [integrations_mutation_response] - update multiples rows of table: "integrations"
  • update_jira_configurations: jira_configurations_mutation_response - update data of the table: "jira_configurations"
  • update_jira_configurations_by_pk: jira_configurations - update single row of the table: "jira_configurations"
  • update_jira_configurations_many: [jira_configurations_mutation_response] - update multiples rows of table: "jira_configurations"
  • update_k8s_namespaces: k8s_namespaces_mutation_response - update data of the table: "k8s_namespaces"
  • update_k8s_namespaces_by_pk: k8s_namespaces - update single row of the table: "k8s_namespaces"
  • update_k8s_namespaces_many: [k8s_namespaces_mutation_response] - update multiples rows of table: "k8s_namespaces"
  • update_k8s_nodes: k8s_nodes_mutation_response - update data of the table: "k8s_nodes"
  • update_k8s_nodes_by_pk: k8s_nodes - update single row of the table: "k8s_nodes"
  • update_k8s_nodes_many: [k8s_nodes_mutation_response] - update multiples rows of table: "k8s_nodes"
  • update_k8s_pods: k8s_pods_mutation_response - update data of the table: "k8s_pods"
  • update_k8s_pods_by_pk: k8s_pods - update single row of the table: "k8s_pods"
  • update_k8s_pods_many: [k8s_pods_mutation_response] - update multiples rows of table: "k8s_pods"
  • update_k8s_workloads: k8s_workloads_mutation_response - update data of the table: "k8s_workloads"
  • update_k8s_workloads_by_pk: k8s_workloads - update single row of the table: "k8s_workloads"
  • update_k8s_workloads_many: [k8s_workloads_mutation_response] - update multiples rows of table: "k8s_workloads"
  • update_knowledge_base: knowledge_base_mutation_response - update data of the table: "knowledge_base"
  • update_knowledge_base_by_pk: knowledge_base - update single row of the table: "knowledge_base"
  • update_knowledge_base_many: [knowledge_base_mutation_response] - update multiples rows of table: "knowledge_base"
  • update_knowledge_graph_edge: knowledge_graph_edge_mutation_response - update data of the table: "knowledge_graph_edge"
  • update_knowledge_graph_edge_by_pk: knowledge_graph_edge - update single row of the table: "knowledge_graph_edge"
  • update_knowledge_graph_edge_many: [knowledge_graph_edge_mutation_response] - update multiples rows of table: "knowledge_graph_edge"
  • update_knowledge_graph_metadata: knowledge_graph_metadata_mutation_response - update data of the table: "knowledge_graph_metadata"
  • update_knowledge_graph_metadata_by_pk: knowledge_graph_metadata - update single row of the table: "knowledge_graph_metadata"
  • update_knowledge_graph_metadata_many: [knowledge_graph_metadata_mutation_response] - update multiples rows of table: "knowledge_graph_metadata"
  • update_knowledge_graph_node: knowledge_graph_node_mutation_response - update data of the table: "knowledge_graph_node"
  • update_knowledge_graph_node_by_pk: knowledge_graph_node - update single row of the table: "knowledge_graph_node"
  • update_knowledge_graph_node_many: [knowledge_graph_node_mutation_response] - update multiples rows of table: "knowledge_graph_node"
  • update_knowledge_graph_relationship_types: knowledge_graph_relationship_types_mutation_response - update data of the table: "knowledge_graph_relationship_types"
  • update_knowledge_graph_relationship_types_by_pk: knowledge_graph_relationship_types - update single row of the table: "knowledge_graph_relationship_types"
  • update_knowledge_graph_relationship_types_many: [knowledge_graph_relationship_types_mutation_response] - update multiples rows of table: "knowledge_graph_relationship_types"
  • update_knowledge_graph_tenant_filters: knowledge_graph_tenant_filters_mutation_response - update data of the table: "knowledge_graph_tenant_filters"
  • update_knowledge_graph_tenant_filters_by_pk: knowledge_graph_tenant_filters - update single row of the table: "knowledge_graph_tenant_filters"
  • update_knowledge_graph_tenant_filters_many: [knowledge_graph_tenant_filters_mutation_response] - update multiples rows of table: "knowledge_graph_tenant_filters"
  • update_llm_agents: llm_agents_mutation_response - update data of the table: "llm_agents"
  • update_llm_agents_by_pk: llm_agents - update single row of the table: "llm_agents"
  • update_llm_agents_installation: llm_agents_installation_mutation_response - update data of the table: "llm_agents_installation"
  • update_llm_agents_installation_by_pk: llm_agents_installation - update single row of the table: "llm_agents_installation"
  • update_llm_agents_installation_many: [llm_agents_installation_mutation_response] - update multiples rows of table: "llm_agents_installation"
  • update_llm_agents_many: [llm_agents_mutation_response] - update multiples rows of table: "llm_agents"
  • update_llm_conversation_agent: llm_conversation_agent_mutation_response - update data of the table: "llm_conversation_agent"
  • update_llm_conversation_agent_by_pk: llm_conversation_agent - update single row of the table: "llm_conversation_agent"
  • update_llm_conversation_agent_critiques: llm_conversation_agent_critiques_mutation_response - update data of the table: "llm_conversation_agent_critiques"
  • update_llm_conversation_agent_critiques_by_pk: llm_conversation_agent_critiques - update single row of the table: "llm_conversation_agent_critiques"
  • update_llm_conversation_agent_critiques_many: [llm_conversation_agent_critiques_mutation_response] - update multiples rows of table: "llm_conversation_agent_critiques"
  • update_llm_conversation_agent_many: [llm_conversation_agent_mutation_response] - update multiples rows of table: "llm_conversation_agent"
  • update_llm_conversation_feedback: llm_conversation_feedback_mutation_response - update data of the table: "llm_conversation_feedback"
  • update_llm_conversation_feedback_by_pk: llm_conversation_feedback - update single row of the table: "llm_conversation_feedback"
  • update_llm_conversation_feedback_many: [llm_conversation_feedback_mutation_response] - update multiples rows of table: "llm_conversation_feedback"
  • update_llm_conversation_history: llm_conversation_history_mutation_response - update data of the table: "llm_conversation_history"
  • update_llm_conversation_history_by_pk: llm_conversation_history - update single row of the table: "llm_conversation_history"
  • update_llm_conversation_history_many: [llm_conversation_history_mutation_response] - update multiples rows of table: "llm_conversation_history"
  • update_llm_conversation_messages: llm_conversation_messages_mutation_response - update data of the table: "llm_conversation_messages"
  • update_llm_conversation_messages_by_pk: llm_conversation_messages - update single row of the table: "llm_conversation_messages"
  • update_llm_conversation_messages_many: [llm_conversation_messages_mutation_response] - update multiples rows of table: "llm_conversation_messages"
  • update_llm_conversation_saved: llm_conversation_saved_mutation_response - update data of the table: "llm_conversation_saved"
  • update_llm_conversation_saved_by_pk: llm_conversation_saved - update single row of the table: "llm_conversation_saved"
  • update_llm_conversation_saved_many: [llm_conversation_saved_mutation_response] - update multiples rows of table: "llm_conversation_saved"
  • update_llm_conversation_tool_calls: llm_conversation_tool_calls_mutation_response - update data of the table: "llm_conversation_tool_calls"
  • update_llm_conversation_tool_calls_by_pk: llm_conversation_tool_calls - update single row of the table: "llm_conversation_tool_calls"
  • update_llm_conversation_tool_calls_many: [llm_conversation_tool_calls_mutation_response] - update multiples rows of table: "llm_conversation_tool_calls"
  • update_llm_conversations: llm_conversations_mutation_response - update data of the table: "llm_conversations"
  • update_llm_conversations_by_pk: llm_conversations - update single row of the table: "llm_conversations"
  • update_llm_conversations_many: [llm_conversations_mutation_response] - update multiples rows of table: "llm_conversations"
  • update_llm_functions: llm_functions_mutation_response - update data of the table: "llm_functions"
  • update_llm_functions_by_pk: llm_functions - update single row of the table: "llm_functions"
  • update_llm_functions_many: [llm_functions_mutation_response] - update multiples rows of table: "llm_functions"
  • update_llm_model_pricing: llm_model_pricing_mutation_response - update data of the table: "llm_model_pricing"
  • update_llm_model_pricing_by_pk: llm_model_pricing - update single row of the table: "llm_model_pricing"
  • update_llm_model_pricing_many: [llm_model_pricing_mutation_response] - update multiples rows of table: "llm_model_pricing"
  • update_llm_rag_audit: llm_rag_audit_mutation_response - update data of the table: "llm_rag_audit"
  • update_llm_rag_audit_by_pk: llm_rag_audit - update single row of the table: "llm_rag_audit"
  • update_llm_rag_audit_many: [llm_rag_audit_mutation_response] - update multiples rows of table: "llm_rag_audit"
  • update_llm_rags: llm_rags_mutation_response - update data of the table: "llm_rags"
  • update_llm_rags_by_pk: llm_rags - update single row of the table: "llm_rags"
  • update_llm_rags_many: [llm_rags_mutation_response] - update multiples rows of table: "llm_rags"
  • update_marketplace_customers: marketplace_customers_mutation_response - update data of the table: "marketplace_customers"
  • update_marketplace_customers_by_pk: marketplace_customers - update single row of the table: "marketplace_customers"
  • update_marketplace_customers_many: [marketplace_customers_mutation_response] - update multiples rows of table: "marketplace_customers"
  • update_messaging_platforms: messaging_platforms_mutation_response - update data of the table: "messaging_platforms"
  • update_messaging_platforms_by_pk: messaging_platforms - update single row of the table: "messaging_platforms"
  • update_messaging_platforms_many: [messaging_platforms_mutation_response] - update multiples rows of table: "messaging_platforms"
  • update_messaging_platforms_type: messaging_platforms_type_mutation_response - update data of the table: "messaging_platforms_type"
  • update_messaging_platforms_type_by_pk: messaging_platforms_type - update single row of the table: "messaging_platforms_type"
  • update_messaging_platforms_type_many: [messaging_platforms_type_mutation_response] - update multiples rows of table: "messaging_platforms_type"
  • update_metrics_summary: metrics_summary_mutation_response - update data of the table: "metrics_summary"
  • update_metrics_summary_by_pk: metrics_summary - update single row of the table: "metrics_summary"
  • update_metrics_summary_many: [metrics_summary_mutation_response] - update multiples rows of table: "metrics_summary"
  • update_ms_teams_channels: ms_teams_channels_mutation_response - update data of the table: "ms_teams_channels"
  • update_ms_teams_channels_by_pk: ms_teams_channels - update single row of the table: "ms_teams_channels"
  • update_ms_teams_channels_many: [ms_teams_channels_mutation_response] - update multiples rows of table: "ms_teams_channels"
  • update_notification_channel_account_mappings: notification_channel_account_mappings_mutation_response - update data of the table: "notification_channel_account_mappings"
  • update_notification_channel_account_mappings_by_pk: notification_channel_account_mappings - update single row of the table: "notification_channel_account_mappings"
  • update_notification_channel_account_mappings_many: [notification_channel_account_mappings_mutation_response] - update multiples rows of table: "notification_channel_account_mappings"
  • update_notification_platform_types: notification_platform_types_mutation_response - update data of the table: "notification_platform_types"
  • update_notification_platform_types_by_pk: notification_platform_types - update single row of the table: "notification_platform_types"
  • update_notification_platform_types_many: [notification_platform_types_mutation_response] - update multiples rows of table: "notification_platform_types"
  • update_notification_rule_mappings: notification_rule_mappings_mutation_response - update data of the table: "notification_rule_mappings"
  • update_notification_rule_mappings_by_pk: notification_rule_mappings - update single row of the table: "notification_rule_mappings"
  • update_notification_rule_mappings_many: [notification_rule_mappings_mutation_response] - update multiples rows of table: "notification_rule_mappings"
  • update_notification_rules: notification_rules_mutation_response - update data of the table: "notification_rules"
  • update_notification_rules_by_pk: notification_rules - update single row of the table: "notification_rules"
  • update_notification_rules_many: [notification_rules_mutation_response] - update multiples rows of table: "notification_rules"
  • update_notification_severity_type: notification_severity_type_mutation_response - update data of the table: "notification_severity_type"
  • update_notification_severity_type_by_pk: notification_severity_type - update single row of the table: "notification_severity_type"
  • update_notification_severity_type_many: [notification_severity_type_mutation_response] - update multiples rows of table: "notification_severity_type"
  • update_notification_source_type: notification_source_type_mutation_response - update data of the table: "notification_source_type"
  • update_notification_source_type_by_pk: notification_source_type - update single row of the table: "notification_source_type"
  • update_notification_source_type_many: [notification_source_type_mutation_response] - update multiples rows of table: "notification_source_type"
  • update_notification_user: notification_user_mutation_response - update data of the table: "notification_user"
  • update_notification_user_by_pk: notification_user - update single row of the table: "notification_user"
  • update_notification_user_many: [notification_user_mutation_response] - update multiples rows of table: "notification_user"
  • update_notification_user_status_type: notification_user_status_type_mutation_response - update data of the table: "notification_user_status_type"
  • update_notification_user_status_type_by_pk: notification_user_status_type - update single row of the table: "notification_user_status_type"
  • update_notification_user_status_type_many: [notification_user_status_type_mutation_response] - update multiples rows of table: "notification_user_status_type"
  • update_notifications: notifications_mutation_response - update data of the table: "notifications"
  • update_notifications_by_pk: notifications - update single row of the table: "notifications"
  • update_notifications_delivery_mode_type: notifications_delivery_mode_type_mutation_response - update data of the table: "notifications_delivery_mode_type"
  • update_notifications_delivery_mode_type_by_pk: notifications_delivery_mode_type - update single row of the table: "notifications_delivery_mode_type"
  • update_notifications_delivery_mode_type_many: [notifications_delivery_mode_type_mutation_response] - update multiples rows of table: "notifications_delivery_mode_type"
  • update_notifications_frequency_type: notifications_frequency_type_mutation_response - update data of the table: "notifications_frequency_type"
  • update_notifications_frequency_type_by_pk: notifications_frequency_type - update single row of the table: "notifications_frequency_type"
  • update_notifications_frequency_type_many: [notifications_frequency_type_mutation_response] - update multiples rows of table: "notifications_frequency_type"
  • update_notifications_many: [notifications_mutation_response] - update multiples rows of table: "notifications"
  • update_project_accounts: project_accounts_mutation_response - update data of the table: "project_accounts"
  • update_project_accounts_by_pk: project_accounts - update single row of the table: "project_accounts"
  • update_project_accounts_many: [project_accounts_mutation_response] - update multiples rows of table: "project_accounts"
  • update_project_category_type: project_category_type_mutation_response - update data of the table: "project_category_type"
  • update_project_category_type_by_pk: project_category_type - update single row of the table: "project_category_type"
  • update_project_category_type_many: [project_category_type_mutation_response] - update multiples rows of table: "project_category_type"
  • update_project_cloud_resources: project_cloud_resources_mutation_response - update data of the table: "project_cloud_resources"
  • update_project_cloud_resources_by_pk: project_cloud_resources - update single row of the table: "project_cloud_resources"
  • update_project_cloud_resources_many: [project_cloud_resources_mutation_response] - update multiples rows of table: "project_cloud_resources"
  • update_project_fundings: project_fundings_mutation_response - update data of the table: "project_fundings"
  • update_project_fundings_by_pk: project_fundings - update single row of the table: "project_fundings"
  • update_project_fundings_many: [project_fundings_mutation_response] - update multiples rows of table: "project_fundings"
  • update_project_users: project_users_mutation_response - update data of the table: "project_users"
  • update_project_users_by_pk: project_users - update single row of the table: "project_users"
  • update_project_users_many: [project_users_mutation_response] - update multiples rows of table: "project_users"
  • update_projects: projects_mutation_response - update data of the table: "projects"
  • update_projects_by_pk: projects - update single row of the table: "projects"
  • update_projects_many: [projects_mutation_response] - update multiples rows of table: "projects"
  • update_recommendation: recommendation_mutation_response - update data of the table: "recommendation"
  • update_recommendation_action_type: recommendation_action_type_mutation_response - update data of the table: "recommendation_action_type"
  • update_recommendation_action_type_by_pk: recommendation_action_type - update single row of the table: "recommendation_action_type"
  • update_recommendation_action_type_many: [recommendation_action_type_mutation_response] - update multiples rows of table: "recommendation_action_type"
  • update_recommendation_by_pk: recommendation - update single row of the table: "recommendation"
  • update_recommendation_category_type: recommendation_category_type_mutation_response - update data of the table: "recommendation_category_type"
  • update_recommendation_category_type_by_pk: recommendation_category_type - update single row of the table: "recommendation_category_type"
  • update_recommendation_category_type_many: [recommendation_category_type_mutation_response] - update multiples rows of table: "recommendation_category_type"
  • update_recommendation_many: [recommendation_mutation_response] - update multiples rows of table: "recommendation"
  • update_recommendation_resolution: recommendation_resolution_mutation_response - update data of the table: "recommendation_resolution"
  • update_recommendation_resolution_by_pk: recommendation_resolution - update single row of the table: "recommendation_resolution"
  • update_recommendation_resolution_many: [recommendation_resolution_mutation_response] - update multiples rows of table: "recommendation_resolution"
  • update_recommendation_severity_type: recommendation_severity_type_mutation_response - update data of the table: "recommendation_severity_type"
  • update_recommendation_severity_type_by_pk: recommendation_severity_type - update single row of the table: "recommendation_severity_type"
  • update_recommendation_severity_type_many: [recommendation_severity_type_mutation_response] - update multiples rows of table: "recommendation_severity_type"
  • update_recommendation_status_type: recommendation_status_type_mutation_response - update data of the table: "recommendation_status_type"
  • update_recommendation_status_type_by_pk: recommendation_status_type - update single row of the table: "recommendation_status_type"
  • update_recommendation_status_type_many: [recommendation_status_type_mutation_response] - update multiples rows of table: "recommendation_status_type"
  • update_roles: roles_mutation_response - update data of the table: "roles"
  • update_roles_by_pk: roles - update single row of the table: "roles"
  • update_roles_many: [roles_mutation_response] - update multiples rows of table: "roles"
  • update_runbook_action: runbook_action_mutation_response - update data of the table: "runbook_action"
  • update_runbook_action_by_pk: runbook_action - update single row of the table: "runbook_action"
  • update_runbook_action_library: runbook_action_library_mutation_response - update data of the table: "runbook_action_library"
  • update_runbook_action_library_by_pk: runbook_action_library - update single row of the table: "runbook_action_library"
  • update_runbook_action_library_many: [runbook_action_library_mutation_response] - update multiples rows of table: "runbook_action_library"
  • update_runbook_action_many: [runbook_action_mutation_response] - update multiples rows of table: "runbook_action"
  • update_runbook_action_status: runbook_action_status_mutation_response - update data of the table: "runbook_action_status"
  • update_runbook_action_status_by_pk: runbook_action_status - update single row of the table: "runbook_action_status"
  • update_runbook_action_status_many: [runbook_action_status_mutation_response] - update multiples rows of table: "runbook_action_status"
  • update_runbook_task_output: runbook_task_output_mutation_response - update data of the table: "runbook_task_output"
  • update_runbook_task_output_by_pk: runbook_task_output - update single row of the table: "runbook_task_output"
  • update_runbook_task_output_many: [runbook_task_output_mutation_response] - update multiples rows of table: "runbook_task_output"
  • update_schedule_unit_type: schedule_unit_type_mutation_response - update data of the table: "schedule_unit_type"
  • update_schedule_unit_type_by_pk: schedule_unit_type - update single row of the table: "schedule_unit_type"
  • update_schedule_unit_type_many: [schedule_unit_type_mutation_response] - update multiples rows of table: "schedule_unit_type"
  • update_sent_notifications: sent_notifications_mutation_response - update data of the table: "sent_notifications"
  • update_sent_notifications_by_pk: sent_notifications - update single row of the table: "sent_notifications"
  • update_sent_notifications_many: [sent_notifications_mutation_response] - update multiples rows of table: "sent_notifications"
  • update_slack_bots: slack_bots_mutation_response - update data of the table: "slack_bots"
  • update_slack_bots_by_pk: slack_bots - update single row of the table: "slack_bots"
  • update_slack_bots_many: [slack_bots_mutation_response] - update multiples rows of table: "slack_bots"
  • update_slack_oauth_states: slack_oauth_states_mutation_response - update data of the table: "slack_oauth_states"
  • update_slack_oauth_states_by_pk: slack_oauth_states - update single row of the table: "slack_oauth_states"
  • update_slack_oauth_states_many: [slack_oauth_states_mutation_response] - update multiples rows of table: "slack_oauth_states"
  • update_slo_config: slo_config_mutation_response - update data of the table: "slo_config"
  • update_slo_config_by_pk: slo_config - update single row of the table: "slo_config"
  • update_slo_config_many: [slo_config_mutation_response] - update multiples rows of table: "slo_config"
  • update_slo_report: slo_report_mutation_response - update data of the table: "slo_report"
  • update_slo_report_by_pk: slo_report - update single row of the table: "slo_report"
  • update_slo_report_many: [slo_report_mutation_response] - update multiples rows of table: "slo_report"
  • update_slo_status: slo_status_mutation_response - update data of the table: "slo_status"
  • update_slo_status_by_pk: slo_status - update single row of the table: "slo_status"
  • update_slo_status_many: [slo_status_mutation_response] - update multiples rows of table: "slo_status"
  • update_spends: spends_mutation_response - update data of the table: "spends"
  • update_spends_by_pk: spends - update single row of the table: "spends"
  • update_spends_many: [spends_mutation_response] - update multiples rows of table: "spends"
  • update_spends_resource_group_type: spends_resource_group_type_mutation_response - update data of the table: "spends_resource_group_type"
  • update_spends_resource_group_type_by_pk: spends_resource_group_type - update single row of the table: "spends_resource_group_type"
  • update_spends_resource_group_type_many: [spends_resource_group_type_mutation_response] - update multiples rows of table: "spends_resource_group_type"
  • update_status_auto_pilot_approval: AutopilotApprovalUpdateOutput - to approve or reject auto pilot approval
  • update_tenant: tenant_mutation_response - update data of the table: "tenant"
  • update_tenant_attrs: tenant_attrs_mutation_response - update data of the table: "tenant_attrs"
  • update_tenant_attrs_by_pk: tenant_attrs - update single row of the table: "tenant_attrs"
  • update_tenant_attrs_many: [tenant_attrs_mutation_response] - update multiples rows of table: "tenant_attrs"
  • update_tenant_by_pk: tenant - update single row of the table: "tenant"
  • update_tenant_many: [tenant_mutation_response] - update multiples rows of table: "tenant"
  • update_tenant_onboarding: tenant_onboarding_mutation_response - update data of the table: "tenant_onboarding"
  • update_tenant_onboarding_by_pk: tenant_onboarding - update single row of the table: "tenant_onboarding"
  • update_tenant_onboarding_many: [tenant_onboarding_mutation_response] - update multiples rows of table: "tenant_onboarding"
  • update_tenant_type: tenant_type_mutation_response - update data of the table: "tenant_type"
  • update_tenant_type_by_pk: tenant_type - update single row of the table: "tenant_type"
  • update_tenant_type_many: [tenant_type_mutation_response] - update multiples rows of table: "tenant_type"
  • update_tenant_users: tenant_users_mutation_response - update data of the table: "tenant_users"
  • update_tenant_users_by_pk: tenant_users - update single row of the table: "tenant_users"
  • update_tenant_users_many: [tenant_users_mutation_response] - update multiples rows of table: "tenant_users"
  • update_ticket_severity_type: ticket_severity_type_mutation_response - update data of the table: "ticket_severity_type"
  • update_ticket_severity_type_by_pk: ticket_severity_type - update single row of the table: "ticket_severity_type"
  • update_ticket_severity_type_many: [ticket_severity_type_mutation_response] - update multiples rows of table: "ticket_severity_type"
  • update_ticket_source_type: ticket_source_type_mutation_response - update data of the table: "ticket_source_type"
  • update_ticket_source_type_by_pk: ticket_source_type - update single row of the table: "ticket_source_type"
  • update_ticket_source_type_many: [ticket_source_type_mutation_response] - update multiples rows of table: "ticket_source_type"
  • update_ticket_tool_types: ticket_tool_types_mutation_response - update data of the table: "ticket_tool_types"
  • update_ticket_tool_types_by_pk: ticket_tool_types - update single row of the table: "ticket_tool_types"
  • update_ticket_tool_types_many: [ticket_tool_types_mutation_response] - update multiples rows of table: "ticket_tool_types"
  • update_tickets: tickets_mutation_response - update data of the table: "tickets"
  • update_tickets_by_pk: tickets - update single row of the table: "tickets"
  • update_tickets_many: [tickets_mutation_response] - update multiples rows of table: "tickets"
  • update_upgrade_plan: upgrade_plan_mutation_response - update data of the table: "upgrade_plan"
  • update_upgrade_plan_audit: upgrade_plan_audit_mutation_response - update data of the table: "upgrade_plan_audit"
  • update_upgrade_plan_audit_by_pk: upgrade_plan_audit - update single row of the table: "upgrade_plan_audit"
  • update_upgrade_plan_audit_many: [upgrade_plan_audit_mutation_response] - update multiples rows of table: "upgrade_plan_audit"
  • update_upgrade_plan_by_pk: upgrade_plan - update single row of the table: "upgrade_plan"
  • update_upgrade_plan_many: [upgrade_plan_mutation_response] - update multiples rows of table: "upgrade_plan"
  • update_upgrade_plan_status_type: upgrade_plan_status_type_mutation_response - update data of the table: "upgrade_plan_status_type"
  • update_upgrade_plan_status_type_by_pk: upgrade_plan_status_type - update single row of the table: "upgrade_plan_status_type"
  • update_upgrade_plan_status_type_many: [upgrade_plan_status_type_mutation_response] - update multiples rows of table: "upgrade_plan_status_type"
  • update_upgrade_plan_steps: upgrade_plan_steps_mutation_response - update data of the table: "upgrade_plan_steps"
  • update_upgrade_plan_steps_by_pk: upgrade_plan_steps - update single row of the table: "upgrade_plan_steps"
  • update_upgrade_plan_steps_many: [upgrade_plan_steps_mutation_response] - update multiples rows of table: "upgrade_plan_steps"
  • update_upgrade_plan_tasks: upgrade_plan_tasks_mutation_response - update data of the table: "upgrade_plan_tasks"
  • update_upgrade_plan_tasks_by_pk: upgrade_plan_tasks - update single row of the table: "upgrade_plan_tasks"
  • update_upgrade_plan_tasks_many: [upgrade_plan_tasks_mutation_response] - update multiples rows of table: "upgrade_plan_tasks"
  • update_user_attrs: user_attrs_mutation_response - update data of the table: "user_attrs"
  • update_user_attrs_by_pk: user_attrs - update single row of the table: "user_attrs"
  • update_user_attrs_many: [user_attrs_mutation_response] - update multiples rows of table: "user_attrs"
  • update_user_auths: user_auths_mutation_response - update data of the table: "user_auths"
  • update_user_auths_by_pk: user_auths - update single row of the table: "user_auths"
  • update_user_auths_many: [user_auths_mutation_response] - update multiples rows of table: "user_auths"
  • update_user_groups: user_groups_mutation_response - update data of the table: "user_groups"
  • update_user_groups_by_pk: user_groups - update single row of the table: "user_groups"
  • update_user_groups_many: [user_groups_mutation_response] - update multiples rows of table: "user_groups"
  • update_user_history: user_history_mutation_response - update data of the table: "user_history"
  • update_user_history_by_pk: user_history - update single row of the table: "user_history"
  • update_user_history_many: [user_history_mutation_response] - update multiples rows of table: "user_history"
  • update_user_roles: user_roles_mutation_response - update data of the table: "user_roles"
  • update_user_roles_by_pk: user_roles - update single row of the table: "user_roles"
  • update_user_roles_many: [user_roles_mutation_response] - update multiples rows of table: "user_roles"
  • update_user_status_type: user_status_type_mutation_response - update data of the table: "user_status_type"
  • update_user_status_type_by_pk: user_status_type - update single row of the table: "user_status_type"
  • update_user_status_type_many: [user_status_type_mutation_response] - update multiples rows of table: "user_status_type"
  • update_usergroup_users: usergroup_users_mutation_response - update data of the table: "usergroup_users"
  • update_usergroup_users_by_pk: usergroup_users - update single row of the table: "usergroup_users"
  • update_usergroup_users_many: [usergroup_users_mutation_response] - update multiples rows of table: "usergroup_users"
  • update_users: users_mutation_response - update data of the table: "users"
  • update_users_by_pk: users - update single row of the table: "users"
  • update_users_many: [users_mutation_response] - update multiples rows of table: "users"
  • upgrade_execute_command: UpgradeExecuteCommandResponse
  • upgrade_plan_create_one: UpgradePlanResponse
  • upgrade_plan_task_upsert_one: task_response
  • upgrade_post_flight_check: flight_check_response
  • upgrade_pre_flight_check: flight_check_response
  • user_history: UserHistoryOutput
  • users_create_token: UserTokenCreateResponse
  • users_delete_one: DeleteByPkResponse
  • users_delete_token: UserTokenDeleteResponse
  • users_insert_one: users_insert_one_output
  • validate_cloud_credentials: ValidateCloudCredentialsOutput - Validate cloud provider credentials and check required API permissions (Azure, GCP)
  • workflow_create: WorkflowCreateResponse
  • workflow_delete: WorkflowDeleteResponse
  • workflow_pause: WorkflowPauseResponse
  • workflow_resume: WorkflowResumeResponse
  • workflow_retrigger_execution: WorkflowRetriggerResponse
  • workflow_trigger: WorkflowTriggerResponse
  • workflow_trigger_dryrun: WorkflowDryrunResponse
  • workflow_trigger_task: jsonb!
  • workflow_update: WorkflowUpdateResponse
  • workflow_validate: WorkflowValidateResponse
numeric
numeric_comparison_exp

Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'.

Fields:

  • _eq: numeric
  • _gt: numeric
  • _gte: numeric
  • _in: [numeric!]
  • _is_null: Boolean
  • _lt: numeric
  • _lte: numeric
  • _neq: numeric
  • _nin: [numeric!]
order_by

column ordering options

Values:

  • asc - in ascending order, nulls last
  • asc_nulls_first - in ascending order, nulls first
  • asc_nulls_last - in ascending order, nulls last
  • desc - in descending order, nulls first
  • desc_nulls_first - in descending order, nulls first
  • desc_nulls_last - in descending order, nulls last
projects

columns and relationships of "projects"

Fields:

  • approved_by: uuid
  • billable: Boolean
  • businessUnitByBusinessUnit: business_unit! - An object relationship
  • business_unit: uuid!
  • category: project_category_type_enum
  • created_at: timestamp!
  • created_by: uuid!
  • description: String!
  • ended_at: timestamp
  • expected_revenue: float8
  • id: uuid!
  • it_manager: uuid
  • name: citext!
  • project_accounts: [project_accounts!]! - An array relationship
  • project_accounts_aggregate: project_accounts_aggregate! - An aggregate relationship
  • project_category_type: project_category_type - An object relationship
  • project_fundings: [project_fundings!]! - An array relationship
  • project_fundings_aggregate: project_fundings_aggregate! - An aggregate relationship
  • project_manager: uuid
  • project_users: [project_users!]! - An array relationship
  • project_users_aggregate: project_users_aggregate! - An aggregate relationship
  • started_at: timestamp
  • tenant: uuid!
  • tenantByTenant: tenant! - An object relationship
  • updated_at: timestamp!
  • updated_by: uuid!
  • user: users! - An object relationship
  • userByUpdatedBy: users! - An object relationship
projects_aggregate

aggregated selection of "projects"

Fields:

  • aggregate: projects_aggregate_fields
  • nodes: [projects!]!
projects_aggregate_bool_exp_avg

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_avg_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_bool_and

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: Boolean_comparison_exp!
projects_aggregate_bool_exp_bool_or

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: Boolean_comparison_exp!
projects_aggregate_bool_exp_corr

Fields:

  • arguments: projects_aggregate_bool_exp_corr_arguments!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_corr_arguments

Fields:

  • X: projects_select_column_projects_aggregate_bool_exp_corr_arguments_columns!
  • Y: projects_select_column_projects_aggregate_bool_exp_corr_arguments_columns!
projects_aggregate_bool_exp_covar_samp

Fields:

  • arguments: projects_aggregate_bool_exp_covar_samp_arguments!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_covar_samp_arguments

Fields:

  • X: projects_select_column_projects_aggregate_bool_exp_covar_samp_arguments_columns!
  • Y: projects_select_column_projects_aggregate_bool_exp_covar_samp_arguments_columns!
projects_aggregate_bool_exp_max

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_max_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_min

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_min_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_stddev_samp

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_stddev_samp_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_sum

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_sum_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_aggregate_bool_exp_var_samp

Fields:

  • arguments: projects_select_column_projects_aggregate_bool_exp_var_samp_arguments_columns!
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: float8_comparison_exp!
projects_select_column_projects_aggregate_bool_exp_avg_arguments_columns

select "projects_aggregate_bool_exp_avg_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_bool_and_arguments_columns

select "projects_aggregate_bool_exp_bool_and_arguments_columns" columns of table "projects"

Values:

  • billable - column name
projects_select_column_projects_aggregate_bool_exp_bool_or_arguments_columns

select "projects_aggregate_bool_exp_bool_or_arguments_columns" columns of table "projects"

Values:

  • billable - column name
projects_select_column_projects_aggregate_bool_exp_corr_arguments_columns

select "projects_aggregate_bool_exp_corr_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_covar_samp_arguments_columns

select "projects_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_max_arguments_columns

select "projects_aggregate_bool_exp_max_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_min_arguments_columns

select "projects_aggregate_bool_exp_min_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_stddev_samp_arguments_columns

select "projects_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_sum_arguments_columns

select "projects_aggregate_bool_exp_sum_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_select_column_projects_aggregate_bool_exp_var_samp_arguments_columns

select "projects_aggregate_bool_exp_var_samp_arguments_columns" columns of table "projects"

Values:

  • expected_revenue - column name
projects_updates

Fields:

  • _inc: projects_inc_input - increments the numeric columns with given value of the filtered values
  • _set: projects_set_input - sets the columns of the filtered rows to the given values
  • where: projects_bool_exp! - filter the rows which have to be updated
query_root

Fields:

  • account_env_type: [account_env_type!]! - fetch data from the table: "account_env_type"
  • account_env_type_aggregate: account_env_type_aggregate! - fetch aggregated fields from the table: "account_env_type"
  • account_env_type_by_pk: account_env_type - fetch data from the table: "account_env_type" using primary key columns
  • account_purpose_type: [account_purpose_type!]! - fetch data from the table: "account_purpose_type"
  • account_purpose_type_aggregate: account_purpose_type_aggregate! - fetch aggregated fields from the table: "account_purpose_type"
  • account_purpose_type_by_pk: account_purpose_type - fetch data from the table: "account_purpose_type" using primary key columns
  • active_resources: [active_resources!]! - fetch data from the table: "active_resources"
  • active_resources_aggregate: active_resources_aggregate! - fetch aggregated fields from the table: "active_resources"
  • active_resources_by_pk: active_resources - fetch data from the table: "active_resources" using primary key columns
  • admin_get_user_tenant_roles_v2: UserTenantRolesResponse
  • agent: [agent!]! - fetch data from the table: "agent"
  • agent_aggregate: agent_aggregate! - fetch aggregated fields from the table: "agent"
  • agent_audit_log: [agent_audit_log!]! - fetch data from the table: "agent_audit_log"
  • agent_audit_log_aggregate: agent_audit_log_aggregate! - fetch aggregated fields from the table: "agent_audit_log"
  • agent_audit_log_by_pk: agent_audit_log - fetch data from the table: "agent_audit_log" using primary key columns
  • agent_by_pk: agent - fetch data from the table: "agent" using primary key columns
  • agent_playbook: [agent_playbook!]! - fetch data from the table: "agent_playbook"
  • agent_playbook_action: [agent_playbook_action!]! - fetch data from the table: "agent_playbook_action"
  • agent_playbook_action_aggregate: agent_playbook_action_aggregate! - fetch aggregated fields from the table: "agent_playbook_action"
  • agent_playbook_action_by_pk: agent_playbook_action - fetch data from the table: "agent_playbook_action" using primary key columns
  • agent_playbook_aggregate: agent_playbook_aggregate! - fetch aggregated fields from the table: "agent_playbook"
  • agent_playbook_by_pk: agent_playbook - fetch data from the table: "agent_playbook" using primary key columns
  • agent_playbook_processor: [agent_playbook_processor!]! - fetch data from the table: "agent_playbook_processor"
  • agent_playbook_processor_aggregate: agent_playbook_processor_aggregate! - fetch aggregated fields from the table: "agent_playbook_processor"
  • agent_playbook_processor_by_pk: agent_playbook_processor - fetch data from the table: "agent_playbook_processor" using primary key columns
  • agent_playbook_source: [agent_playbook_source!]! - fetch data from the table: "agent_playbook_source"
  • agent_playbook_source_aggregate: agent_playbook_source_aggregate! - fetch aggregated fields from the table: "agent_playbook_source"
  • agent_playbook_source_by_pk: agent_playbook_source - fetch data from the table: "agent_playbook_source" using primary key columns
  • agent_playbook_trigger: [agent_playbook_trigger!]! - fetch data from the table: "agent_playbook_trigger"
  • agent_playbook_trigger_aggregate: agent_playbook_trigger_aggregate! - fetch aggregated fields from the table: "agent_playbook_trigger"
  • agent_playbook_trigger_by_pk: agent_playbook_trigger - fetch data from the table: "agent_playbook_trigger" using primary key columns
  • agent_task: [agent_task!]! - fetch data from the table: "agent_task"
  • agent_task_aggregate: agent_task_aggregate! - fetch aggregated fields from the table: "agent_task"
  • agent_task_by_pk: agent_task - fetch data from the table: "agent_task" using primary key columns
  • ai_budget_status: AIBudgetStatusResponse - Get budget status for an account
  • ai_generate_workflow: AIGenerateWorkflowResponse
  • ai_get_gc: GetGCResponse - Get a specific global context by ID
  • ai_get_kb: GetKBResponse - List all knowledge bases mapped to an agent
  • ai_get_model_config: AIGetModelConfigResponse - Get model configuration for a conversation
  • ai_get_rca: AIResponse - Hit LLM to get RCA for event
  • ai_get_recommendation: AIResponse - Hit OpenAI to get suggestions on log
  • ai_list_agent_kbs: ListAgentKBsResponse - List all knowledge bases for an agent
  • ai_list_agents: ListAgentResponse
  • ai_list_agents_with_kb_counts: ListAgentsWithKBCountsResponse - List all agents with their KB mapping counts
  • ai_list_gc: ListGCResponse - List all global contexts for an account
  • ai_list_kb: ListKBResponse - List all knowledge bases for an account
  • ai_list_kb_agent_mappings: ListKBAgentMappingsResponse - List all KB-agent mappings for an account
  • ai_list_kb_agents: ListKBAgentsResponse - List all agents that a specific KB is mapped to
  • ai_list_memory: ListAIMemoryResponse
  • ai_list_models: AIListModelsResponse - List all available LLM models for conversation
  • ai_list_references: ListAIReferencesResponse
  • ai_list_tools: ListToolResponse
  • anomaly: [anomaly!]! - fetch data from the table: "anomaly"
  • anomaly_aggregate: anomaly_aggregate! - fetch aggregated fields from the table: "anomaly"
  • anomaly_by_pk: anomaly - fetch data from the table: "anomaly" using primary key columns
  • anomaly_change_operator: [anomaly_change_operator!]! - fetch data from the table: "anomaly_change_operator"
  • anomaly_change_operator_aggregate: anomaly_change_operator_aggregate! - fetch aggregated fields from the table: "anomaly_change_operator"
  • anomaly_change_operator_by_pk: anomaly_change_operator - fetch data from the table: "anomaly_change_operator" using primary key columns
  • anomaly_config: [anomaly_config!]! - fetch data from the table: "anomaly_config"
  • anomaly_config_aggregate: anomaly_config_aggregate! - fetch aggregated fields from the table: "anomaly_config"
  • anomaly_config_by_pk: anomaly_config - fetch data from the table: "anomaly_config" using primary key columns
  • anomaly_config_type: [anomaly_config_type!]! - fetch data from the table: "anomaly_config_type"
  • anomaly_config_type_aggregate: anomaly_config_type_aggregate! - fetch aggregated fields from the table: "anomaly_config_type"
  • anomaly_config_type_by_pk: anomaly_config_type - fetch data from the table: "anomaly_config_type" using primary key columns
  • anomaly_grouping_v2: AnomalyGroupingsResponse
  • anomaly_type: [anomaly_type!]! - fetch data from the table: "anomaly_type"
  • anomaly_type_aggregate: anomaly_type_aggregate! - fetch aggregated fields from the table: "anomaly_type"
  • anomaly_type_by_pk: anomaly_type - fetch data from the table: "anomaly_type" using primary key columns
  • anomaly_v2: ListAnomalyResponse - List Anomaly from anomaly table
  • anomaly_v3: ListAnomalyV3Response
  • application_group: [application_group!]! - fetch data from the table: "application_group"
  • application_group_aggregate: application_group_aggregate! - fetch aggregated fields from the table: "application_group"
  • application_group_by_pk: application_group - fetch data from the table: "application_group" using primary key columns
  • application_group_mapping: [application_group_mapping!]! - fetch data from the table: "application_group_mapping"
  • application_group_mapping_aggregate: application_group_mapping_aggregate! - fetch aggregated fields from the table: "application_group_mapping"
  • application_group_mapping_by_pk: application_group_mapping - fetch data from the table: "application_group_mapping" using primary key columns
  • application_profile: [application_profile!]! - fetch data from the table: "application_profile"
  • application_profile_aggregate: application_profile_aggregate! - fetch aggregated fields from the table: "application_profile"
  • application_profile_by_pk: application_profile - fetch data from the table: "application_profile" using primary key columns
  • application_profile_v2: ApplicationProfileResponse
  • audit: [audit!]! - fetch data from the table: "audit"
  • audit_aggregate: audit_aggregate! - fetch aggregated fields from the table: "audit"
  • audit_by_pk: audit - fetch data from the table: "audit" using primary key columns
  • audit_groupings_v2: AuditGroupingResponse
  • audits_v2: AuditResponse
  • auth_provider_type: [auth_provider_type!]! - fetch data from the table: "auth_provider_type"
  • auth_provider_type_aggregate: auth_provider_type_aggregate! - fetch aggregated fields from the table: "auth_provider_type"
  • auth_provider_type_by_pk: auth_provider_type - fetch data from the table: "auth_provider_type" using primary key columns
  • auth_type: [auth_type!]! - fetch data from the table: "auth_type"
  • auth_type_aggregate: auth_type_aggregate! - fetch aggregated fields from the table: "auth_type"
  • auth_type_by_pk: auth_type - fetch data from the table: "auth_type" using primary key columns
  • auto_optimize_recommendation: auto_optimize_recommendation_output - to get resource which have auto optimizer
  • auto_optimize_resource_map: [auto_optimize_resource_map!]! - fetch data from the table: "auto_optimize_resource_map"
  • auto_optimize_resource_map_aggregate: auto_optimize_resource_map_aggregate! - fetch aggregated fields from the table: "auto_optimize_resource_map"
  • auto_optimize_resource_map_by_pk: auto_optimize_resource_map - fetch data from the table: "auto_optimize_resource_map" using primary key columns
  • auto_optimize_workload: auto_optimize_insert_one_output - to get auto optimize for resource_ids
  • auto_pilot: [auto_pilot!]! - fetch data from the table: "auto_pilot"
  • auto_pilot_aggregate: auto_pilot_aggregate! - fetch aggregated fields from the table: "auto_pilot"
  • auto_pilot_approval_policy: [auto_pilot_approval_policy!]! - fetch data from the table: "auto_pilot_approval_policy"
  • auto_pilot_approval_policy_aggregate: auto_pilot_approval_policy_aggregate! - fetch aggregated fields from the table: "auto_pilot_approval_policy"
  • auto_pilot_approval_policy_by_pk: auto_pilot_approval_policy - fetch data from the table: "auto_pilot_approval_policy" using primary key columns
  • auto_pilot_approval_status: [auto_pilot_approval_status!]! - fetch data from the table: "auto_pilot_approval_status"
  • auto_pilot_approval_status_aggregate: auto_pilot_approval_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_approval_status"
  • auto_pilot_approval_status_by_pk: auto_pilot_approval_status - fetch data from the table: "auto_pilot_approval_status" using primary key columns
  • auto_pilot_approvals: [auto_pilot_approvals!]! - An array relationship
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate! - An aggregate relationship
  • auto_pilot_approvals_by_pk: auto_pilot_approvals - fetch data from the table: "auto_pilot_approvals" using primary key columns
  • auto_pilot_by_pk: auto_pilot - fetch data from the table: "auto_pilot" using primary key columns
  • auto_pilot_category: [auto_pilot_category!]! - fetch data from the table: "auto_pilot_category"
  • auto_pilot_category_aggregate: auto_pilot_category_aggregate! - fetch aggregated fields from the table: "auto_pilot_category"
  • auto_pilot_category_by_pk: auto_pilot_category - fetch data from the table: "auto_pilot_category" using primary key columns
  • auto_pilot_execution_status: [auto_pilot_execution_status!]! - fetch data from the table: "auto_pilot_execution_status"
  • auto_pilot_execution_status_aggregate: auto_pilot_execution_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_execution_status"
  • auto_pilot_execution_status_by_pk: auto_pilot_execution_status - fetch data from the table: "auto_pilot_execution_status" using primary key columns
  • auto_pilot_reviewee: [auto_pilot_reviewee!]! - fetch data from the table: "auto_pilot_reviewee"
  • auto_pilot_reviewee_aggregate: auto_pilot_reviewee_aggregate! - fetch aggregated fields from the table: "auto_pilot_reviewee"
  • auto_pilot_reviewee_by_pk: auto_pilot_reviewee - fetch data from the table: "auto_pilot_reviewee" using primary key columns
  • auto_pilot_reviewers: [auto_pilot_reviewers!]! - An array relationship
  • auto_pilot_reviewers_aggregate: auto_pilot_reviewers_aggregate! - An aggregate relationship
  • auto_pilot_reviewers_by_pk: auto_pilot_reviewers - fetch data from the table: "auto_pilot_reviewers" using primary key columns
  • auto_pilot_status: [auto_pilot_status!]! - fetch data from the table: "auto_pilot_status"
  • auto_pilot_status_aggregate: auto_pilot_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_status"
  • auto_pilot_status_by_pk: auto_pilot_status - fetch data from the table: "auto_pilot_status" using primary key columns
  • auto_pilot_task: [auto_pilot_task!]! - fetch data from the table: "auto_pilot_task"
  • auto_pilot_task_aggregate: auto_pilot_task_aggregate! - fetch aggregated fields from the table: "auto_pilot_task"
  • auto_pilot_task_by_pk: auto_pilot_task - fetch data from the table: "auto_pilot_task" using primary key columns
  • auto_pilot_task_status: [auto_pilot_task_status!]! - fetch data from the table: "auto_pilot_task_status"
  • auto_pilot_task_status_aggregate: auto_pilot_task_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_task_status"
  • auto_pilot_task_status_by_pk: auto_pilot_task_status - fetch data from the table: "auto_pilot_task_status" using primary key columns
  • auto_playbook: [auto_playbook!]! - fetch data from the table: "auto_playbook"
  • auto_playbook_actions: [auto_playbook_actions!]! - fetch data from the table: "auto_playbook_actions"
  • auto_playbook_actions_aggregate: auto_playbook_actions_aggregate! - fetch aggregated fields from the table: "auto_playbook_actions"
  • auto_playbook_actions_by_pk: auto_playbook_actions - fetch data from the table: "auto_playbook_actions" using primary key columns
  • auto_playbook_aggregate: auto_playbook_aggregate! - fetch aggregated fields from the table: "auto_playbook"
  • auto_playbook_by_pk: auto_playbook - fetch data from the table: "auto_playbook" using primary key columns
  • auto_playbook_execution_status: [auto_playbook_execution_status!]! - fetch data from the table: "auto_playbook_execution_status"
  • auto_playbook_execution_status_aggregate: auto_playbook_execution_status_aggregate! - fetch aggregated fields from the table: "auto_playbook_execution_status"
  • auto_playbook_execution_status_by_pk: auto_playbook_execution_status - fetch data from the table: "auto_playbook_execution_status" using primary key columns
  • auto_playbook_executions: [auto_playbook_executions!]! - An array relationship
  • auto_playbook_executions_aggregate: auto_playbook_executions_aggregate! - An aggregate relationship
  • auto_playbook_executions_by_pk: auto_playbook_executions - fetch data from the table: "auto_playbook_executions" using primary key columns
  • auto_playbook_grouping_v2: PlaybookGroupResponse
  • auto_playbook_status: [auto_playbook_status!]! - fetch data from the table: "auto_playbook_status"
  • auto_playbook_status_aggregate: auto_playbook_status_aggregate! - fetch aggregated fields from the table: "auto_playbook_status"
  • auto_playbook_status_by_pk: auto_playbook_status - fetch data from the table: "auto_playbook_status" using primary key columns
  • auto_playbook_task: [auto_playbook_task!]! - fetch data from the table: "auto_playbook_task"
  • auto_playbook_task_aggregate: auto_playbook_task_aggregate! - fetch aggregated fields from the table: "auto_playbook_task"
  • auto_playbook_task_by_pk: auto_playbook_task - fetch data from the table: "auto_playbook_task" using primary key columns
  • auto_playbook_task_status: [auto_playbook_task_status!]! - fetch data from the table: "auto_playbook_task_status"
  • auto_playbook_task_status_aggregate: auto_playbook_task_status_aggregate! - fetch aggregated fields from the table: "auto_playbook_task_status"
  • auto_playbook_task_status_by_pk: auto_playbook_task_status - fetch data from the table: "auto_playbook_task_status" using primary key columns
  • auto_playbook_v2: PlaybookResponse
  • autopilot_attributes: [autopilot_attributes!]! - fetch data from the table: "autopilot_attributes"
  • autopilot_attributes_aggregate: autopilot_attributes_aggregate! - fetch aggregated fields from the table: "autopilot_attributes"
  • autopilot_attributes_by_pk: autopilot_attributes - fetch data from the table: "autopilot_attributes" using primary key columns
  • billing: [billing!]! - fetch data from the table: "billing"
  • billing_aggregate: billing_aggregate! - fetch aggregated fields from the table: "billing"
  • billing_by_pk: billing - fetch data from the table: "billing" using primary key columns
  • billing_usage_cost: [billing_usage_cost!]! - fetch data from the table: "billing_usage_cost"
  • billing_usage_cost_aggregate: billing_usage_cost_aggregate! - fetch aggregated fields from the table: "billing_usage_cost"
  • billing_usage_cost_by_pk: billing_usage_cost - fetch data from the table: "billing_usage_cost" using primary key columns
  • business_unit: [business_unit!]! - fetch data from the table: "business_unit"
  • business_unit_aggregate: business_unit_aggregate! - fetch aggregated fields from the table: "business_unit"
  • business_unit_by_pk: business_unit - fetch data from the table: "business_unit" using primary key columns
  • businessunit_funding: [businessunit_funding!]! - fetch data from the table: "businessunit_funding"
  • businessunit_funding_aggregate: businessunit_funding_aggregate! - fetch aggregated fields from the table: "businessunit_funding"
  • businessunit_funding_by_pk: businessunit_funding - fetch data from the table: "businessunit_funding" using primary key columns
  • businessunit_users: [businessunit_users!]! - An array relationship
  • businessunit_users_aggregate: businessunit_users_aggregate! - An aggregate relationship
  • businessunit_users_by_pk: businessunit_users - fetch data from the table: "businessunit_users" using primary key columns
  • check_cluster_health: health_check_response
  • check_license: LicenseResponse - Get License Details
  • cloud_account_attrs: [cloud_account_attrs!]! - An array relationship
  • cloud_account_attrs_aggregate: cloud_account_attrs_aggregate! - An aggregate relationship
  • cloud_account_attrs_by_pk: cloud_account_attrs - fetch data from the table: "cloud_account_attrs" using primary key columns
  • cloud_account_onboarding_errors: [cloud_account_onboarding_errors!]! - fetch data from the table: "cloud_account_onboarding_errors"
  • cloud_account_onboarding_errors_aggregate: cloud_account_onboarding_errors_aggregate! - fetch aggregated fields from the table: "cloud_account_onboarding_errors"
  • cloud_account_onboarding_errors_by_pk: cloud_account_onboarding_errors - fetch data from the table: "cloud_account_onboarding_errors" using primary key columns
  • cloud_account_score: [cloud_account_score!]! - fetch data from the table: "cloud_account_score"
  • cloud_account_score_aggregate: cloud_account_score_aggregate! - fetch aggregated fields from the table: "cloud_account_score"
  • cloud_account_score_by_pk: cloud_account_score - fetch data from the table: "cloud_account_score" using primary key columns
  • cloud_account_status_type: [cloud_account_status_type!]! - fetch data from the table: "cloud_account_status_type"
  • cloud_account_status_type_aggregate: cloud_account_status_type_aggregate! - fetch aggregated fields from the table: "cloud_account_status_type"
  • cloud_account_status_type_by_pk: cloud_account_status_type - fetch data from the table: "cloud_account_status_type" using primary key columns
  • cloud_account_sync_status_type: [cloud_account_sync_status_type!]! - fetch data from the table: "cloud_account_sync_status_type"
  • cloud_account_sync_status_type_aggregate: cloud_account_sync_status_type_aggregate! - fetch aggregated fields from the table: "cloud_account_sync_status_type"
  • cloud_account_sync_status_type_by_pk: cloud_account_sync_status_type - fetch data from the table: "cloud_account_sync_status_type" using primary key columns
  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • cloud_accounts_by_pk: cloud_accounts - fetch data from the table: "cloud_accounts" using primary key columns
  • cloud_api_permission_errors: [cloud_api_permission_errors!]! - fetch data from the table: "cloud_api_permission_errors"
  • cloud_api_permission_errors_aggregate: cloud_api_permission_errors_aggregate! - fetch aggregated fields from the table: "cloud_api_permission_errors"
  • cloud_api_permission_errors_by_pk: cloud_api_permission_errors - fetch data from the table: "cloud_api_permission_errors" using primary key columns
  • cloud_metric_groupings_v2: CloudMetricGroupingsResponse
  • cloud_provider_type: [cloud_provider_type!]! - fetch data from the table: "cloud_provider_type"
  • cloud_provider_type_aggregate: cloud_provider_type_aggregate! - fetch aggregated fields from the table: "cloud_provider_type"
  • cloud_provider_type_by_pk: cloud_provider_type - fetch data from the table: "cloud_provider_type" using primary key columns
  • cloud_resource_attributes: [cloud_resource_attributes!]! - An array relationship
  • cloud_resource_attributes_aggregate: cloud_resource_attributes_aggregate! - An aggregate relationship
  • cloud_resource_attributes_by_pk: cloud_resource_attributes - fetch data from the table: "cloud_resource_attributes" using primary key columns
  • cloud_resource_details: [cloud_resource_details!]! - fetch data from the table: "cloud_resource_details"
  • cloud_resource_details_aggregate: cloud_resource_details_aggregate! - fetch aggregated fields from the table: "cloud_resource_details"
  • cloud_resource_details_by_pk: cloud_resource_details - fetch data from the table: "cloud_resource_details" using primary key columns
  • cloud_resource_metrics: [cloud_resource_metrics!]! - An array relationship
  • cloud_resource_metrics_aggregate: cloud_resource_metrics_aggregate! - An aggregate relationship
  • cloud_resource_metrics_by_pk: cloud_resource_metrics - fetch data from the table: "cloud_resource_metrics" using primary key columns
  • cloud_resource_status_type: [cloud_resource_status_type!]! - fetch data from the table: "cloud_resource_status_type"
  • cloud_resource_status_type_aggregate: cloud_resource_status_type_aggregate! - fetch aggregated fields from the table: "cloud_resource_status_type"
  • cloud_resource_status_type_by_pk: cloud_resource_status_type - fetch data from the table: "cloud_resource_status_type" using primary key columns
  • cloud_resources_v2: [cloud_resource_v2!]!
  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • cloud_resourses_by_pk: cloud_resourses - fetch data from the table: "cloud_resourses" using primary key columns
  • configuration_store: [configuration_store!]! - fetch data from the table: "configuration_store"
  • configuration_store_aggregate: configuration_store_aggregate! - fetch aggregated fields from the table: "configuration_store"
  • configuration_store_by_pk: configuration_store - fetch data from the table: "configuration_store" using primary key columns
  • db_type: [db_type!]! - fetch data from the table: "db_type"
  • db_type_aggregate: db_type_aggregate! - fetch aggregated fields from the table: "db_type"
  • db_type_by_pk: db_type - fetch data from the table: "db_type" using primary key columns
  • dw_databases: [dw_databases!]! - fetch data from the table: "dw_databases"
  • dw_databases_aggregate: dw_databases_aggregate! - fetch aggregated fields from the table: "dw_databases"
  • dw_pipe: [dw_pipe!]! - fetch data from the table: "dw_pipe"
  • dw_pipe_aggregate: dw_pipe_aggregate! - fetch aggregated fields from the table: "dw_pipe"
  • dw_pipe_by_pk: dw_pipe - fetch data from the table: "dw_pipe" using primary key columns
  • dw_pipe_usage: [dw_pipe_usage!]! - fetch data from the table: "dw_pipe_usage"
  • dw_pipe_usage_aggregate: dw_pipe_usage_aggregate! - fetch aggregated fields from the table: "dw_pipe_usage"
  • dw_pipe_usage_by_pk: dw_pipe_usage - fetch data from the table: "dw_pipe_usage" using primary key columns
  • dw_queries: [dw_queries!]! - fetch data from the table: "dw_queries"
  • dw_queries_aggregate: dw_queries_aggregate! - fetch aggregated fields from the table: "dw_queries"
  • dw_queries_by_pk: dw_queries - fetch data from the table: "dw_queries" using primary key columns
  • dw_queries_v2: DwQueriesResponse
  • dw_query_groupings_v2: DwQueryGroupingsResponse
  • dw_query_profile_data: [dw_query_profile_data!]! - fetch data from the table: "dw_query_profile_data"
  • dw_query_profile_data_aggregate: dw_query_profile_data_aggregate! - fetch aggregated fields from the table: "dw_query_profile_data"
  • dw_query_profile_data_by_pk: dw_query_profile_data - fetch data from the table: "dw_query_profile_data" using primary key columns
  • dw_tables: [dw_tables!]! - fetch data from the table: "dw_tables"
  • dw_tables_aggregate: dw_tables_aggregate! - fetch aggregated fields from the table: "dw_tables"
  • dw_tables_by_pk: dw_tables - fetch data from the table: "dw_tables" using primary key columns
  • etl_jobs: [etl_jobs!]! - fetch data from the table: "etl_jobs"
  • etl_jobs_aggregate: etl_jobs_aggregate! - fetch aggregated fields from the table: "etl_jobs"
  • etl_jobs_by_pk: etl_jobs - fetch data from the table: "etl_jobs" using primary key columns
  • event_bulk_operations: [event_bulk_operations!]! - fetch data from the table: "event_bulk_operations"
  • event_bulk_operations_aggregate: event_bulk_operations_aggregate! - fetch aggregated fields from the table: "event_bulk_operations"
  • event_bulk_operations_by_pk: event_bulk_operations - fetch data from the table: "event_bulk_operations" using primary key columns
  • event_classification: [event_classification!]! - fetch data from the table: "event_classification"
  • event_classification_aggregate: event_classification_aggregate! - fetch aggregated fields from the table: "event_classification"
  • event_classification_by_pk: event_classification - fetch data from the table: "event_classification" using primary key columns
  • event_correlations: [event_correlations!]! - fetch data from the table: "event_correlations"
  • event_correlations_aggregate: event_correlations_aggregate! - fetch aggregated fields from the table: "event_correlations"
  • event_correlations_by_pk: event_correlations - fetch data from the table: "event_correlations" using primary key columns
  • event_duplicates: [event_duplicates!]! - fetch data from the table: "event_duplicates"
  • event_duplicates_aggregate: event_duplicates_aggregate! - fetch aggregated fields from the table: "event_duplicates"
  • event_duplicates_by_pk: event_duplicates - fetch data from the table: "event_duplicates" using primary key columns
  • event_get_filter_values: EventFilterValuesResponse - Get available filter values for events (namespace, workload, source, etc.)
  • event_groupings_v2: EventGroupingsResponse
  • event_history: [event_history!]! - fetch data from the table: "event_history"
  • event_history_aggregate: event_history_aggregate! - fetch aggregated fields from the table: "event_history"
  • event_history_by_pk: event_history - fetch data from the table: "event_history" using primary key columns
  • event_incoming_webhooks: [event_incoming_webhooks!]! - fetch data from the table: "event_incoming_webhooks"
  • event_incoming_webhooks_aggregate: event_incoming_webhooks_aggregate! - fetch aggregated fields from the table: "event_incoming_webhooks"
  • event_incoming_webhooks_by_pk: event_incoming_webhooks - fetch data from the table: "event_incoming_webhooks" using primary key columns
  • event_log_analysis: [event_log_analysis!]! - fetch data from the table: "event_log_analysis"
  • event_log_analysis_aggregate: event_log_analysis_aggregate! - fetch aggregated fields from the table: "event_log_analysis"
  • event_log_analysis_by_pk: event_log_analysis - fetch data from the table: "event_log_analysis" using primary key columns
  • event_log_analysis_status: [event_log_analysis_status!]! - fetch data from the table: "event_log_analysis_status"
  • event_log_analysis_status_aggregate: event_log_analysis_status_aggregate! - fetch aggregated fields from the table: "event_log_analysis_status"
  • event_log_analysis_status_by_pk: event_log_analysis_status - fetch data from the table: "event_log_analysis_status" using primary key columns
  • event_resolution: [event_resolution!]! - fetch data from the table: "event_resolution"
  • event_resolution_aggregate: event_resolution_aggregate! - fetch aggregated fields from the table: "event_resolution"
  • event_resolution_by_pk: event_resolution - fetch data from the table: "event_resolution" using primary key columns
  • event_rule_severity: [event_rule_severity!]! - fetch data from the table: "event_rule_severity"
  • event_rule_severity_aggregate: event_rule_severity_aggregate! - fetch aggregated fields from the table: "event_rule_severity"
  • event_rule_severity_by_pk: event_rule_severity - fetch data from the table: "event_rule_severity" using primary key columns
  • event_rule_source: [event_rule_source!]! - fetch data from the table: "event_rule_source"
  • event_rule_source_aggregate: event_rule_source_aggregate! - fetch aggregated fields from the table: "event_rule_source"
  • event_rule_source_by_pk: event_rule_source - fetch data from the table: "event_rule_source" using primary key columns
  • event_rules: [event_rules!]! - fetch data from the table: "event_rules"
  • event_rules_aggregate: event_rules_aggregate! - fetch aggregated fields from the table: "event_rules"
  • event_rules_by_pk: event_rules - fetch data from the table: "event_rules" using primary key columns
  • event_severity: [event_severity!]! - fetch data from the table: "event_severity"
  • event_severity_aggregate: event_severity_aggregate! - fetch aggregated fields from the table: "event_severity"
  • event_severity_by_pk: event_severity - fetch data from the table: "event_severity" using primary key columns
  • event_source: [event_source!]! - fetch data from the table: "event_source"
  • event_source_aggregate: event_source_aggregate! - fetch aggregated fields from the table: "event_source"
  • event_source_by_pk: event_source - fetch data from the table: "event_source" using primary key columns
  • event_status: [event_status!]! - fetch data from the table: "event_status"
  • event_status_aggregate: event_status_aggregate! - fetch aggregated fields from the table: "event_status"
  • event_status_by_pk: event_status - fetch data from the table: "event_status" using primary key columns
  • event_triage_rules: [event_triage_rules!]! - fetch data from the table: "event_triage_rules"
  • event_triage_rules_aggregate: event_triage_rules_aggregate! - fetch aggregated fields from the table: "event_triage_rules"
  • event_triage_rules_by_pk: event_triage_rules - fetch data from the table: "event_triage_rules" using primary key columns
  • events: [events!]! - An array relationship
  • events_aggregate: events_aggregate! - An aggregate relationship
  • events_by_pk: events - fetch data from the table: "events" using primary key columns
  • events_v2: EventsResponse
  • feature: [feature!]! - fetch data from the table: "feature"
  • feature_aggregate: feature_aggregate! - fetch aggregated fields from the table: "feature"
  • feature_by_pk: feature - fetch data from the table: "feature" using primary key columns
  • feature_flag: [feature_flag!]! - fetch data from the table: "feature_flag"
  • feature_flag_aggregate: feature_flag_aggregate! - fetch aggregated fields from the table: "feature_flag"
  • feature_flag_by_pk: feature_flag - fetch data from the table: "feature_flag" using primary key columns
  • funding_sources: [funding_sources!]! - An array relationship
  • funding_sources_aggregate: funding_sources_aggregate! - An aggregate relationship
  • funding_sources_by_pk: funding_sources - fetch data from the table: "funding_sources" using primary key columns
  • get_default_provider: DefaultProviderResponse
  • group_roles: [group_roles!]! - An array relationship
  • group_roles_aggregate: group_roles_aggregate! - An aggregate relationship
  • group_roles_by_pk: group_roles - fetch data from the table: "group_roles" using primary key columns
  • insight: [insight!]! - fetch data from the table: "insight"
  • insight_aggregate: insight_aggregate! - fetch aggregated fields from the table: "insight"
  • insight_by_pk: insight - fetch data from the table: "insight" using primary key columns
  • insight_severity: [insight_severity!]! - fetch data from the table: "insight_severity"
  • insight_severity_aggregate: insight_severity_aggregate! - fetch aggregated fields from the table: "insight_severity"
  • insight_severity_by_pk: insight_severity - fetch data from the table: "insight_severity" using primary key columns
  • integration_categories: [integration_categories!]! - fetch data from the table: "integration_categories"
  • integration_categories_aggregate: integration_categories_aggregate! - fetch aggregated fields from the table: "integration_categories"
  • integration_categories_by_pk: integration_categories - fetch data from the table: "integration_categories" using primary key columns
  • integration_config_values: [integration_config_values!]! - An array relationship
  • integration_config_values_aggregate: integration_config_values_aggregate! - An aggregate relationship
  • integration_config_values_by_pk: integration_config_values - fetch data from the table: "integration_config_values" using primary key columns
  • integration_sources: [integration_sources!]! - fetch data from the table: "integration_sources"
  • integration_sources_aggregate: integration_sources_aggregate! - fetch aggregated fields from the table: "integration_sources"
  • integration_sources_by_pk: integration_sources - fetch data from the table: "integration_sources" using primary key columns
  • integration_statuses: [integration_statuses!]! - fetch data from the table: "integration_statuses"
  • integration_statuses_aggregate: integration_statuses_aggregate! - fetch aggregated fields from the table: "integration_statuses"
  • integration_statuses_by_pk: integration_statuses - fetch data from the table: "integration_statuses" using primary key columns
  • integration_types: [integration_types!]! - fetch data from the table: "integration_types"
  • integration_types_aggregate: integration_types_aggregate! - fetch aggregated fields from the table: "integration_types"
  • integration_types_by_pk: integration_types - fetch data from the table: "integration_types" using primary key columns
  • integrations: [integrations!]! - fetch data from the table: "integrations"
  • integrations_aggregate: integrations_aggregate! - fetch aggregated fields from the table: "integrations"
  • integrations_by_pk: integrations - fetch data from the table: "integrations" using primary key columns
  • integrations_cloud_accounts: [integrations_cloud_accounts!]! - An array relationship
  • integrations_cloud_accounts_aggregate: integrations_cloud_accounts_aggregate! - An aggregate relationship
  • integrations_cloud_accounts_by_pk: integrations_cloud_accounts - fetch data from the table: "integrations_cloud_accounts" using primary key columns
  • integrations_get_schema: IntegrationSchemaResponse - list integrations schema
  • jira_configurations: [jira_configurations!]! - An array relationship
  • jira_configurations_aggregate: jira_configurations_aggregate! - An aggregate relationship
  • jira_configurations_by_pk: jira_configurations - fetch data from the table: "jira_configurations" using primary key columns
  • k8s_account_resource_usage: [k8s_account_resource_usage!]! - fetch data from the table: "k8s_account_resource_usage"
  • k8s_account_resource_usage_aggregate: k8s_account_resource_usage_aggregate! - fetch aggregated fields from the table: "k8s_account_resource_usage"
  • k8s_cluster_groupings_v2: K8sClusterGroupingsResponse
  • k8s_metrics_groupings_v2: K8sMetricsGroupingsResponse
  • k8s_namespace_groupings_v2: K8sNamespaceGroupingsResponse
  • k8s_namespaces: [k8s_namespaces!]! - fetch data from the table: "k8s_namespaces"
  • k8s_namespaces_aggregate: k8s_namespaces_aggregate! - fetch aggregated fields from the table: "k8s_namespaces"
  • k8s_namespaces_by_pk: k8s_namespaces - fetch data from the table: "k8s_namespaces" using primary key columns
  • k8s_namespaces_v2: K8sNamespaceResponse
  • k8s_nodes: [k8s_nodes!]! - An array relationship
  • k8s_nodes_aggregate: k8s_nodes_aggregate! - An aggregate relationship
  • k8s_nodes_by_pk: k8s_nodes - fetch data from the table: "k8s_nodes" using primary key columns
  • k8s_pod_groupings_v2: K8sPodGroupingsResponse
  • k8s_pods: [k8s_pods!]! - An array relationship
  • k8s_pods_aggregate: k8s_pods_aggregate! - An aggregate relationship
  • k8s_pods_by_pk: k8s_pods - fetch data from the table: "k8s_pods" using primary key columns
  • k8s_pods_v2: K8sPodsResponse
  • k8s_versions: [K8sVersionResponse]
  • k8s_workload_groupings_v2: K8sWorkloadGroupingsResponse
  • k8s_workloads: [k8s_workloads!]! - fetch data from the table: "k8s_workloads"
  • k8s_workloads_aggregate: k8s_workloads_aggregate! - fetch aggregated fields from the table: "k8s_workloads"
  • k8s_workloads_by_pk: k8s_workloads - fetch data from the table: "k8s_workloads" using primary key columns
  • k8s_workloads_cloud_account_monitoring_recommendations_v2: MonitoringRecommendationsResponse - in monitoring get recommendations count for workload in a account
  • k8s_workloads_cloud_account_monitoring_v2: MonitoringResponse
  • k8s_workloads_v2: K8sWorkloadResponse
  • kg_get_filter_options: kg_get_filter_options_output - get available filter options for knowledge graph (labels, attributes, node types, accounts)
  • kg_get_filter_values: kg_get_filter_values_output - get values for a specific label or attribute filter key
  • knowledge_base: [knowledge_base!]! - fetch data from the table: "knowledge_base"
  • knowledge_base_aggregate: knowledge_base_aggregate! - fetch aggregated fields from the table: "knowledge_base"
  • knowledge_base_by_pk: knowledge_base - fetch data from the table: "knowledge_base" using primary key columns
  • knowledge_graph_edge: [knowledge_graph_edge!]! - fetch data from the table: "knowledge_graph_edge"
  • knowledge_graph_edge_aggregate: knowledge_graph_edge_aggregate! - fetch aggregated fields from the table: "knowledge_graph_edge"
  • knowledge_graph_edge_by_pk: knowledge_graph_edge - fetch data from the table: "knowledge_graph_edge" using primary key columns
  • knowledge_graph_metadata: [knowledge_graph_metadata!]! - fetch data from the table: "knowledge_graph_metadata"
  • knowledge_graph_metadata_aggregate: knowledge_graph_metadata_aggregate! - fetch aggregated fields from the table: "knowledge_graph_metadata"
  • knowledge_graph_metadata_by_pk: knowledge_graph_metadata - fetch data from the table: "knowledge_graph_metadata" using primary key columns
  • knowledge_graph_node: [knowledge_graph_node!]! - fetch data from the table: "knowledge_graph_node"
  • knowledge_graph_node_aggregate: knowledge_graph_node_aggregate! - fetch aggregated fields from the table: "knowledge_graph_node"
  • knowledge_graph_node_by_pk: knowledge_graph_node - fetch data from the table: "knowledge_graph_node" using primary key columns
  • knowledge_graph_relationship_types: [knowledge_graph_relationship_types!]! - fetch data from the table: "knowledge_graph_relationship_types"
  • knowledge_graph_relationship_types_aggregate: knowledge_graph_relationship_types_aggregate! - fetch aggregated fields from the table: "knowledge_graph_relationship_types"
  • knowledge_graph_relationship_types_by_pk: knowledge_graph_relationship_types - fetch data from the table: "knowledge_graph_relationship_types" using primary key columns
  • knowledge_graph_tenant_filters: [knowledge_graph_tenant_filters!]! - fetch data from the table: "knowledge_graph_tenant_filters"
  • knowledge_graph_tenant_filters_aggregate: knowledge_graph_tenant_filters_aggregate! - fetch aggregated fields from the table: "knowledge_graph_tenant_filters"
  • knowledge_graph_tenant_filters_by_pk: knowledge_graph_tenant_filters - fetch data from the table: "knowledge_graph_tenant_filters" using primary key columns
  • llm_agents: [llm_agents!]! - fetch data from the table: "llm_agents"
  • llm_agents_aggregate: llm_agents_aggregate! - fetch aggregated fields from the table: "llm_agents"
  • llm_agents_by_pk: llm_agents - fetch data from the table: "llm_agents" using primary key columns
  • llm_agents_installation: [llm_agents_installation!]! - fetch data from the table: "llm_agents_installation"
  • llm_agents_installation_aggregate: llm_agents_installation_aggregate! - fetch aggregated fields from the table: "llm_agents_installation"
  • llm_agents_installation_by_pk: llm_agents_installation - fetch data from the table: "llm_agents_installation" using primary key columns
  • llm_conversation_agent: [llm_conversation_agent!]! - fetch data from the table: "llm_conversation_agent"
  • llm_conversation_agent_aggregate: llm_conversation_agent_aggregate! - fetch aggregated fields from the table: "llm_conversation_agent"
  • llm_conversation_agent_by_pk: llm_conversation_agent - fetch data from the table: "llm_conversation_agent" using primary key columns
  • llm_conversation_agent_critiques: [llm_conversation_agent_critiques!]! - fetch data from the table: "llm_conversation_agent_critiques"
  • llm_conversation_agent_critiques_aggregate: llm_conversation_agent_critiques_aggregate! - fetch aggregated fields from the table: "llm_conversation_agent_critiques"
  • llm_conversation_agent_critiques_by_pk: llm_conversation_agent_critiques - fetch data from the table: "llm_conversation_agent_critiques" using primary key columns
  • llm_conversation_feedback: [llm_conversation_feedback!]! - fetch data from the table: "llm_conversation_feedback"
  • llm_conversation_feedback_aggregate: llm_conversation_feedback_aggregate! - fetch aggregated fields from the table: "llm_conversation_feedback"
  • llm_conversation_feedback_by_pk: llm_conversation_feedback - fetch data from the table: "llm_conversation_feedback" using primary key columns
  • llm_conversation_feedback_v2: GetFeedbackResponse - get feedback submitted by user via session id
  • llm_conversation_history: [llm_conversation_history!]! - fetch data from the table: "llm_conversation_history"
  • llm_conversation_history_aggregate: llm_conversation_history_aggregate! - fetch aggregated fields from the table: "llm_conversation_history"
  • llm_conversation_history_by_pk: llm_conversation_history - fetch data from the table: "llm_conversation_history" using primary key columns
  • llm_conversation_messages: [llm_conversation_messages!]! - An array relationship
  • llm_conversation_messages_aggregate: llm_conversation_messages_aggregate! - An aggregate relationship
  • llm_conversation_messages_by_pk: llm_conversation_messages - fetch data from the table: "llm_conversation_messages" using primary key columns
  • llm_conversation_saved: [llm_conversation_saved!]! - fetch data from the table: "llm_conversation_saved"
  • llm_conversation_saved_aggregate: llm_conversation_saved_aggregate! - fetch aggregated fields from the table: "llm_conversation_saved"
  • llm_conversation_saved_by_pk: llm_conversation_saved - fetch data from the table: "llm_conversation_saved" using primary key columns
  • llm_conversation_tool_calls: [llm_conversation_tool_calls!]! - An array relationship
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate! - An aggregate relationship
  • llm_conversation_tool_calls_by_pk: llm_conversation_tool_calls - fetch data from the table: "llm_conversation_tool_calls" using primary key columns
  • llm_conversations: [llm_conversations!]! - An array relationship
  • llm_conversations_aggregate: llm_conversations_aggregate! - An aggregate relationship
  • llm_conversations_by_pk: llm_conversations - fetch data from the table: "llm_conversations" using primary key columns
  • llm_functions: [llm_functions!]! - fetch data from the table: "llm_functions"
  • llm_functions_aggregate: llm_functions_aggregate! - fetch aggregated fields from the table: "llm_functions"
  • llm_functions_by_pk: llm_functions - fetch data from the table: "llm_functions" using primary key columns
  • llm_model_pricing: [llm_model_pricing!]! - fetch data from the table: "llm_model_pricing"
  • llm_model_pricing_aggregate: llm_model_pricing_aggregate! - fetch aggregated fields from the table: "llm_model_pricing"
  • llm_model_pricing_by_pk: llm_model_pricing - fetch data from the table: "llm_model_pricing" using primary key columns
  • llm_rag_audit: [llm_rag_audit!]! - fetch data from the table: "llm_rag_audit"
  • llm_rag_audit_aggregate: llm_rag_audit_aggregate! - fetch aggregated fields from the table: "llm_rag_audit"
  • llm_rag_audit_by_pk: llm_rag_audit - fetch data from the table: "llm_rag_audit" using primary key columns
  • llm_rag_grouping_v2: LLMRagGroupingResponse
  • llm_rags: [llm_rags!]! - fetch data from the table: "llm_rags"
  • llm_rags_aggregate: llm_rags_aggregate! - fetch aggregated fields from the table: "llm_rags"
  • llm_rags_by_pk: llm_rags - fetch data from the table: "llm_rags" using primary key columns
  • log_group: OutputMetricQuery
  • log_index_field: [LogIndexFieldResponse] - for ES get field of indexes
  • logs_list_label_values: [OutputLogLabelValue] - Fetch Log Label Values
  • logs_list_labels: [OutputLogLabel] - Fetch Log Labels
  • logs_query: [FetchLogResponse] - Fetch Logs
  • marketplace_customers: [marketplace_customers!]! - fetch data from the table: "marketplace_customers"
  • marketplace_customers_aggregate: marketplace_customers_aggregate! - fetch aggregated fields from the table: "marketplace_customers"
  • marketplace_customers_by_pk: marketplace_customers - fetch data from the table: "marketplace_customers" using primary key columns
  • messaging_platforms: [messaging_platforms!]! - fetch data from the table: "messaging_platforms"
  • messaging_platforms_aggregate: messaging_platforms_aggregate! - fetch aggregated fields from the table: "messaging_platforms"
  • messaging_platforms_by_pk: messaging_platforms - fetch data from the table: "messaging_platforms" using primary key columns
  • messaging_platforms_type: [messaging_platforms_type!]! - fetch data from the table: "messaging_platforms_type"
  • messaging_platforms_type_aggregate: messaging_platforms_type_aggregate! - fetch aggregated fields from the table: "messaging_platforms_type"
  • messaging_platforms_type_by_pk: messaging_platforms_type - fetch data from the table: "messaging_platforms_type" using primary key columns
  • metric_groupings_v2: MetricGroupingsResponse
  • metrics_list: [OutputMetrics]
  • metrics_list_label_values: [OutputMetricsLabelValues]
  • metrics_list_labels: [OutputMetricLabels]
  • metrics_query: OutputMetricQuery
  • metrics_query_utilisation: OutputMetricQuery
  • metrics_summary: [metrics_summary!]! - fetch data from the table: "metrics_summary"
  • metrics_summary_aggregate: metrics_summary_aggregate! - fetch aggregated fields from the table: "metrics_summary"
  • metrics_summary_by_pk: metrics_summary - fetch data from the table: "metrics_summary" using primary key columns
  • ml_get_metrics: metrics_response - To get metrics from ml-server
  • ml_get_recommendation: recommendation_response - Hit ML Server to get Recommendations
  • ms_teams_channels: [ms_teams_channels!]! - fetch data from the table: "ms_teams_channels"
  • ms_teams_channels_aggregate: ms_teams_channels_aggregate! - fetch aggregated fields from the table: "ms_teams_channels"
  • ms_teams_channels_by_pk: ms_teams_channels - fetch data from the table: "ms_teams_channels" using primary key columns
  • nb_versions: NBVersionResponse
  • notification_channel_account_mappings: [notification_channel_account_mappings!]! - fetch data from the table: "notification_channel_account_mappings"
  • notification_channel_account_mappings_aggregate: notification_channel_account_mappings_aggregate! - fetch aggregated fields from the table: "notification_channel_account_mappings"
  • notification_channel_account_mappings_by_pk: notification_channel_account_mappings - fetch data from the table: "notification_channel_account_mappings" using primary key columns
  • notification_get_channel_list: notification_channel_list_resp - Get Notification Service Channels
  • notification_get_user_list: notification_user_list_resp - Get Notification Service Users
  • notification_platform_types: [notification_platform_types!]! - fetch data from the table: "notification_platform_types"
  • notification_platform_types_aggregate: notification_platform_types_aggregate! - fetch aggregated fields from the table: "notification_platform_types"
  • notification_platform_types_by_pk: notification_platform_types - fetch data from the table: "notification_platform_types" using primary key columns
  • notification_rule_mappings: [notification_rule_mappings!]! - fetch data from the table: "notification_rule_mappings"
  • notification_rule_mappings_aggregate: notification_rule_mappings_aggregate! - fetch aggregated fields from the table: "notification_rule_mappings"
  • notification_rule_mappings_by_pk: notification_rule_mappings - fetch data from the table: "notification_rule_mappings" using primary key columns
  • notification_rules: [notification_rules!]! - fetch data from the table: "notification_rules"
  • notification_rules_aggregate: notification_rules_aggregate! - fetch aggregated fields from the table: "notification_rules"
  • notification_rules_by_pk: notification_rules - fetch data from the table: "notification_rules" using primary key columns
  • notification_severity_type: [notification_severity_type!]! - fetch data from the table: "notification_severity_type"
  • notification_severity_type_aggregate: notification_severity_type_aggregate! - fetch aggregated fields from the table: "notification_severity_type"
  • notification_severity_type_by_pk: notification_severity_type - fetch data from the table: "notification_severity_type" using primary key columns
  • notification_source_type: [notification_source_type!]! - fetch data from the table: "notification_source_type"
  • notification_source_type_aggregate: notification_source_type_aggregate! - fetch aggregated fields from the table: "notification_source_type"
  • notification_source_type_by_pk: notification_source_type - fetch data from the table: "notification_source_type" using primary key columns
  • notification_user: [notification_user!]! - fetch data from the table: "notification_user"
  • notification_user_aggregate: notification_user_aggregate! - fetch aggregated fields from the table: "notification_user"
  • notification_user_by_pk: notification_user - fetch data from the table: "notification_user" using primary key columns
  • notification_user_status_type: [notification_user_status_type!]! - fetch data from the table: "notification_user_status_type"
  • notification_user_status_type_aggregate: notification_user_status_type_aggregate! - fetch aggregated fields from the table: "notification_user_status_type"
  • notification_user_status_type_by_pk: notification_user_status_type - fetch data from the table: "notification_user_status_type" using primary key columns
  • notifications: [notifications!]! - An array relationship
  • notifications_aggregate: notifications_aggregate! - An aggregate relationship
  • notifications_by_pk: notifications - fetch data from the table: "notifications" using primary key columns
  • notifications_delivery_mode_type: [notifications_delivery_mode_type!]! - fetch data from the table: "notifications_delivery_mode_type"
  • notifications_delivery_mode_type_aggregate: notifications_delivery_mode_type_aggregate! - fetch aggregated fields from the table: "notifications_delivery_mode_type"
  • notifications_delivery_mode_type_by_pk: notifications_delivery_mode_type - fetch data from the table: "notifications_delivery_mode_type" using primary key columns
  • notifications_frequency_type: [notifications_frequency_type!]! - fetch data from the table: "notifications_frequency_type"
  • notifications_frequency_type_aggregate: notifications_frequency_type_aggregate! - fetch aggregated fields from the table: "notifications_frequency_type"
  • notifications_frequency_type_by_pk: notifications_frequency_type - fetch data from the table: "notifications_frequency_type" using primary key columns
  • project_accounts: [project_accounts!]! - An array relationship
  • project_accounts_aggregate: project_accounts_aggregate! - An aggregate relationship
  • project_accounts_by_pk: project_accounts - fetch data from the table: "project_accounts" using primary key columns
  • project_category_type: [project_category_type!]! - fetch data from the table: "project_category_type"
  • project_category_type_aggregate: project_category_type_aggregate! - fetch aggregated fields from the table: "project_category_type"
  • project_category_type_by_pk: project_category_type - fetch data from the table: "project_category_type" using primary key columns
  • project_cloud_resources: [project_cloud_resources!]! - An array relationship
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate! - An aggregate relationship
  • project_cloud_resources_by_pk: project_cloud_resources - fetch data from the table: "project_cloud_resources" using primary key columns
  • project_fundings: [project_fundings!]! - An array relationship
  • project_fundings_aggregate: project_fundings_aggregate! - An aggregate relationship
  • project_fundings_by_pk: project_fundings - fetch data from the table: "project_fundings" using primary key columns
  • project_users: [project_users!]! - An array relationship
  • project_users_aggregate: project_users_aggregate! - An aggregate relationship
  • project_users_by_pk: project_users - fetch data from the table: "project_users" using primary key columns
  • projects: [projects!]! - An array relationship
  • projects_aggregate: projects_aggregate! - An aggregate relationship
  • projects_by_pk: projects - fetch data from the table: "projects" using primary key columns
  • recommendation: [recommendation!]! - fetch data from the table: "recommendation"
  • recommendation_action_type: [recommendation_action_type!]! - fetch data from the table: "recommendation_action_type"
  • recommendation_action_type_aggregate: recommendation_action_type_aggregate! - fetch aggregated fields from the table: "recommendation_action_type"
  • recommendation_action_type_by_pk: recommendation_action_type - fetch data from the table: "recommendation_action_type" using primary key columns
  • recommendation_aggregate: recommendation_aggregate! - fetch aggregated fields from the table: "recommendation"
  • recommendation_by_pk: recommendation - fetch data from the table: "recommendation" using primary key columns
  • recommendation_category_type: [recommendation_category_type!]! - fetch data from the table: "recommendation_category_type"
  • recommendation_category_type_aggregate: recommendation_category_type_aggregate! - fetch aggregated fields from the table: "recommendation_category_type"
  • recommendation_category_type_by_pk: recommendation_category_type - fetch data from the table: "recommendation_category_type" using primary key columns
  • recommendation_groupings_v2: RecommendationGroupingResponse
  • recommendation_missconfig_groupings_v2: RecommendationMissConfigGroupingResponse
  • recommendation_missconfig_v2: RecommendationMissConfigResponse
  • recommendation_resolution: [recommendation_resolution!]! - fetch data from the table: "recommendation_resolution"
  • recommendation_resolution_aggregate: recommendation_resolution_aggregate! - fetch aggregated fields from the table: "recommendation_resolution"
  • recommendation_resolution_by_pk: recommendation_resolution - fetch data from the table: "recommendation_resolution" using primary key columns
  • recommendation_security_cis_groupings_v2: RecommendationSecurityCisGroupingsResponse
  • recommendation_security_groupings_v2: RecommendationSecurityGroupingsResponse
  • recommendation_security_v2: RecommendationSecurityResponse
  • recommendation_severity_type: [recommendation_severity_type!]! - fetch data from the table: "recommendation_severity_type"
  • recommendation_severity_type_aggregate: recommendation_severity_type_aggregate! - fetch aggregated fields from the table: "recommendation_severity_type"
  • recommendation_severity_type_by_pk: recommendation_severity_type - fetch data from the table: "recommendation_severity_type" using primary key columns
  • recommendation_status_type: [recommendation_status_type!]! - fetch data from the table: "recommendation_status_type"
  • recommendation_status_type_aggregate: recommendation_status_type_aggregate! - fetch aggregated fields from the table: "recommendation_status_type"
  • recommendation_status_type_by_pk: recommendation_status_type - fetch data from the table: "recommendation_status_type" using primary key columns
  • recommendations_v2: RecommendationResponse
  • resource_groupings_v2: ResourceGroupingsResponse
  • roles: [roles!]! - fetch data from the table: "roles"
  • roles_aggregate: roles_aggregate! - fetch aggregated fields from the table: "roles"
  • roles_by_pk: roles - fetch data from the table: "roles" using primary key columns
  • runbook_action: [runbook_action!]! - fetch data from the table: "runbook_action"
  • runbook_action_aggregate: runbook_action_aggregate! - fetch aggregated fields from the table: "runbook_action"
  • runbook_action_by_pk: runbook_action - fetch data from the table: "runbook_action" using primary key columns
  • runbook_action_library: [runbook_action_library!]! - fetch data from the table: "runbook_action_library"
  • runbook_action_library_aggregate: runbook_action_library_aggregate! - fetch aggregated fields from the table: "runbook_action_library"
  • runbook_action_library_by_pk: runbook_action_library - fetch data from the table: "runbook_action_library" using primary key columns
  • runbook_action_status: [runbook_action_status!]! - fetch data from the table: "runbook_action_status"
  • runbook_action_status_aggregate: runbook_action_status_aggregate! - fetch aggregated fields from the table: "runbook_action_status"
  • runbook_action_status_by_pk: runbook_action_status - fetch data from the table: "runbook_action_status" using primary key columns
  • runbook_task_output: [runbook_task_output!]! - fetch data from the table: "runbook_task_output"
  • runbook_task_output_aggregate: runbook_task_output_aggregate! - fetch aggregated fields from the table: "runbook_task_output"
  • runbook_task_output_by_pk: runbook_task_output - fetch data from the table: "runbook_task_output" using primary key columns
  • schedule_unit_type: [schedule_unit_type!]! - fetch data from the table: "schedule_unit_type"
  • schedule_unit_type_aggregate: schedule_unit_type_aggregate! - fetch aggregated fields from the table: "schedule_unit_type"
  • schedule_unit_type_by_pk: schedule_unit_type - fetch data from the table: "schedule_unit_type" using primary key columns
  • sent_notifications: [sent_notifications!]! - fetch data from the table: "sent_notifications"
  • sent_notifications_aggregate: sent_notifications_aggregate! - fetch aggregated fields from the table: "sent_notifications"
  • sent_notifications_by_pk: sent_notifications - fetch data from the table: "sent_notifications" using primary key columns
  • slack_bots: [slack_bots!]! - fetch data from the table: "slack_bots"
  • slack_bots_aggregate: slack_bots_aggregate! - fetch aggregated fields from the table: "slack_bots"
  • slack_bots_by_pk: slack_bots - fetch data from the table: "slack_bots" using primary key columns
  • slack_oauth_states: [slack_oauth_states!]! - fetch data from the table: "slack_oauth_states"
  • slack_oauth_states_aggregate: slack_oauth_states_aggregate! - fetch aggregated fields from the table: "slack_oauth_states"
  • slack_oauth_states_by_pk: slack_oauth_states - fetch data from the table: "slack_oauth_states" using primary key columns
  • slo_config: [slo_config!]! - fetch data from the table: "slo_config"
  • slo_config_aggregate: slo_config_aggregate! - fetch aggregated fields from the table: "slo_config"
  • slo_config_by_pk: slo_config - fetch data from the table: "slo_config" using primary key columns
  • slo_report: [slo_report!]! - fetch data from the table: "slo_report"
  • slo_report_aggregate: slo_report_aggregate! - fetch aggregated fields from the table: "slo_report"
  • slo_report_by_pk: slo_report - fetch data from the table: "slo_report" using primary key columns
  • slo_report_observation_v2: SloReportObservationResponse - get slo report observation
  • slo_status: [slo_status!]! - fetch data from the table: "slo_status"
  • slo_status_aggregate: slo_status_aggregate! - fetch aggregated fields from the table: "slo_status"
  • slo_status_by_pk: slo_status - fetch data from the table: "slo_status" using primary key columns
  • spend_groupings_v2: SpendGroupingsResponse
  • spends: [spends!]! - An array relationship
  • spends_aggregate: spends_aggregate! - An aggregate relationship
  • spends_by_pk: spends - fetch data from the table: "spends" using primary key columns
  • spends_resource_group_type: [spends_resource_group_type!]! - fetch data from the table: "spends_resource_group_type"
  • spends_resource_group_type_aggregate: spends_resource_group_type_aggregate! - fetch aggregated fields from the table: "spends_resource_group_type"
  • spends_resource_group_type_by_pk: spends_resource_group_type - fetch data from the table: "spends_resource_group_type" using primary key columns
  • spends_v2: SpendsResponse
  • tenant: [tenant!]! - fetch data from the table: "tenant"
  • tenant_aggregate: tenant_aggregate! - fetch aggregated fields from the table: "tenant"
  • tenant_attrs: [tenant_attrs!]! - An array relationship
  • tenant_attrs_aggregate: tenant_attrs_aggregate! - An aggregate relationship
  • tenant_attrs_by_pk: tenant_attrs - fetch data from the table: "tenant_attrs" using primary key columns
  • tenant_by_pk: tenant - fetch data from the table: "tenant" using primary key columns
  • tenant_list_all: [tenant_list_all_output!]! - List all tenants (super admin only)
  • tenant_onboarding: [tenant_onboarding!]! - fetch data from the table: "tenant_onboarding"
  • tenant_onboarding_aggregate: tenant_onboarding_aggregate! - fetch aggregated fields from the table: "tenant_onboarding"
  • tenant_onboarding_by_pk: tenant_onboarding - fetch data from the table: "tenant_onboarding" using primary key columns
  • tenant_type: [tenant_type!]! - fetch data from the table: "tenant_type"
  • tenant_type_aggregate: tenant_type_aggregate! - fetch aggregated fields from the table: "tenant_type"
  • tenant_type_by_pk: tenant_type - fetch data from the table: "tenant_type" using primary key columns
  • tenant_users: [tenant_users!]! - An array relationship
  • tenant_users_aggregate: tenant_users_aggregate! - An aggregate relationship
  • tenant_users_by_pk: tenant_users - fetch data from the table: "tenant_users" using primary key columns
  • ticket_get_comments: TicketComments!
  • ticket_groupings_v2: TicketGroupingsResponse
  • ticket_severity_type: [ticket_severity_type!]! - fetch data from the table: "ticket_severity_type"
  • ticket_severity_type_aggregate: ticket_severity_type_aggregate! - fetch aggregated fields from the table: "ticket_severity_type"
  • ticket_severity_type_by_pk: ticket_severity_type - fetch data from the table: "ticket_severity_type" using primary key columns
  • ticket_source_type: [ticket_source_type!]! - fetch data from the table: "ticket_source_type"
  • ticket_source_type_aggregate: ticket_source_type_aggregate! - fetch aggregated fields from the table: "ticket_source_type"
  • ticket_source_type_by_pk: ticket_source_type - fetch data from the table: "ticket_source_type" using primary key columns
  • ticket_tool_types: [ticket_tool_types!]! - fetch data from the table: "ticket_tool_types"
  • ticket_tool_types_aggregate: ticket_tool_types_aggregate! - fetch aggregated fields from the table: "ticket_tool_types"
  • ticket_tool_types_by_pk: ticket_tool_types - fetch data from the table: "ticket_tool_types" using primary key columns
  • tickets: [tickets!]! - An array relationship
  • tickets_aggregate: tickets_aggregate! - An aggregate relationship
  • tickets_by_pk: tickets - fetch data from the table: "tickets" using primary key columns
  • tickets_get_create_meta: ticket_create_meta_response
  • tickets_get_field_values: ticket_field_values_response
  • traces_counts: TracesV3CountResponse
  • traces_grouping_count_v3: TracesGroupV3CountResponse
  • traces_grouping_v3: [TraceGroupingValues]! - get traces aggregated data for workloads
  • traces_groupings_v2: TracesGroupResponse - Trace grouping can also be used for counting
  • traces_heat_map: [TraceHeatMapOutput]
  • traces_heatmap_v2: TracesHeatMapResponse - Trace heatmap
  • traces_label_values: TracesV3LabelValuesResponse
  • traces_query: [TracesOutputResponse]!
  • traces_v2: TracesResponse
  • upgrade_plan: [upgrade_plan!]! - fetch data from the table: "upgrade_plan"
  • upgrade_plan_aggregate: upgrade_plan_aggregate! - fetch aggregated fields from the table: "upgrade_plan"
  • upgrade_plan_audit: [upgrade_plan_audit!]! - fetch data from the table: "upgrade_plan_audit"
  • upgrade_plan_audit_aggregate: upgrade_plan_audit_aggregate! - fetch aggregated fields from the table: "upgrade_plan_audit"
  • upgrade_plan_audit_by_pk: upgrade_plan_audit - fetch data from the table: "upgrade_plan_audit" using primary key columns
  • upgrade_plan_by_pk: upgrade_plan - fetch data from the table: "upgrade_plan" using primary key columns
  • upgrade_plan_fetch_all: [UpgradePlanResponse]
  • upgrade_plan_fetch_one: UpgradePlanResponse
  • upgrade_plan_status_type: [upgrade_plan_status_type!]! - fetch data from the table: "upgrade_plan_status_type"
  • upgrade_plan_status_type_aggregate: upgrade_plan_status_type_aggregate! - fetch aggregated fields from the table: "upgrade_plan_status_type"
  • upgrade_plan_status_type_by_pk: upgrade_plan_status_type - fetch data from the table: "upgrade_plan_status_type" using primary key columns
  • upgrade_plan_steps: [upgrade_plan_steps!]! - fetch data from the table: "upgrade_plan_steps"
  • upgrade_plan_steps_aggregate: upgrade_plan_steps_aggregate! - fetch aggregated fields from the table: "upgrade_plan_steps"
  • upgrade_plan_steps_by_pk: upgrade_plan_steps - fetch data from the table: "upgrade_plan_steps" using primary key columns
  • upgrade_plan_tasks: [upgrade_plan_tasks!]! - fetch data from the table: "upgrade_plan_tasks"
  • upgrade_plan_tasks_aggregate: upgrade_plan_tasks_aggregate! - fetch aggregated fields from the table: "upgrade_plan_tasks"
  • upgrade_plan_tasks_by_pk: upgrade_plan_tasks - fetch data from the table: "upgrade_plan_tasks" using primary key columns
  • user_attrs: [user_attrs!]! - An array relationship
  • user_attrs_aggregate: user_attrs_aggregate! - An aggregate relationship
  • user_attrs_by_pk: user_attrs - fetch data from the table: "user_attrs" using primary key columns
  • user_auths: [user_auths!]! - An array relationship
  • user_auths_aggregate: user_auths_aggregate! - An aggregate relationship
  • user_auths_by_pk: user_auths - fetch data from the table: "user_auths" using primary key columns
  • user_groups: [user_groups!]! - An array relationship
  • user_groups_aggregate: user_groups_aggregate! - An aggregate relationship
  • user_groups_by_pk: user_groups - fetch data from the table: "user_groups" using primary key columns
  • user_history: [user_history!]! - fetch data from the table: "user_history"
  • user_history_aggregate: user_history_aggregate! - fetch aggregated fields from the table: "user_history"
  • user_history_by_pk: user_history - fetch data from the table: "user_history" using primary key columns
  • user_roles: [user_roles!]! - An array relationship
  • user_roles_aggregate: user_roles_aggregate! - An aggregate relationship
  • user_roles_by_pk: user_roles - fetch data from the table: "user_roles" using primary key columns
  • user_status_type: [user_status_type!]! - fetch data from the table: "user_status_type"
  • user_status_type_aggregate: user_status_type_aggregate! - fetch aggregated fields from the table: "user_status_type"
  • user_status_type_by_pk: user_status_type - fetch data from the table: "user_status_type" using primary key columns
  • usergroup_users: [usergroup_users!]! - An array relationship
  • usergroup_users_aggregate: usergroup_users_aggregate! - An aggregate relationship
  • usergroup_users_by_pk: usergroup_users - fetch data from the table: "usergroup_users" using primary key columns
  • users: [users!]! - An array relationship
  • users_aggregate: users_aggregate! - An aggregate relationship
  • users_by_pk: users - fetch data from the table: "users" using primary key columns
  • users_by_tenant_v2: UsersByTenantResponse
  • users_list_token: UserAuthTokenResponse
  • workflow_get: Workflow
  • workflow_get_count: WorkflowCountResponse
  • workflow_get_execution: WorkflowExecutionGetResponse
  • workflow_get_execution_count: WorkflowExecutionCountResponse
  • workflow_list: WorkflowListResponse
  • workflow_list_executions: WorkflowExecutionListResponse
  • workflow_list_taskdefinitions: WorkflowTaskDefinitionListResponse
resource_filter_request

Fields:

  • name: String!
  • namespace: String!
  • type: String!
runbook_action

stores user defined custom action for runbook

Fields:

  • account_type: String
  • action_name: String!
  • attributes: jsonb!
  • base_action_configs: jsonb!
  • configs: jsonb!
  • created_at: timestamp!
  • created_by: uuid
  • description: String
  • id: uuid!
  • internal_identifier: String!
  • is_system_action: Boolean!
  • library_id: uuid!
  • llm_enabled: Boolean!
  • llm_prompt: String
  • runbook_action_library: runbook_action_library! - An object relationship
  • runbook_action_status: runbook_action_status! - An object relationship
  • status: String!
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: users - An object relationship
runbook_action_aggregate

aggregated selection of "runbook_action"

Fields:

  • aggregate: runbook_action_aggregate_fields
  • nodes: [runbook_action!]!
runbook_action_aggregate_bool_exp_bool_and

Fields:

  • arguments: runbook_action_select_column_runbook_action_aggregate_bool_exp_bool_and_arguments_columns!
  • distinct: Boolean
  • filter: runbook_action_bool_exp
  • predicate: Boolean_comparison_exp!
runbook_action_aggregate_bool_exp_bool_or

Fields:

  • arguments: runbook_action_select_column_runbook_action_aggregate_bool_exp_bool_or_arguments_columns!
  • distinct: Boolean
  • filter: runbook_action_bool_exp
  • predicate: Boolean_comparison_exp!
runbook_action_library

stores library for for runbook custom actions

Fields:

  • attributes: jsonb!
  • created_at: timestamp!
  • id: uuid!
  • library_name: String!
  • runbook_actions: [runbook_action!]! - An array relationship
  • runbook_actions_aggregate: runbook_action_aggregate! - An aggregate relationship
  • tenant_id: uuid
runbook_action_library_aggregate

aggregated selection of "runbook_action_library"

Fields:

  • aggregate: runbook_action_library_aggregate_fields
  • nodes: [runbook_action_library!]!
runbook_action_library_updates

Fields:

  • _append: runbook_action_library_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: runbook_action_library_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: runbook_action_library_delete_elem_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_key: runbook_action_library_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: runbook_action_library_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: runbook_action_library_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_action_library_bool_exp! - filter the rows which have to be updated
runbook_action_select_column_runbook_action_aggregate_bool_exp_bool_and_arguments_columns

select "runbook_action_aggregate_bool_exp_bool_and_arguments_columns" columns of table "runbook_action"

Values:

  • is_system_action - column name
  • llm_enabled - column name
runbook_action_select_column_runbook_action_aggregate_bool_exp_bool_or_arguments_columns

select "runbook_action_aggregate_bool_exp_bool_or_arguments_columns" columns of table "runbook_action"

Values:

  • is_system_action - column name
  • llm_enabled - column name
runbook_action_status

stores enum for custom action status for enum

Fields:

  • description: String
  • value: String!
runbook_action_status_aggregate

aggregated selection of "runbook_action_status"

Fields:

  • aggregate: runbook_action_status_aggregate_fields
  • nodes: [runbook_action_status!]!
runbook_action_status_input

Fields:

  • account_id: uuid!
  • ids: [uuid!]
  • status: String!
runbook_action_status_output

Fields:

  • status: String!
runbook_action_status_updates

Fields:

  • _set: runbook_action_status_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_action_status_bool_exp! - filter the rows which have to be updated
runbook_action_updates

Fields:

  • _append: runbook_action_append_input - append existing jsonb value of filtered columns with new jsonb value
  • _delete_at_path: runbook_action_delete_at_path_input - delete the field or element with specified path (for JSON arrays, negative integers count from the end)
  • _delete_elem: runbook_action_delete_elem_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_key: runbook_action_delete_key_input - delete key/value pair or string element. key/value pairs are matched based on their key value
  • _prepend: runbook_action_prepend_input - prepend existing jsonb value of filtered columns with new jsonb value
  • _set: runbook_action_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_action_bool_exp! - filter the rows which have to be updated
runbook_task_output

to store file ouput for runbook tasks

Fields:

  • account_id: uuid!
  • auto_playbook_task: auto_playbook_task! - An object relationship
  • id: uuid!
  • output: bytea!
  • runbook_id: uuid!
  • task_id: uuid!
  • tenant_id: uuid!
runbook_task_output_aggregate

aggregated selection of "runbook_task_output"

Fields:

  • aggregate: runbook_task_output_aggregate_fields
  • nodes: [runbook_task_output!]!
runbook_task_output_updates

Fields:

  • _set: runbook_task_output_set_input - sets the columns of the filtered rows to the given values
  • where: runbook_task_output_bool_exp! - filter the rows which have to be updated
schedule_unit_type

columns and relationships of "schedule_unit_type"

Fields:

  • value: String!
schedule_unit_type_aggregate

aggregated selection of "schedule_unit_type"

Fields:

  • aggregate: schedule_unit_type_aggregate_fields
  • nodes: [schedule_unit_type!]!
schedule_unit_type_updates

Fields:

  • _set: schedule_unit_type_set_input - sets the columns of the filtered rows to the given values
  • where: schedule_unit_type_bool_exp! - filter the rows which have to be updated
sent_notifications

columns and relationships of "sent_notifications"

Fields:

  • account_id: uuid
  • created_at: timestamp!
  • fingerprint: String!
  • id: uuid!
  • slack_metadata: String
  • slack_team_id: String
  • slack_thread_id: String
  • teams_channel_id: String
  • teams_message_id: String
  • teams_metadata: String
  • tenant_id: uuid!
  • updated_at: timestamp!
sent_notifications_aggregate

aggregated selection of "sent_notifications"

Fields:

  • aggregate: sent_notifications_aggregate_fields
  • nodes: [sent_notifications!]!
sent_notifications_updates

Fields:

  • _set: sent_notifications_set_input - sets the columns of the filtered rows to the given values
  • where: sent_notifications_bool_exp! - filter the rows which have to be updated
subscription_root

Fields:

  • account_env_type: [account_env_type!]! - fetch data from the table: "account_env_type"
  • account_env_type_aggregate: account_env_type_aggregate! - fetch aggregated fields from the table: "account_env_type"
  • account_env_type_by_pk: account_env_type - fetch data from the table: "account_env_type" using primary key columns
  • account_env_type_stream: [account_env_type!]! - fetch data from the table in a streaming manner: "account_env_type"
  • account_purpose_type: [account_purpose_type!]! - fetch data from the table: "account_purpose_type"
  • account_purpose_type_aggregate: account_purpose_type_aggregate! - fetch aggregated fields from the table: "account_purpose_type"
  • account_purpose_type_by_pk: account_purpose_type - fetch data from the table: "account_purpose_type" using primary key columns
  • account_purpose_type_stream: [account_purpose_type!]! - fetch data from the table in a streaming manner: "account_purpose_type"
  • active_resources: [active_resources!]! - fetch data from the table: "active_resources"
  • active_resources_aggregate: active_resources_aggregate! - fetch aggregated fields from the table: "active_resources"
  • active_resources_by_pk: active_resources - fetch data from the table: "active_resources" using primary key columns
  • active_resources_stream: [active_resources!]! - fetch data from the table in a streaming manner: "active_resources"
  • agent: [agent!]! - fetch data from the table: "agent"
  • agent_aggregate: agent_aggregate! - fetch aggregated fields from the table: "agent"
  • agent_audit_log: [agent_audit_log!]! - fetch data from the table: "agent_audit_log"
  • agent_audit_log_aggregate: agent_audit_log_aggregate! - fetch aggregated fields from the table: "agent_audit_log"
  • agent_audit_log_by_pk: agent_audit_log - fetch data from the table: "agent_audit_log" using primary key columns
  • agent_audit_log_stream: [agent_audit_log!]! - fetch data from the table in a streaming manner: "agent_audit_log"
  • agent_by_pk: agent - fetch data from the table: "agent" using primary key columns
  • agent_playbook: [agent_playbook!]! - fetch data from the table: "agent_playbook"
  • agent_playbook_action: [agent_playbook_action!]! - fetch data from the table: "agent_playbook_action"
  • agent_playbook_action_aggregate: agent_playbook_action_aggregate! - fetch aggregated fields from the table: "agent_playbook_action"
  • agent_playbook_action_by_pk: agent_playbook_action - fetch data from the table: "agent_playbook_action" using primary key columns
  • agent_playbook_action_stream: [agent_playbook_action!]! - fetch data from the table in a streaming manner: "agent_playbook_action"
  • agent_playbook_aggregate: agent_playbook_aggregate! - fetch aggregated fields from the table: "agent_playbook"
  • agent_playbook_by_pk: agent_playbook - fetch data from the table: "agent_playbook" using primary key columns
  • agent_playbook_processor: [agent_playbook_processor!]! - fetch data from the table: "agent_playbook_processor"
  • agent_playbook_processor_aggregate: agent_playbook_processor_aggregate! - fetch aggregated fields from the table: "agent_playbook_processor"
  • agent_playbook_processor_by_pk: agent_playbook_processor - fetch data from the table: "agent_playbook_processor" using primary key columns
  • agent_playbook_processor_stream: [agent_playbook_processor!]! - fetch data from the table in a streaming manner: "agent_playbook_processor"
  • agent_playbook_source: [agent_playbook_source!]! - fetch data from the table: "agent_playbook_source"
  • agent_playbook_source_aggregate: agent_playbook_source_aggregate! - fetch aggregated fields from the table: "agent_playbook_source"
  • agent_playbook_source_by_pk: agent_playbook_source - fetch data from the table: "agent_playbook_source" using primary key columns
  • agent_playbook_source_stream: [agent_playbook_source!]! - fetch data from the table in a streaming manner: "agent_playbook_source"
  • agent_playbook_stream: [agent_playbook!]! - fetch data from the table in a streaming manner: "agent_playbook"
  • agent_playbook_trigger: [agent_playbook_trigger!]! - fetch data from the table: "agent_playbook_trigger"
  • agent_playbook_trigger_aggregate: agent_playbook_trigger_aggregate! - fetch aggregated fields from the table: "agent_playbook_trigger"
  • agent_playbook_trigger_by_pk: agent_playbook_trigger - fetch data from the table: "agent_playbook_trigger" using primary key columns
  • agent_playbook_trigger_stream: [agent_playbook_trigger!]! - fetch data from the table in a streaming manner: "agent_playbook_trigger"
  • agent_stream: [agent!]! - fetch data from the table in a streaming manner: "agent"
  • agent_task: [agent_task!]! - fetch data from the table: "agent_task"
  • agent_task_aggregate: agent_task_aggregate! - fetch aggregated fields from the table: "agent_task"
  • agent_task_by_pk: agent_task - fetch data from the table: "agent_task" using primary key columns
  • agent_task_stream: [agent_task!]! - fetch data from the table in a streaming manner: "agent_task"
  • anomaly: [anomaly!]! - fetch data from the table: "anomaly"
  • anomaly_aggregate: anomaly_aggregate! - fetch aggregated fields from the table: "anomaly"
  • anomaly_by_pk: anomaly - fetch data from the table: "anomaly" using primary key columns
  • anomaly_change_operator: [anomaly_change_operator!]! - fetch data from the table: "anomaly_change_operator"
  • anomaly_change_operator_aggregate: anomaly_change_operator_aggregate! - fetch aggregated fields from the table: "anomaly_change_operator"
  • anomaly_change_operator_by_pk: anomaly_change_operator - fetch data from the table: "anomaly_change_operator" using primary key columns
  • anomaly_change_operator_stream: [anomaly_change_operator!]! - fetch data from the table in a streaming manner: "anomaly_change_operator"
  • anomaly_config: [anomaly_config!]! - fetch data from the table: "anomaly_config"
  • anomaly_config_aggregate: anomaly_config_aggregate! - fetch aggregated fields from the table: "anomaly_config"
  • anomaly_config_by_pk: anomaly_config - fetch data from the table: "anomaly_config" using primary key columns
  • anomaly_config_stream: [anomaly_config!]! - fetch data from the table in a streaming manner: "anomaly_config"
  • anomaly_config_type: [anomaly_config_type!]! - fetch data from the table: "anomaly_config_type"
  • anomaly_config_type_aggregate: anomaly_config_type_aggregate! - fetch aggregated fields from the table: "anomaly_config_type"
  • anomaly_config_type_by_pk: anomaly_config_type - fetch data from the table: "anomaly_config_type" using primary key columns
  • anomaly_config_type_stream: [anomaly_config_type!]! - fetch data from the table in a streaming manner: "anomaly_config_type"
  • anomaly_stream: [anomaly!]! - fetch data from the table in a streaming manner: "anomaly"
  • anomaly_type: [anomaly_type!]! - fetch data from the table: "anomaly_type"
  • anomaly_type_aggregate: anomaly_type_aggregate! - fetch aggregated fields from the table: "anomaly_type"
  • anomaly_type_by_pk: anomaly_type - fetch data from the table: "anomaly_type" using primary key columns
  • anomaly_type_stream: [anomaly_type!]! - fetch data from the table in a streaming manner: "anomaly_type"
  • application_group: [application_group!]! - fetch data from the table: "application_group"
  • application_group_aggregate: application_group_aggregate! - fetch aggregated fields from the table: "application_group"
  • application_group_by_pk: application_group - fetch data from the table: "application_group" using primary key columns
  • application_group_mapping: [application_group_mapping!]! - fetch data from the table: "application_group_mapping"
  • application_group_mapping_aggregate: application_group_mapping_aggregate! - fetch aggregated fields from the table: "application_group_mapping"
  • application_group_mapping_by_pk: application_group_mapping - fetch data from the table: "application_group_mapping" using primary key columns
  • application_group_mapping_stream: [application_group_mapping!]! - fetch data from the table in a streaming manner: "application_group_mapping"
  • application_group_stream: [application_group!]! - fetch data from the table in a streaming manner: "application_group"
  • application_profile: [application_profile!]! - fetch data from the table: "application_profile"
  • application_profile_aggregate: application_profile_aggregate! - fetch aggregated fields from the table: "application_profile"
  • application_profile_by_pk: application_profile - fetch data from the table: "application_profile" using primary key columns
  • application_profile_stream: [application_profile!]! - fetch data from the table in a streaming manner: "application_profile"
  • audit: [audit!]! - fetch data from the table: "audit"
  • audit_aggregate: audit_aggregate! - fetch aggregated fields from the table: "audit"
  • audit_by_pk: audit - fetch data from the table: "audit" using primary key columns
  • audit_stream: [audit!]! - fetch data from the table in a streaming manner: "audit"
  • auth_provider_type: [auth_provider_type!]! - fetch data from the table: "auth_provider_type"
  • auth_provider_type_aggregate: auth_provider_type_aggregate! - fetch aggregated fields from the table: "auth_provider_type"
  • auth_provider_type_by_pk: auth_provider_type - fetch data from the table: "auth_provider_type" using primary key columns
  • auth_provider_type_stream: [auth_provider_type!]! - fetch data from the table in a streaming manner: "auth_provider_type"
  • auth_type: [auth_type!]! - fetch data from the table: "auth_type"
  • auth_type_aggregate: auth_type_aggregate! - fetch aggregated fields from the table: "auth_type"
  • auth_type_by_pk: auth_type - fetch data from the table: "auth_type" using primary key columns
  • auth_type_stream: [auth_type!]! - fetch data from the table in a streaming manner: "auth_type"
  • auto_optimize_resource_map: [auto_optimize_resource_map!]! - fetch data from the table: "auto_optimize_resource_map"
  • auto_optimize_resource_map_aggregate: auto_optimize_resource_map_aggregate! - fetch aggregated fields from the table: "auto_optimize_resource_map"
  • auto_optimize_resource_map_by_pk: auto_optimize_resource_map - fetch data from the table: "auto_optimize_resource_map" using primary key columns
  • auto_optimize_resource_map_stream: [auto_optimize_resource_map!]! - fetch data from the table in a streaming manner: "auto_optimize_resource_map"
  • auto_pilot: [auto_pilot!]! - fetch data from the table: "auto_pilot"
  • auto_pilot_aggregate: auto_pilot_aggregate! - fetch aggregated fields from the table: "auto_pilot"
  • auto_pilot_approval_policy: [auto_pilot_approval_policy!]! - fetch data from the table: "auto_pilot_approval_policy"
  • auto_pilot_approval_policy_aggregate: auto_pilot_approval_policy_aggregate! - fetch aggregated fields from the table: "auto_pilot_approval_policy"
  • auto_pilot_approval_policy_by_pk: auto_pilot_approval_policy - fetch data from the table: "auto_pilot_approval_policy" using primary key columns
  • auto_pilot_approval_policy_stream: [auto_pilot_approval_policy!]! - fetch data from the table in a streaming manner: "auto_pilot_approval_policy"
  • auto_pilot_approval_status: [auto_pilot_approval_status!]! - fetch data from the table: "auto_pilot_approval_status"
  • auto_pilot_approval_status_aggregate: auto_pilot_approval_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_approval_status"
  • auto_pilot_approval_status_by_pk: auto_pilot_approval_status - fetch data from the table: "auto_pilot_approval_status" using primary key columns
  • auto_pilot_approval_status_stream: [auto_pilot_approval_status!]! - fetch data from the table in a streaming manner: "auto_pilot_approval_status"
  • auto_pilot_approvals: [auto_pilot_approvals!]! - An array relationship
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate! - An aggregate relationship
  • auto_pilot_approvals_by_pk: auto_pilot_approvals - fetch data from the table: "auto_pilot_approvals" using primary key columns
  • auto_pilot_approvals_stream: [auto_pilot_approvals!]! - fetch data from the table in a streaming manner: "auto_pilot_approvals"
  • auto_pilot_by_pk: auto_pilot - fetch data from the table: "auto_pilot" using primary key columns
  • auto_pilot_category: [auto_pilot_category!]! - fetch data from the table: "auto_pilot_category"
  • auto_pilot_category_aggregate: auto_pilot_category_aggregate! - fetch aggregated fields from the table: "auto_pilot_category"
  • auto_pilot_category_by_pk: auto_pilot_category - fetch data from the table: "auto_pilot_category" using primary key columns
  • auto_pilot_category_stream: [auto_pilot_category!]! - fetch data from the table in a streaming manner: "auto_pilot_category"
  • auto_pilot_execution_status: [auto_pilot_execution_status!]! - fetch data from the table: "auto_pilot_execution_status"
  • auto_pilot_execution_status_aggregate: auto_pilot_execution_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_execution_status"
  • auto_pilot_execution_status_by_pk: auto_pilot_execution_status - fetch data from the table: "auto_pilot_execution_status" using primary key columns
  • auto_pilot_execution_status_stream: [auto_pilot_execution_status!]! - fetch data from the table in a streaming manner: "auto_pilot_execution_status"
  • auto_pilot_reviewee: [auto_pilot_reviewee!]! - fetch data from the table: "auto_pilot_reviewee"
  • auto_pilot_reviewee_aggregate: auto_pilot_reviewee_aggregate! - fetch aggregated fields from the table: "auto_pilot_reviewee"
  • auto_pilot_reviewee_by_pk: auto_pilot_reviewee - fetch data from the table: "auto_pilot_reviewee" using primary key columns
  • auto_pilot_reviewee_stream: [auto_pilot_reviewee!]! - fetch data from the table in a streaming manner: "auto_pilot_reviewee"
  • auto_pilot_reviewers: [auto_pilot_reviewers!]! - An array relationship
  • auto_pilot_reviewers_aggregate: auto_pilot_reviewers_aggregate! - An aggregate relationship
  • auto_pilot_reviewers_by_pk: auto_pilot_reviewers - fetch data from the table: "auto_pilot_reviewers" using primary key columns
  • auto_pilot_reviewers_stream: [auto_pilot_reviewers!]! - fetch data from the table in a streaming manner: "auto_pilot_reviewers"
  • auto_pilot_status: [auto_pilot_status!]! - fetch data from the table: "auto_pilot_status"
  • auto_pilot_status_aggregate: auto_pilot_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_status"
  • auto_pilot_status_by_pk: auto_pilot_status - fetch data from the table: "auto_pilot_status" using primary key columns
  • auto_pilot_status_stream: [auto_pilot_status!]! - fetch data from the table in a streaming manner: "auto_pilot_status"
  • auto_pilot_stream: [auto_pilot!]! - fetch data from the table in a streaming manner: "auto_pilot"
  • auto_pilot_task: [auto_pilot_task!]! - fetch data from the table: "auto_pilot_task"
  • auto_pilot_task_aggregate: auto_pilot_task_aggregate! - fetch aggregated fields from the table: "auto_pilot_task"
  • auto_pilot_task_by_pk: auto_pilot_task - fetch data from the table: "auto_pilot_task" using primary key columns
  • auto_pilot_task_status: [auto_pilot_task_status!]! - fetch data from the table: "auto_pilot_task_status"
  • auto_pilot_task_status_aggregate: auto_pilot_task_status_aggregate! - fetch aggregated fields from the table: "auto_pilot_task_status"
  • auto_pilot_task_status_by_pk: auto_pilot_task_status - fetch data from the table: "auto_pilot_task_status" using primary key columns
  • auto_pilot_task_status_stream: [auto_pilot_task_status!]! - fetch data from the table in a streaming manner: "auto_pilot_task_status"
  • auto_pilot_task_stream: [auto_pilot_task!]! - fetch data from the table in a streaming manner: "auto_pilot_task"
  • auto_playbook: [auto_playbook!]! - fetch data from the table: "auto_playbook"
  • auto_playbook_actions: [auto_playbook_actions!]! - fetch data from the table: "auto_playbook_actions"
  • auto_playbook_actions_aggregate: auto_playbook_actions_aggregate! - fetch aggregated fields from the table: "auto_playbook_actions"
  • auto_playbook_actions_by_pk: auto_playbook_actions - fetch data from the table: "auto_playbook_actions" using primary key columns
  • auto_playbook_actions_stream: [auto_playbook_actions!]! - fetch data from the table in a streaming manner: "auto_playbook_actions"
  • auto_playbook_aggregate: auto_playbook_aggregate! - fetch aggregated fields from the table: "auto_playbook"
  • auto_playbook_by_pk: auto_playbook - fetch data from the table: "auto_playbook" using primary key columns
  • auto_playbook_execution_status: [auto_playbook_execution_status!]! - fetch data from the table: "auto_playbook_execution_status"
  • auto_playbook_execution_status_aggregate: auto_playbook_execution_status_aggregate! - fetch aggregated fields from the table: "auto_playbook_execution_status"
  • auto_playbook_execution_status_by_pk: auto_playbook_execution_status - fetch data from the table: "auto_playbook_execution_status" using primary key columns
  • auto_playbook_execution_status_stream: [auto_playbook_execution_status!]! - fetch data from the table in a streaming manner: "auto_playbook_execution_status"
  • auto_playbook_executions: [auto_playbook_executions!]! - An array relationship
  • auto_playbook_executions_aggregate: auto_playbook_executions_aggregate! - An aggregate relationship
  • auto_playbook_executions_by_pk: auto_playbook_executions - fetch data from the table: "auto_playbook_executions" using primary key columns
  • auto_playbook_executions_stream: [auto_playbook_executions!]! - fetch data from the table in a streaming manner: "auto_playbook_executions"
  • auto_playbook_status: [auto_playbook_status!]! - fetch data from the table: "auto_playbook_status"
  • auto_playbook_status_aggregate: auto_playbook_status_aggregate! - fetch aggregated fields from the table: "auto_playbook_status"
  • auto_playbook_status_by_pk: auto_playbook_status - fetch data from the table: "auto_playbook_status" using primary key columns
  • auto_playbook_status_stream: [auto_playbook_status!]! - fetch data from the table in a streaming manner: "auto_playbook_status"
  • auto_playbook_stream: [auto_playbook!]! - fetch data from the table in a streaming manner: "auto_playbook"
  • auto_playbook_task: [auto_playbook_task!]! - fetch data from the table: "auto_playbook_task"
  • auto_playbook_task_aggregate: auto_playbook_task_aggregate! - fetch aggregated fields from the table: "auto_playbook_task"
  • auto_playbook_task_by_pk: auto_playbook_task - fetch data from the table: "auto_playbook_task" using primary key columns
  • auto_playbook_task_status: [auto_playbook_task_status!]! - fetch data from the table: "auto_playbook_task_status"
  • auto_playbook_task_status_aggregate: auto_playbook_task_status_aggregate! - fetch aggregated fields from the table: "auto_playbook_task_status"
  • auto_playbook_task_status_by_pk: auto_playbook_task_status - fetch data from the table: "auto_playbook_task_status" using primary key columns
  • auto_playbook_task_status_stream: [auto_playbook_task_status!]! - fetch data from the table in a streaming manner: "auto_playbook_task_status"
  • auto_playbook_task_stream: [auto_playbook_task!]! - fetch data from the table in a streaming manner: "auto_playbook_task"
  • autopilot_attributes: [autopilot_attributes!]! - fetch data from the table: "autopilot_attributes"
  • autopilot_attributes_aggregate: autopilot_attributes_aggregate! - fetch aggregated fields from the table: "autopilot_attributes"
  • autopilot_attributes_by_pk: autopilot_attributes - fetch data from the table: "autopilot_attributes" using primary key columns
  • autopilot_attributes_stream: [autopilot_attributes!]! - fetch data from the table in a streaming manner: "autopilot_attributes"
  • billing: [billing!]! - fetch data from the table: "billing"
  • billing_aggregate: billing_aggregate! - fetch aggregated fields from the table: "billing"
  • billing_by_pk: billing - fetch data from the table: "billing" using primary key columns
  • billing_stream: [billing!]! - fetch data from the table in a streaming manner: "billing"
  • billing_usage_cost: [billing_usage_cost!]! - fetch data from the table: "billing_usage_cost"
  • billing_usage_cost_aggregate: billing_usage_cost_aggregate! - fetch aggregated fields from the table: "billing_usage_cost"
  • billing_usage_cost_by_pk: billing_usage_cost - fetch data from the table: "billing_usage_cost" using primary key columns
  • billing_usage_cost_stream: [billing_usage_cost!]! - fetch data from the table in a streaming manner: "billing_usage_cost"
  • business_unit: [business_unit!]! - fetch data from the table: "business_unit"
  • business_unit_aggregate: business_unit_aggregate! - fetch aggregated fields from the table: "business_unit"
  • business_unit_by_pk: business_unit - fetch data from the table: "business_unit" using primary key columns
  • business_unit_stream: [business_unit!]! - fetch data from the table in a streaming manner: "business_unit"
  • businessunit_funding: [businessunit_funding!]! - fetch data from the table: "businessunit_funding"
  • businessunit_funding_aggregate: businessunit_funding_aggregate! - fetch aggregated fields from the table: "businessunit_funding"
  • businessunit_funding_by_pk: businessunit_funding - fetch data from the table: "businessunit_funding" using primary key columns
  • businessunit_funding_stream: [businessunit_funding!]! - fetch data from the table in a streaming manner: "businessunit_funding"
  • businessunit_users: [businessunit_users!]! - An array relationship
  • businessunit_users_aggregate: businessunit_users_aggregate! - An aggregate relationship
  • businessunit_users_by_pk: businessunit_users - fetch data from the table: "businessunit_users" using primary key columns
  • businessunit_users_stream: [businessunit_users!]! - fetch data from the table in a streaming manner: "businessunit_users"
  • cloud_account_attrs: [cloud_account_attrs!]! - An array relationship
  • cloud_account_attrs_aggregate: cloud_account_attrs_aggregate! - An aggregate relationship
  • cloud_account_attrs_by_pk: cloud_account_attrs - fetch data from the table: "cloud_account_attrs" using primary key columns
  • cloud_account_attrs_stream: [cloud_account_attrs!]! - fetch data from the table in a streaming manner: "cloud_account_attrs"
  • cloud_account_onboarding_errors: [cloud_account_onboarding_errors!]! - fetch data from the table: "cloud_account_onboarding_errors"
  • cloud_account_onboarding_errors_aggregate: cloud_account_onboarding_errors_aggregate! - fetch aggregated fields from the table: "cloud_account_onboarding_errors"
  • cloud_account_onboarding_errors_by_pk: cloud_account_onboarding_errors - fetch data from the table: "cloud_account_onboarding_errors" using primary key columns
  • cloud_account_onboarding_errors_stream: [cloud_account_onboarding_errors!]! - fetch data from the table in a streaming manner: "cloud_account_onboarding_errors"
  • cloud_account_score: [cloud_account_score!]! - fetch data from the table: "cloud_account_score"
  • cloud_account_score_aggregate: cloud_account_score_aggregate! - fetch aggregated fields from the table: "cloud_account_score"
  • cloud_account_score_by_pk: cloud_account_score - fetch data from the table: "cloud_account_score" using primary key columns
  • cloud_account_score_stream: [cloud_account_score!]! - fetch data from the table in a streaming manner: "cloud_account_score"
  • cloud_account_status_type: [cloud_account_status_type!]! - fetch data from the table: "cloud_account_status_type"
  • cloud_account_status_type_aggregate: cloud_account_status_type_aggregate! - fetch aggregated fields from the table: "cloud_account_status_type"
  • cloud_account_status_type_by_pk: cloud_account_status_type - fetch data from the table: "cloud_account_status_type" using primary key columns
  • cloud_account_status_type_stream: [cloud_account_status_type!]! - fetch data from the table in a streaming manner: "cloud_account_status_type"
  • cloud_account_sync_status_type: [cloud_account_sync_status_type!]! - fetch data from the table: "cloud_account_sync_status_type"
  • cloud_account_sync_status_type_aggregate: cloud_account_sync_status_type_aggregate! - fetch aggregated fields from the table: "cloud_account_sync_status_type"
  • cloud_account_sync_status_type_by_pk: cloud_account_sync_status_type - fetch data from the table: "cloud_account_sync_status_type" using primary key columns
  • cloud_account_sync_status_type_stream: [cloud_account_sync_status_type!]! - fetch data from the table in a streaming manner: "cloud_account_sync_status_type"
  • cloud_accounts: [cloud_accounts!]! - An array relationship
  • cloud_accounts_aggregate: cloud_accounts_aggregate! - An aggregate relationship
  • cloud_accounts_by_pk: cloud_accounts - fetch data from the table: "cloud_accounts" using primary key columns
  • cloud_accounts_stream: [cloud_accounts!]! - fetch data from the table in a streaming manner: "cloud_accounts"
  • cloud_api_permission_errors: [cloud_api_permission_errors!]! - fetch data from the table: "cloud_api_permission_errors"
  • cloud_api_permission_errors_aggregate: cloud_api_permission_errors_aggregate! - fetch aggregated fields from the table: "cloud_api_permission_errors"
  • cloud_api_permission_errors_by_pk: cloud_api_permission_errors - fetch data from the table: "cloud_api_permission_errors" using primary key columns
  • cloud_api_permission_errors_stream: [cloud_api_permission_errors!]! - fetch data from the table in a streaming manner: "cloud_api_permission_errors"
  • cloud_provider_type: [cloud_provider_type!]! - fetch data from the table: "cloud_provider_type"
  • cloud_provider_type_aggregate: cloud_provider_type_aggregate! - fetch aggregated fields from the table: "cloud_provider_type"
  • cloud_provider_type_by_pk: cloud_provider_type - fetch data from the table: "cloud_provider_type" using primary key columns
  • cloud_provider_type_stream: [cloud_provider_type!]! - fetch data from the table in a streaming manner: "cloud_provider_type"
  • cloud_resource_attributes: [cloud_resource_attributes!]! - An array relationship
  • cloud_resource_attributes_aggregate: cloud_resource_attributes_aggregate! - An aggregate relationship
  • cloud_resource_attributes_by_pk: cloud_resource_attributes - fetch data from the table: "cloud_resource_attributes" using primary key columns
  • cloud_resource_attributes_stream: [cloud_resource_attributes!]! - fetch data from the table in a streaming manner: "cloud_resource_attributes"
  • cloud_resource_details: [cloud_resource_details!]! - fetch data from the table: "cloud_resource_details"
  • cloud_resource_details_aggregate: cloud_resource_details_aggregate! - fetch aggregated fields from the table: "cloud_resource_details"
  • cloud_resource_details_by_pk: cloud_resource_details - fetch data from the table: "cloud_resource_details" using primary key columns
  • cloud_resource_details_stream: [cloud_resource_details!]! - fetch data from the table in a streaming manner: "cloud_resource_details"
  • cloud_resource_metrics: [cloud_resource_metrics!]! - An array relationship
  • cloud_resource_metrics_aggregate: cloud_resource_metrics_aggregate! - An aggregate relationship
  • cloud_resource_metrics_by_pk: cloud_resource_metrics - fetch data from the table: "cloud_resource_metrics" using primary key columns
  • cloud_resource_metrics_stream: [cloud_resource_metrics!]! - fetch data from the table in a streaming manner: "cloud_resource_metrics"
  • cloud_resource_status_type: [cloud_resource_status_type!]! - fetch data from the table: "cloud_resource_status_type"
  • cloud_resource_status_type_aggregate: cloud_resource_status_type_aggregate! - fetch aggregated fields from the table: "cloud_resource_status_type"
  • cloud_resource_status_type_by_pk: cloud_resource_status_type - fetch data from the table: "cloud_resource_status_type" using primary key columns
  • cloud_resource_status_type_stream: [cloud_resource_status_type!]! - fetch data from the table in a streaming manner: "cloud_resource_status_type"
  • cloud_resources_v2: [cloud_resource_v2!]!
  • cloud_resourses: [cloud_resourses!]! - An array relationship
  • cloud_resourses_aggregate: cloud_resourses_aggregate! - An aggregate relationship
  • cloud_resourses_by_pk: cloud_resourses - fetch data from the table: "cloud_resourses" using primary key columns
  • cloud_resourses_stream: [cloud_resourses!]! - fetch data from the table in a streaming manner: "cloud_resourses"
  • configuration_store: [configuration_store!]! - fetch data from the table: "configuration_store"
  • configuration_store_aggregate: configuration_store_aggregate! - fetch aggregated fields from the table: "configuration_store"
  • configuration_store_by_pk: configuration_store - fetch data from the table: "configuration_store" using primary key columns
  • configuration_store_stream: [configuration_store!]! - fetch data from the table in a streaming manner: "configuration_store"
  • db_type: [db_type!]! - fetch data from the table: "db_type"
  • db_type_aggregate: db_type_aggregate! - fetch aggregated fields from the table: "db_type"
  • db_type_by_pk: db_type - fetch data from the table: "db_type" using primary key columns
  • db_type_stream: [db_type!]! - fetch data from the table in a streaming manner: "db_type"
  • dw_databases: [dw_databases!]! - fetch data from the table: "dw_databases"
  • dw_databases_aggregate: dw_databases_aggregate! - fetch aggregated fields from the table: "dw_databases"
  • dw_databases_stream: [dw_databases!]! - fetch data from the table in a streaming manner: "dw_databases"
  • dw_pipe: [dw_pipe!]! - fetch data from the table: "dw_pipe"
  • dw_pipe_aggregate: dw_pipe_aggregate! - fetch aggregated fields from the table: "dw_pipe"
  • dw_pipe_by_pk: dw_pipe - fetch data from the table: "dw_pipe" using primary key columns
  • dw_pipe_stream: [dw_pipe!]! - fetch data from the table in a streaming manner: "dw_pipe"
  • dw_pipe_usage: [dw_pipe_usage!]! - fetch data from the table: "dw_pipe_usage"
  • dw_pipe_usage_aggregate: dw_pipe_usage_aggregate! - fetch aggregated fields from the table: "dw_pipe_usage"
  • dw_pipe_usage_by_pk: dw_pipe_usage - fetch data from the table: "dw_pipe_usage" using primary key columns
  • dw_pipe_usage_stream: [dw_pipe_usage!]! - fetch data from the table in a streaming manner: "dw_pipe_usage"
  • dw_queries: [dw_queries!]! - fetch data from the table: "dw_queries"
  • dw_queries_aggregate: dw_queries_aggregate! - fetch aggregated fields from the table: "dw_queries"
  • dw_queries_by_pk: dw_queries - fetch data from the table: "dw_queries" using primary key columns
  • dw_queries_stream: [dw_queries!]! - fetch data from the table in a streaming manner: "dw_queries"
  • dw_query_profile_data: [dw_query_profile_data!]! - fetch data from the table: "dw_query_profile_data"
  • dw_query_profile_data_aggregate: dw_query_profile_data_aggregate! - fetch aggregated fields from the table: "dw_query_profile_data"
  • dw_query_profile_data_by_pk: dw_query_profile_data - fetch data from the table: "dw_query_profile_data" using primary key columns
  • dw_query_profile_data_stream: [dw_query_profile_data!]! - fetch data from the table in a streaming manner: "dw_query_profile_data"
  • dw_tables: [dw_tables!]! - fetch data from the table: "dw_tables"
  • dw_tables_aggregate: dw_tables_aggregate! - fetch aggregated fields from the table: "dw_tables"
  • dw_tables_by_pk: dw_tables - fetch data from the table: "dw_tables" using primary key columns
  • dw_tables_stream: [dw_tables!]! - fetch data from the table in a streaming manner: "dw_tables"
  • etl_jobs: [etl_jobs!]! - fetch data from the table: "etl_jobs"
  • etl_jobs_aggregate: etl_jobs_aggregate! - fetch aggregated fields from the table: "etl_jobs"
  • etl_jobs_by_pk: etl_jobs - fetch data from the table: "etl_jobs" using primary key columns
  • etl_jobs_stream: [etl_jobs!]! - fetch data from the table in a streaming manner: "etl_jobs"
  • event_bulk_operations: [event_bulk_operations!]! - fetch data from the table: "event_bulk_operations"
  • event_bulk_operations_aggregate: event_bulk_operations_aggregate! - fetch aggregated fields from the table: "event_bulk_operations"
  • event_bulk_operations_by_pk: event_bulk_operations - fetch data from the table: "event_bulk_operations" using primary key columns
  • event_bulk_operations_stream: [event_bulk_operations!]! - fetch data from the table in a streaming manner: "event_bulk_operations"
  • event_classification: [event_classification!]! - fetch data from the table: "event_classification"
  • event_classification_aggregate: event_classification_aggregate! - fetch aggregated fields from the table: "event_classification"
  • event_classification_by_pk: event_classification - fetch data from the table: "event_classification" using primary key columns
  • event_classification_stream: [event_classification!]! - fetch data from the table in a streaming manner: "event_classification"
  • event_correlations: [event_correlations!]! - fetch data from the table: "event_correlations"
  • event_correlations_aggregate: event_correlations_aggregate! - fetch aggregated fields from the table: "event_correlations"
  • event_correlations_by_pk: event_correlations - fetch data from the table: "event_correlations" using primary key columns
  • event_correlations_stream: [event_correlations!]! - fetch data from the table in a streaming manner: "event_correlations"
  • event_duplicates: [event_duplicates!]! - fetch data from the table: "event_duplicates"
  • event_duplicates_aggregate: event_duplicates_aggregate! - fetch aggregated fields from the table: "event_duplicates"
  • event_duplicates_by_pk: event_duplicates - fetch data from the table: "event_duplicates" using primary key columns
  • event_duplicates_stream: [event_duplicates!]! - fetch data from the table in a streaming manner: "event_duplicates"
  • event_history: [event_history!]! - fetch data from the table: "event_history"
  • event_history_aggregate: event_history_aggregate! - fetch aggregated fields from the table: "event_history"
  • event_history_by_pk: event_history - fetch data from the table: "event_history" using primary key columns
  • event_history_stream: [event_history!]! - fetch data from the table in a streaming manner: "event_history"
  • event_incoming_webhooks: [event_incoming_webhooks!]! - fetch data from the table: "event_incoming_webhooks"
  • event_incoming_webhooks_aggregate: event_incoming_webhooks_aggregate! - fetch aggregated fields from the table: "event_incoming_webhooks"
  • event_incoming_webhooks_by_pk: event_incoming_webhooks - fetch data from the table: "event_incoming_webhooks" using primary key columns
  • event_incoming_webhooks_stream: [event_incoming_webhooks!]! - fetch data from the table in a streaming manner: "event_incoming_webhooks"
  • event_log_analysis: [event_log_analysis!]! - fetch data from the table: "event_log_analysis"
  • event_log_analysis_aggregate: event_log_analysis_aggregate! - fetch aggregated fields from the table: "event_log_analysis"
  • event_log_analysis_by_pk: event_log_analysis - fetch data from the table: "event_log_analysis" using primary key columns
  • event_log_analysis_status: [event_log_analysis_status!]! - fetch data from the table: "event_log_analysis_status"
  • event_log_analysis_status_aggregate: event_log_analysis_status_aggregate! - fetch aggregated fields from the table: "event_log_analysis_status"
  • event_log_analysis_status_by_pk: event_log_analysis_status - fetch data from the table: "event_log_analysis_status" using primary key columns
  • event_log_analysis_status_stream: [event_log_analysis_status!]! - fetch data from the table in a streaming manner: "event_log_analysis_status"
  • event_log_analysis_stream: [event_log_analysis!]! - fetch data from the table in a streaming manner: "event_log_analysis"
  • event_resolution: [event_resolution!]! - fetch data from the table: "event_resolution"
  • event_resolution_aggregate: event_resolution_aggregate! - fetch aggregated fields from the table: "event_resolution"
  • event_resolution_by_pk: event_resolution - fetch data from the table: "event_resolution" using primary key columns
  • event_resolution_stream: [event_resolution!]! - fetch data from the table in a streaming manner: "event_resolution"
  • event_rule_severity: [event_rule_severity!]! - fetch data from the table: "event_rule_severity"
  • event_rule_severity_aggregate: event_rule_severity_aggregate! - fetch aggregated fields from the table: "event_rule_severity"
  • event_rule_severity_by_pk: event_rule_severity - fetch data from the table: "event_rule_severity" using primary key columns
  • event_rule_severity_stream: [event_rule_severity!]! - fetch data from the table in a streaming manner: "event_rule_severity"
  • event_rule_source: [event_rule_source!]! - fetch data from the table: "event_rule_source"
  • event_rule_source_aggregate: event_rule_source_aggregate! - fetch aggregated fields from the table: "event_rule_source"
  • event_rule_source_by_pk: event_rule_source - fetch data from the table: "event_rule_source" using primary key columns
  • event_rule_source_stream: [event_rule_source!]! - fetch data from the table in a streaming manner: "event_rule_source"
  • event_rules: [event_rules!]! - fetch data from the table: "event_rules"
  • event_rules_aggregate: event_rules_aggregate! - fetch aggregated fields from the table: "event_rules"
  • event_rules_by_pk: event_rules - fetch data from the table: "event_rules" using primary key columns
  • event_rules_stream: [event_rules!]! - fetch data from the table in a streaming manner: "event_rules"
  • event_severity: [event_severity!]! - fetch data from the table: "event_severity"
  • event_severity_aggregate: event_severity_aggregate! - fetch aggregated fields from the table: "event_severity"
  • event_severity_by_pk: event_severity - fetch data from the table: "event_severity" using primary key columns
  • event_severity_stream: [event_severity!]! - fetch data from the table in a streaming manner: "event_severity"
  • event_source: [event_source!]! - fetch data from the table: "event_source"
  • event_source_aggregate: event_source_aggregate! - fetch aggregated fields from the table: "event_source"
  • event_source_by_pk: event_source - fetch data from the table: "event_source" using primary key columns
  • event_source_stream: [event_source!]! - fetch data from the table in a streaming manner: "event_source"
  • event_status: [event_status!]! - fetch data from the table: "event_status"
  • event_status_aggregate: event_status_aggregate! - fetch aggregated fields from the table: "event_status"
  • event_status_by_pk: event_status - fetch data from the table: "event_status" using primary key columns
  • event_status_stream: [event_status!]! - fetch data from the table in a streaming manner: "event_status"
  • event_triage_rules: [event_triage_rules!]! - fetch data from the table: "event_triage_rules"
  • event_triage_rules_aggregate: event_triage_rules_aggregate! - fetch aggregated fields from the table: "event_triage_rules"
  • event_triage_rules_by_pk: event_triage_rules - fetch data from the table: "event_triage_rules" using primary key columns
  • event_triage_rules_stream: [event_triage_rules!]! - fetch data from the table in a streaming manner: "event_triage_rules"
  • events: [events!]! - An array relationship
  • events_aggregate: events_aggregate! - An aggregate relationship
  • events_by_pk: events - fetch data from the table: "events" using primary key columns
  • events_stream: [events!]! - fetch data from the table in a streaming manner: "events"
  • feature: [feature!]! - fetch data from the table: "feature"
  • feature_aggregate: feature_aggregate! - fetch aggregated fields from the table: "feature"
  • feature_by_pk: feature - fetch data from the table: "feature" using primary key columns
  • feature_flag: [feature_flag!]! - fetch data from the table: "feature_flag"
  • feature_flag_aggregate: feature_flag_aggregate! - fetch aggregated fields from the table: "feature_flag"
  • feature_flag_by_pk: feature_flag - fetch data from the table: "feature_flag" using primary key columns
  • feature_flag_stream: [feature_flag!]! - fetch data from the table in a streaming manner: "feature_flag"
  • feature_stream: [feature!]! - fetch data from the table in a streaming manner: "feature"
  • funding_sources: [funding_sources!]! - An array relationship
  • funding_sources_aggregate: funding_sources_aggregate! - An aggregate relationship
  • funding_sources_by_pk: funding_sources - fetch data from the table: "funding_sources" using primary key columns
  • funding_sources_stream: [funding_sources!]! - fetch data from the table in a streaming manner: "funding_sources"
  • group_roles: [group_roles!]! - An array relationship
  • group_roles_aggregate: group_roles_aggregate! - An aggregate relationship
  • group_roles_by_pk: group_roles - fetch data from the table: "group_roles" using primary key columns
  • group_roles_stream: [group_roles!]! - fetch data from the table in a streaming manner: "group_roles"
  • insight: [insight!]! - fetch data from the table: "insight"
  • insight_aggregate: insight_aggregate! - fetch aggregated fields from the table: "insight"
  • insight_by_pk: insight - fetch data from the table: "insight" using primary key columns
  • insight_severity: [insight_severity!]! - fetch data from the table: "insight_severity"
  • insight_severity_aggregate: insight_severity_aggregate! - fetch aggregated fields from the table: "insight_severity"
  • insight_severity_by_pk: insight_severity - fetch data from the table: "insight_severity" using primary key columns
  • insight_severity_stream: [insight_severity!]! - fetch data from the table in a streaming manner: "insight_severity"
  • insight_stream: [insight!]! - fetch data from the table in a streaming manner: "insight"
  • integration_categories: [integration_categories!]! - fetch data from the table: "integration_categories"
  • integration_categories_aggregate: integration_categories_aggregate! - fetch aggregated fields from the table: "integration_categories"
  • integration_categories_by_pk: integration_categories - fetch data from the table: "integration_categories" using primary key columns
  • integration_categories_stream: [integration_categories!]! - fetch data from the table in a streaming manner: "integration_categories"
  • integration_config_values: [integration_config_values!]! - An array relationship
  • integration_config_values_aggregate: integration_config_values_aggregate! - An aggregate relationship
  • integration_config_values_by_pk: integration_config_values - fetch data from the table: "integration_config_values" using primary key columns
  • integration_config_values_stream: [integration_config_values!]! - fetch data from the table in a streaming manner: "integration_config_values"
  • integration_sources: [integration_sources!]! - fetch data from the table: "integration_sources"
  • integration_sources_aggregate: integration_sources_aggregate! - fetch aggregated fields from the table: "integration_sources"
  • integration_sources_by_pk: integration_sources - fetch data from the table: "integration_sources" using primary key columns
  • integration_sources_stream: [integration_sources!]! - fetch data from the table in a streaming manner: "integration_sources"
  • integration_statuses: [integration_statuses!]! - fetch data from the table: "integration_statuses"
  • integration_statuses_aggregate: integration_statuses_aggregate! - fetch aggregated fields from the table: "integration_statuses"
  • integration_statuses_by_pk: integration_statuses - fetch data from the table: "integration_statuses" using primary key columns
  • integration_statuses_stream: [integration_statuses!]! - fetch data from the table in a streaming manner: "integration_statuses"
  • integration_types: [integration_types!]! - fetch data from the table: "integration_types"
  • integration_types_aggregate: integration_types_aggregate! - fetch aggregated fields from the table: "integration_types"
  • integration_types_by_pk: integration_types - fetch data from the table: "integration_types" using primary key columns
  • integration_types_stream: [integration_types!]! - fetch data from the table in a streaming manner: "integration_types"
  • integrations: [integrations!]! - fetch data from the table: "integrations"
  • integrations_aggregate: integrations_aggregate! - fetch aggregated fields from the table: "integrations"
  • integrations_by_pk: integrations - fetch data from the table: "integrations" using primary key columns
  • integrations_cloud_accounts: [integrations_cloud_accounts!]! - An array relationship
  • integrations_cloud_accounts_aggregate: integrations_cloud_accounts_aggregate! - An aggregate relationship
  • integrations_cloud_accounts_by_pk: integrations_cloud_accounts - fetch data from the table: "integrations_cloud_accounts" using primary key columns
  • integrations_cloud_accounts_stream: [integrations_cloud_accounts!]! - fetch data from the table in a streaming manner: "integrations_cloud_accounts"
  • integrations_stream: [integrations!]! - fetch data from the table in a streaming manner: "integrations"
  • jira_configurations: [jira_configurations!]! - An array relationship
  • jira_configurations_aggregate: jira_configurations_aggregate! - An aggregate relationship
  • jira_configurations_by_pk: jira_configurations - fetch data from the table: "jira_configurations" using primary key columns
  • jira_configurations_stream: [jira_configurations!]! - fetch data from the table in a streaming manner: "jira_configurations"
  • k8s_account_resource_usage: [k8s_account_resource_usage!]! - fetch data from the table: "k8s_account_resource_usage"
  • k8s_account_resource_usage_aggregate: k8s_account_resource_usage_aggregate! - fetch aggregated fields from the table: "k8s_account_resource_usage"
  • k8s_account_resource_usage_stream: [k8s_account_resource_usage!]! - fetch data from the table in a streaming manner: "k8s_account_resource_usage"
  • k8s_namespaces: [k8s_namespaces!]! - fetch data from the table: "k8s_namespaces"
  • k8s_namespaces_aggregate: k8s_namespaces_aggregate! - fetch aggregated fields from the table: "k8s_namespaces"
  • k8s_namespaces_by_pk: k8s_namespaces - fetch data from the table: "k8s_namespaces" using primary key columns
  • k8s_namespaces_stream: [k8s_namespaces!]! - fetch data from the table in a streaming manner: "k8s_namespaces"
  • k8s_nodes: [k8s_nodes!]! - An array relationship
  • k8s_nodes_aggregate: k8s_nodes_aggregate! - An aggregate relationship
  • k8s_nodes_by_pk: k8s_nodes - fetch data from the table: "k8s_nodes" using primary key columns
  • k8s_nodes_stream: [k8s_nodes!]! - fetch data from the table in a streaming manner: "k8s_nodes"
  • k8s_pods: [k8s_pods!]! - An array relationship
  • k8s_pods_aggregate: k8s_pods_aggregate! - An aggregate relationship
  • k8s_pods_by_pk: k8s_pods - fetch data from the table: "k8s_pods" using primary key columns
  • k8s_pods_stream: [k8s_pods!]! - fetch data from the table in a streaming manner: "k8s_pods"
  • k8s_workloads: [k8s_workloads!]! - fetch data from the table: "k8s_workloads"
  • k8s_workloads_aggregate: k8s_workloads_aggregate! - fetch aggregated fields from the table: "k8s_workloads"
  • k8s_workloads_by_pk: k8s_workloads - fetch data from the table: "k8s_workloads" using primary key columns
  • k8s_workloads_stream: [k8s_workloads!]! - fetch data from the table in a streaming manner: "k8s_workloads"
  • knowledge_base: [knowledge_base!]! - fetch data from the table: "knowledge_base"
  • knowledge_base_aggregate: knowledge_base_aggregate! - fetch aggregated fields from the table: "knowledge_base"
  • knowledge_base_by_pk: knowledge_base - fetch data from the table: "knowledge_base" using primary key columns
  • knowledge_base_stream: [knowledge_base!]! - fetch data from the table in a streaming manner: "knowledge_base"
  • knowledge_graph_edge: [knowledge_graph_edge!]! - fetch data from the table: "knowledge_graph_edge"
  • knowledge_graph_edge_aggregate: knowledge_graph_edge_aggregate! - fetch aggregated fields from the table: "knowledge_graph_edge"
  • knowledge_graph_edge_by_pk: knowledge_graph_edge - fetch data from the table: "knowledge_graph_edge" using primary key columns
  • knowledge_graph_edge_stream: [knowledge_graph_edge!]! - fetch data from the table in a streaming manner: "knowledge_graph_edge"
  • knowledge_graph_metadata: [knowledge_graph_metadata!]! - fetch data from the table: "knowledge_graph_metadata"
  • knowledge_graph_metadata_aggregate: knowledge_graph_metadata_aggregate! - fetch aggregated fields from the table: "knowledge_graph_metadata"
  • knowledge_graph_metadata_by_pk: knowledge_graph_metadata - fetch data from the table: "knowledge_graph_metadata" using primary key columns
  • knowledge_graph_metadata_stream: [knowledge_graph_metadata!]! - fetch data from the table in a streaming manner: "knowledge_graph_metadata"
  • knowledge_graph_node: [knowledge_graph_node!]! - fetch data from the table: "knowledge_graph_node"
  • knowledge_graph_node_aggregate: knowledge_graph_node_aggregate! - fetch aggregated fields from the table: "knowledge_graph_node"
  • knowledge_graph_node_by_pk: knowledge_graph_node - fetch data from the table: "knowledge_graph_node" using primary key columns
  • knowledge_graph_node_stream: [knowledge_graph_node!]! - fetch data from the table in a streaming manner: "knowledge_graph_node"
  • knowledge_graph_relationship_types: [knowledge_graph_relationship_types!]! - fetch data from the table: "knowledge_graph_relationship_types"
  • knowledge_graph_relationship_types_aggregate: knowledge_graph_relationship_types_aggregate! - fetch aggregated fields from the table: "knowledge_graph_relationship_types"
  • knowledge_graph_relationship_types_by_pk: knowledge_graph_relationship_types - fetch data from the table: "knowledge_graph_relationship_types" using primary key columns
  • knowledge_graph_relationship_types_stream: [knowledge_graph_relationship_types!]! - fetch data from the table in a streaming manner: "knowledge_graph_relationship_types"
  • knowledge_graph_tenant_filters: [knowledge_graph_tenant_filters!]! - fetch data from the table: "knowledge_graph_tenant_filters"
  • knowledge_graph_tenant_filters_aggregate: knowledge_graph_tenant_filters_aggregate! - fetch aggregated fields from the table: "knowledge_graph_tenant_filters"
  • knowledge_graph_tenant_filters_by_pk: knowledge_graph_tenant_filters - fetch data from the table: "knowledge_graph_tenant_filters" using primary key columns
  • knowledge_graph_tenant_filters_stream: [knowledge_graph_tenant_filters!]! - fetch data from the table in a streaming manner: "knowledge_graph_tenant_filters"
  • llm_agents: [llm_agents!]! - fetch data from the table: "llm_agents"
  • llm_agents_aggregate: llm_agents_aggregate! - fetch aggregated fields from the table: "llm_agents"
  • llm_agents_by_pk: llm_agents - fetch data from the table: "llm_agents" using primary key columns
  • llm_agents_installation: [llm_agents_installation!]! - fetch data from the table: "llm_agents_installation"
  • llm_agents_installation_aggregate: llm_agents_installation_aggregate! - fetch aggregated fields from the table: "llm_agents_installation"
  • llm_agents_installation_by_pk: llm_agents_installation - fetch data from the table: "llm_agents_installation" using primary key columns
  • llm_agents_installation_stream: [llm_agents_installation!]! - fetch data from the table in a streaming manner: "llm_agents_installation"
  • llm_agents_stream: [llm_agents!]! - fetch data from the table in a streaming manner: "llm_agents"
  • llm_conversation_agent: [llm_conversation_agent!]! - fetch data from the table: "llm_conversation_agent"
  • llm_conversation_agent_aggregate: llm_conversation_agent_aggregate! - fetch aggregated fields from the table: "llm_conversation_agent"
  • llm_conversation_agent_by_pk: llm_conversation_agent - fetch data from the table: "llm_conversation_agent" using primary key columns
  • llm_conversation_agent_critiques: [llm_conversation_agent_critiques!]! - fetch data from the table: "llm_conversation_agent_critiques"
  • llm_conversation_agent_critiques_aggregate: llm_conversation_agent_critiques_aggregate! - fetch aggregated fields from the table: "llm_conversation_agent_critiques"
  • llm_conversation_agent_critiques_by_pk: llm_conversation_agent_critiques - fetch data from the table: "llm_conversation_agent_critiques" using primary key columns
  • llm_conversation_agent_critiques_stream: [llm_conversation_agent_critiques!]! - fetch data from the table in a streaming manner: "llm_conversation_agent_critiques"
  • llm_conversation_agent_stream: [llm_conversation_agent!]! - fetch data from the table in a streaming manner: "llm_conversation_agent"
  • llm_conversation_feedback: [llm_conversation_feedback!]! - fetch data from the table: "llm_conversation_feedback"
  • llm_conversation_feedback_aggregate: llm_conversation_feedback_aggregate! - fetch aggregated fields from the table: "llm_conversation_feedback"
  • llm_conversation_feedback_by_pk: llm_conversation_feedback - fetch data from the table: "llm_conversation_feedback" using primary key columns
  • llm_conversation_feedback_stream: [llm_conversation_feedback!]! - fetch data from the table in a streaming manner: "llm_conversation_feedback"
  • llm_conversation_history: [llm_conversation_history!]! - fetch data from the table: "llm_conversation_history"
  • llm_conversation_history_aggregate: llm_conversation_history_aggregate! - fetch aggregated fields from the table: "llm_conversation_history"
  • llm_conversation_history_by_pk: llm_conversation_history - fetch data from the table: "llm_conversation_history" using primary key columns
  • llm_conversation_history_stream: [llm_conversation_history!]! - fetch data from the table in a streaming manner: "llm_conversation_history"
  • llm_conversation_messages: [llm_conversation_messages!]! - An array relationship
  • llm_conversation_messages_aggregate: llm_conversation_messages_aggregate! - An aggregate relationship
  • llm_conversation_messages_by_pk: llm_conversation_messages - fetch data from the table: "llm_conversation_messages" using primary key columns
  • llm_conversation_messages_stream: [llm_conversation_messages!]! - fetch data from the table in a streaming manner: "llm_conversation_messages"
  • llm_conversation_saved: [llm_conversation_saved!]! - fetch data from the table: "llm_conversation_saved"
  • llm_conversation_saved_aggregate: llm_conversation_saved_aggregate! - fetch aggregated fields from the table: "llm_conversation_saved"
  • llm_conversation_saved_by_pk: llm_conversation_saved - fetch data from the table: "llm_conversation_saved" using primary key columns
  • llm_conversation_saved_stream: [llm_conversation_saved!]! - fetch data from the table in a streaming manner: "llm_conversation_saved"
  • llm_conversation_tool_calls: [llm_conversation_tool_calls!]! - An array relationship
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate! - An aggregate relationship
  • llm_conversation_tool_calls_by_pk: llm_conversation_tool_calls - fetch data from the table: "llm_conversation_tool_calls" using primary key columns
  • llm_conversation_tool_calls_stream: [llm_conversation_tool_calls!]! - fetch data from the table in a streaming manner: "llm_conversation_tool_calls"
  • llm_conversations: [llm_conversations!]! - An array relationship
  • llm_conversations_aggregate: llm_conversations_aggregate! - An aggregate relationship
  • llm_conversations_by_pk: llm_conversations - fetch data from the table: "llm_conversations" using primary key columns
  • llm_conversations_stream: [llm_conversations!]! - fetch data from the table in a streaming manner: "llm_conversations"
  • llm_functions: [llm_functions!]! - fetch data from the table: "llm_functions"
  • llm_functions_aggregate: llm_functions_aggregate! - fetch aggregated fields from the table: "llm_functions"
  • llm_functions_by_pk: llm_functions - fetch data from the table: "llm_functions" using primary key columns
  • llm_functions_stream: [llm_functions!]! - fetch data from the table in a streaming manner: "llm_functions"
  • llm_model_pricing: [llm_model_pricing!]! - fetch data from the table: "llm_model_pricing"
  • llm_model_pricing_aggregate: llm_model_pricing_aggregate! - fetch aggregated fields from the table: "llm_model_pricing"
  • llm_model_pricing_by_pk: llm_model_pricing - fetch data from the table: "llm_model_pricing" using primary key columns
  • llm_model_pricing_stream: [llm_model_pricing!]! - fetch data from the table in a streaming manner: "llm_model_pricing"
  • llm_rag_audit: [llm_rag_audit!]! - fetch data from the table: "llm_rag_audit"
  • llm_rag_audit_aggregate: llm_rag_audit_aggregate! - fetch aggregated fields from the table: "llm_rag_audit"
  • llm_rag_audit_by_pk: llm_rag_audit - fetch data from the table: "llm_rag_audit" using primary key columns
  • llm_rag_audit_stream: [llm_rag_audit!]! - fetch data from the table in a streaming manner: "llm_rag_audit"
  • llm_rags: [llm_rags!]! - fetch data from the table: "llm_rags"
  • llm_rags_aggregate: llm_rags_aggregate! - fetch aggregated fields from the table: "llm_rags"
  • llm_rags_by_pk: llm_rags - fetch data from the table: "llm_rags" using primary key columns
  • llm_rags_stream: [llm_rags!]! - fetch data from the table in a streaming manner: "llm_rags"
  • marketplace_customers: [marketplace_customers!]! - fetch data from the table: "marketplace_customers"
  • marketplace_customers_aggregate: marketplace_customers_aggregate! - fetch aggregated fields from the table: "marketplace_customers"
  • marketplace_customers_by_pk: marketplace_customers - fetch data from the table: "marketplace_customers" using primary key columns
  • marketplace_customers_stream: [marketplace_customers!]! - fetch data from the table in a streaming manner: "marketplace_customers"
  • messaging_platforms: [messaging_platforms!]! - fetch data from the table: "messaging_platforms"
  • messaging_platforms_aggregate: messaging_platforms_aggregate! - fetch aggregated fields from the table: "messaging_platforms"
  • messaging_platforms_by_pk: messaging_platforms - fetch data from the table: "messaging_platforms" using primary key columns
  • messaging_platforms_stream: [messaging_platforms!]! - fetch data from the table in a streaming manner: "messaging_platforms"
  • messaging_platforms_type: [messaging_platforms_type!]! - fetch data from the table: "messaging_platforms_type"
  • messaging_platforms_type_aggregate: messaging_platforms_type_aggregate! - fetch aggregated fields from the table: "messaging_platforms_type"
  • messaging_platforms_type_by_pk: messaging_platforms_type - fetch data from the table: "messaging_platforms_type" using primary key columns
  • messaging_platforms_type_stream: [messaging_platforms_type!]! - fetch data from the table in a streaming manner: "messaging_platforms_type"
  • metrics_summary: [metrics_summary!]! - fetch data from the table: "metrics_summary"
  • metrics_summary_aggregate: metrics_summary_aggregate! - fetch aggregated fields from the table: "metrics_summary"
  • metrics_summary_by_pk: metrics_summary - fetch data from the table: "metrics_summary" using primary key columns
  • metrics_summary_stream: [metrics_summary!]! - fetch data from the table in a streaming manner: "metrics_summary"
  • ms_teams_channels: [ms_teams_channels!]! - fetch data from the table: "ms_teams_channels"
  • ms_teams_channels_aggregate: ms_teams_channels_aggregate! - fetch aggregated fields from the table: "ms_teams_channels"
  • ms_teams_channels_by_pk: ms_teams_channels - fetch data from the table: "ms_teams_channels" using primary key columns
  • ms_teams_channels_stream: [ms_teams_channels!]! - fetch data from the table in a streaming manner: "ms_teams_channels"
  • notification_channel_account_mappings: [notification_channel_account_mappings!]! - fetch data from the table: "notification_channel_account_mappings"
  • notification_channel_account_mappings_aggregate: notification_channel_account_mappings_aggregate! - fetch aggregated fields from the table: "notification_channel_account_mappings"
  • notification_channel_account_mappings_by_pk: notification_channel_account_mappings - fetch data from the table: "notification_channel_account_mappings" using primary key columns
  • notification_channel_account_mappings_stream: [notification_channel_account_mappings!]! - fetch data from the table in a streaming manner: "notification_channel_account_mappings"
  • notification_platform_types: [notification_platform_types!]! - fetch data from the table: "notification_platform_types"
  • notification_platform_types_aggregate: notification_platform_types_aggregate! - fetch aggregated fields from the table: "notification_platform_types"
  • notification_platform_types_by_pk: notification_platform_types - fetch data from the table: "notification_platform_types" using primary key columns
  • notification_platform_types_stream: [notification_platform_types!]! - fetch data from the table in a streaming manner: "notification_platform_types"
  • notification_rule_mappings: [notification_rule_mappings!]! - fetch data from the table: "notification_rule_mappings"
  • notification_rule_mappings_aggregate: notification_rule_mappings_aggregate! - fetch aggregated fields from the table: "notification_rule_mappings"
  • notification_rule_mappings_by_pk: notification_rule_mappings - fetch data from the table: "notification_rule_mappings" using primary key columns
  • notification_rule_mappings_stream: [notification_rule_mappings!]! - fetch data from the table in a streaming manner: "notification_rule_mappings"
  • notification_rules: [notification_rules!]! - fetch data from the table: "notification_rules"
  • notification_rules_aggregate: notification_rules_aggregate! - fetch aggregated fields from the table: "notification_rules"
  • notification_rules_by_pk: notification_rules - fetch data from the table: "notification_rules" using primary key columns
  • notification_rules_stream: [notification_rules!]! - fetch data from the table in a streaming manner: "notification_rules"
  • notification_severity_type: [notification_severity_type!]! - fetch data from the table: "notification_severity_type"
  • notification_severity_type_aggregate: notification_severity_type_aggregate! - fetch aggregated fields from the table: "notification_severity_type"
  • notification_severity_type_by_pk: notification_severity_type - fetch data from the table: "notification_severity_type" using primary key columns
  • notification_severity_type_stream: [notification_severity_type!]! - fetch data from the table in a streaming manner: "notification_severity_type"
  • notification_source_type: [notification_source_type!]! - fetch data from the table: "notification_source_type"
  • notification_source_type_aggregate: notification_source_type_aggregate! - fetch aggregated fields from the table: "notification_source_type"
  • notification_source_type_by_pk: notification_source_type - fetch data from the table: "notification_source_type" using primary key columns
  • notification_source_type_stream: [notification_source_type!]! - fetch data from the table in a streaming manner: "notification_source_type"
  • notification_user: [notification_user!]! - fetch data from the table: "notification_user"
  • notification_user_aggregate: notification_user_aggregate! - fetch aggregated fields from the table: "notification_user"
  • notification_user_by_pk: notification_user - fetch data from the table: "notification_user" using primary key columns
  • notification_user_status_type: [notification_user_status_type!]! - fetch data from the table: "notification_user_status_type"
  • notification_user_status_type_aggregate: notification_user_status_type_aggregate! - fetch aggregated fields from the table: "notification_user_status_type"
  • notification_user_status_type_by_pk: notification_user_status_type - fetch data from the table: "notification_user_status_type" using primary key columns
  • notification_user_status_type_stream: [notification_user_status_type!]! - fetch data from the table in a streaming manner: "notification_user_status_type"
  • notification_user_stream: [notification_user!]! - fetch data from the table in a streaming manner: "notification_user"
  • notifications: [notifications!]! - An array relationship
  • notifications_aggregate: notifications_aggregate! - An aggregate relationship
  • notifications_by_pk: notifications - fetch data from the table: "notifications" using primary key columns
  • notifications_delivery_mode_type: [notifications_delivery_mode_type!]! - fetch data from the table: "notifications_delivery_mode_type"
  • notifications_delivery_mode_type_aggregate: notifications_delivery_mode_type_aggregate! - fetch aggregated fields from the table: "notifications_delivery_mode_type"
  • notifications_delivery_mode_type_by_pk: notifications_delivery_mode_type - fetch data from the table: "notifications_delivery_mode_type" using primary key columns
  • notifications_delivery_mode_type_stream: [notifications_delivery_mode_type!]! - fetch data from the table in a streaming manner: "notifications_delivery_mode_type"
  • notifications_frequency_type: [notifications_frequency_type!]! - fetch data from the table: "notifications_frequency_type"
  • notifications_frequency_type_aggregate: notifications_frequency_type_aggregate! - fetch aggregated fields from the table: "notifications_frequency_type"
  • notifications_frequency_type_by_pk: notifications_frequency_type - fetch data from the table: "notifications_frequency_type" using primary key columns
  • notifications_frequency_type_stream: [notifications_frequency_type!]! - fetch data from the table in a streaming manner: "notifications_frequency_type"
  • notifications_stream: [notifications!]! - fetch data from the table in a streaming manner: "notifications"
  • project_accounts: [project_accounts!]! - An array relationship
  • project_accounts_aggregate: project_accounts_aggregate! - An aggregate relationship
  • project_accounts_by_pk: project_accounts - fetch data from the table: "project_accounts" using primary key columns
  • project_accounts_stream: [project_accounts!]! - fetch data from the table in a streaming manner: "project_accounts"
  • project_category_type: [project_category_type!]! - fetch data from the table: "project_category_type"
  • project_category_type_aggregate: project_category_type_aggregate! - fetch aggregated fields from the table: "project_category_type"
  • project_category_type_by_pk: project_category_type - fetch data from the table: "project_category_type" using primary key columns
  • project_category_type_stream: [project_category_type!]! - fetch data from the table in a streaming manner: "project_category_type"
  • project_cloud_resources: [project_cloud_resources!]! - An array relationship
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate! - An aggregate relationship
  • project_cloud_resources_by_pk: project_cloud_resources - fetch data from the table: "project_cloud_resources" using primary key columns
  • project_cloud_resources_stream: [project_cloud_resources!]! - fetch data from the table in a streaming manner: "project_cloud_resources"
  • project_fundings: [project_fundings!]! - An array relationship
  • project_fundings_aggregate: project_fundings_aggregate! - An aggregate relationship
  • project_fundings_by_pk: project_fundings - fetch data from the table: "project_fundings" using primary key columns
  • project_fundings_stream: [project_fundings!]! - fetch data from the table in a streaming manner: "project_fundings"
  • project_users: [project_users!]! - An array relationship
  • project_users_aggregate: project_users_aggregate! - An aggregate relationship
  • project_users_by_pk: project_users - fetch data from the table: "project_users" using primary key columns
  • project_users_stream: [project_users!]! - fetch data from the table in a streaming manner: "project_users"
  • projects: [projects!]! - An array relationship
  • projects_aggregate: projects_aggregate! - An aggregate relationship
  • projects_by_pk: projects - fetch data from the table: "projects" using primary key columns
  • projects_stream: [projects!]! - fetch data from the table in a streaming manner: "projects"
  • recommendation: [recommendation!]! - fetch data from the table: "recommendation"
  • recommendation_action_type: [recommendation_action_type!]! - fetch data from the table: "recommendation_action_type"
  • recommendation_action_type_aggregate: recommendation_action_type_aggregate! - fetch aggregated fields from the table: "recommendation_action_type"
  • recommendation_action_type_by_pk: recommendation_action_type - fetch data from the table: "recommendation_action_type" using primary key columns
  • recommendation_action_type_stream: [recommendation_action_type!]! - fetch data from the table in a streaming manner: "recommendation_action_type"
  • recommendation_aggregate: recommendation_aggregate! - fetch aggregated fields from the table: "recommendation"
  • recommendation_by_pk: recommendation - fetch data from the table: "recommendation" using primary key columns
  • recommendation_category_type: [recommendation_category_type!]! - fetch data from the table: "recommendation_category_type"
  • recommendation_category_type_aggregate: recommendation_category_type_aggregate! - fetch aggregated fields from the table: "recommendation_category_type"
  • recommendation_category_type_by_pk: recommendation_category_type - fetch data from the table: "recommendation_category_type" using primary key columns
  • recommendation_category_type_stream: [recommendation_category_type!]! - fetch data from the table in a streaming manner: "recommendation_category_type"
  • recommendation_resolution: [recommendation_resolution!]! - fetch data from the table: "recommendation_resolution"
  • recommendation_resolution_aggregate: recommendation_resolution_aggregate! - fetch aggregated fields from the table: "recommendation_resolution"
  • recommendation_resolution_by_pk: recommendation_resolution - fetch data from the table: "recommendation_resolution" using primary key columns
  • recommendation_resolution_stream: [recommendation_resolution!]! - fetch data from the table in a streaming manner: "recommendation_resolution"
  • recommendation_severity_type: [recommendation_severity_type!]! - fetch data from the table: "recommendation_severity_type"
  • recommendation_severity_type_aggregate: recommendation_severity_type_aggregate! - fetch aggregated fields from the table: "recommendation_severity_type"
  • recommendation_severity_type_by_pk: recommendation_severity_type - fetch data from the table: "recommendation_severity_type" using primary key columns
  • recommendation_severity_type_stream: [recommendation_severity_type!]! - fetch data from the table in a streaming manner: "recommendation_severity_type"
  • recommendation_status_type: [recommendation_status_type!]! - fetch data from the table: "recommendation_status_type"
  • recommendation_status_type_aggregate: recommendation_status_type_aggregate! - fetch aggregated fields from the table: "recommendation_status_type"
  • recommendation_status_type_by_pk: recommendation_status_type - fetch data from the table: "recommendation_status_type" using primary key columns
  • recommendation_status_type_stream: [recommendation_status_type!]! - fetch data from the table in a streaming manner: "recommendation_status_type"
  • recommendation_stream: [recommendation!]! - fetch data from the table in a streaming manner: "recommendation"
  • roles: [roles!]! - fetch data from the table: "roles"
  • roles_aggregate: roles_aggregate! - fetch aggregated fields from the table: "roles"
  • roles_by_pk: roles - fetch data from the table: "roles" using primary key columns
  • roles_stream: [roles!]! - fetch data from the table in a streaming manner: "roles"
  • runbook_action: [runbook_action!]! - fetch data from the table: "runbook_action"
  • runbook_action_aggregate: runbook_action_aggregate! - fetch aggregated fields from the table: "runbook_action"
  • runbook_action_by_pk: runbook_action - fetch data from the table: "runbook_action" using primary key columns
  • runbook_action_library: [runbook_action_library!]! - fetch data from the table: "runbook_action_library"
  • runbook_action_library_aggregate: runbook_action_library_aggregate! - fetch aggregated fields from the table: "runbook_action_library"
  • runbook_action_library_by_pk: runbook_action_library - fetch data from the table: "runbook_action_library" using primary key columns
  • runbook_action_library_stream: [runbook_action_library!]! - fetch data from the table in a streaming manner: "runbook_action_library"
  • runbook_action_status: [runbook_action_status!]! - fetch data from the table: "runbook_action_status"
  • runbook_action_status_aggregate: runbook_action_status_aggregate! - fetch aggregated fields from the table: "runbook_action_status"
  • runbook_action_status_by_pk: runbook_action_status - fetch data from the table: "runbook_action_status" using primary key columns
  • runbook_action_status_stream: [runbook_action_status!]! - fetch data from the table in a streaming manner: "runbook_action_status"
  • runbook_action_stream: [runbook_action!]! - fetch data from the table in a streaming manner: "runbook_action"
  • runbook_task_output: [runbook_task_output!]! - fetch data from the table: "runbook_task_output"
  • runbook_task_output_aggregate: runbook_task_output_aggregate! - fetch aggregated fields from the table: "runbook_task_output"
  • runbook_task_output_by_pk: runbook_task_output - fetch data from the table: "runbook_task_output" using primary key columns
  • runbook_task_output_stream: [runbook_task_output!]! - fetch data from the table in a streaming manner: "runbook_task_output"
  • schedule_unit_type: [schedule_unit_type!]! - fetch data from the table: "schedule_unit_type"
  • schedule_unit_type_aggregate: schedule_unit_type_aggregate! - fetch aggregated fields from the table: "schedule_unit_type"
  • schedule_unit_type_by_pk: schedule_unit_type - fetch data from the table: "schedule_unit_type" using primary key columns
  • schedule_unit_type_stream: [schedule_unit_type!]! - fetch data from the table in a streaming manner: "schedule_unit_type"
  • sent_notifications: [sent_notifications!]! - fetch data from the table: "sent_notifications"
  • sent_notifications_aggregate: sent_notifications_aggregate! - fetch aggregated fields from the table: "sent_notifications"
  • sent_notifications_by_pk: sent_notifications - fetch data from the table: "sent_notifications" using primary key columns
  • sent_notifications_stream: [sent_notifications!]! - fetch data from the table in a streaming manner: "sent_notifications"
  • slack_bots: [slack_bots!]! - fetch data from the table: "slack_bots"
  • slack_bots_aggregate: slack_bots_aggregate! - fetch aggregated fields from the table: "slack_bots"
  • slack_bots_by_pk: slack_bots - fetch data from the table: "slack_bots" using primary key columns
  • slack_bots_stream: [slack_bots!]! - fetch data from the table in a streaming manner: "slack_bots"
  • slack_oauth_states: [slack_oauth_states!]! - fetch data from the table: "slack_oauth_states"
  • slack_oauth_states_aggregate: slack_oauth_states_aggregate! - fetch aggregated fields from the table: "slack_oauth_states"
  • slack_oauth_states_by_pk: slack_oauth_states - fetch data from the table: "slack_oauth_states" using primary key columns
  • slack_oauth_states_stream: [slack_oauth_states!]! - fetch data from the table in a streaming manner: "slack_oauth_states"
  • slo_config: [slo_config!]! - fetch data from the table: "slo_config"
  • slo_config_aggregate: slo_config_aggregate! - fetch aggregated fields from the table: "slo_config"
  • slo_config_by_pk: slo_config - fetch data from the table: "slo_config" using primary key columns
  • slo_config_stream: [slo_config!]! - fetch data from the table in a streaming manner: "slo_config"
  • slo_report: [slo_report!]! - fetch data from the table: "slo_report"
  • slo_report_aggregate: slo_report_aggregate! - fetch aggregated fields from the table: "slo_report"
  • slo_report_by_pk: slo_report - fetch data from the table: "slo_report" using primary key columns
  • slo_report_stream: [slo_report!]! - fetch data from the table in a streaming manner: "slo_report"
  • slo_status: [slo_status!]! - fetch data from the table: "slo_status"
  • slo_status_aggregate: slo_status_aggregate! - fetch aggregated fields from the table: "slo_status"
  • slo_status_by_pk: slo_status - fetch data from the table: "slo_status" using primary key columns
  • slo_status_stream: [slo_status!]! - fetch data from the table in a streaming manner: "slo_status"
  • spends: [spends!]! - An array relationship
  • spends_aggregate: spends_aggregate! - An aggregate relationship
  • spends_by_pk: spends - fetch data from the table: "spends" using primary key columns
  • spends_resource_group_type: [spends_resource_group_type!]! - fetch data from the table: "spends_resource_group_type"
  • spends_resource_group_type_aggregate: spends_resource_group_type_aggregate! - fetch aggregated fields from the table: "spends_resource_group_type"
  • spends_resource_group_type_by_pk: spends_resource_group_type - fetch data from the table: "spends_resource_group_type" using primary key columns
  • spends_resource_group_type_stream: [spends_resource_group_type!]! - fetch data from the table in a streaming manner: "spends_resource_group_type"
  • spends_stream: [spends!]! - fetch data from the table in a streaming manner: "spends"
  • tenant: [tenant!]! - fetch data from the table: "tenant"
  • tenant_aggregate: tenant_aggregate! - fetch aggregated fields from the table: "tenant"
  • tenant_attrs: [tenant_attrs!]! - An array relationship
  • tenant_attrs_aggregate: tenant_attrs_aggregate! - An aggregate relationship
  • tenant_attrs_by_pk: tenant_attrs - fetch data from the table: "tenant_attrs" using primary key columns
  • tenant_attrs_stream: [tenant_attrs!]! - fetch data from the table in a streaming manner: "tenant_attrs"
  • tenant_by_pk: tenant - fetch data from the table: "tenant" using primary key columns
  • tenant_onboarding: [tenant_onboarding!]! - fetch data from the table: "tenant_onboarding"
  • tenant_onboarding_aggregate: tenant_onboarding_aggregate! - fetch aggregated fields from the table: "tenant_onboarding"
  • tenant_onboarding_by_pk: tenant_onboarding - fetch data from the table: "tenant_onboarding" using primary key columns
  • tenant_onboarding_stream: [tenant_onboarding!]! - fetch data from the table in a streaming manner: "tenant_onboarding"
  • tenant_stream: [tenant!]! - fetch data from the table in a streaming manner: "tenant"
  • tenant_type: [tenant_type!]! - fetch data from the table: "tenant_type"
  • tenant_type_aggregate: tenant_type_aggregate! - fetch aggregated fields from the table: "tenant_type"
  • tenant_type_by_pk: tenant_type - fetch data from the table: "tenant_type" using primary key columns
  • tenant_type_stream: [tenant_type!]! - fetch data from the table in a streaming manner: "tenant_type"
  • tenant_users: [tenant_users!]! - An array relationship
  • tenant_users_aggregate: tenant_users_aggregate! - An aggregate relationship
  • tenant_users_by_pk: tenant_users - fetch data from the table: "tenant_users" using primary key columns
  • tenant_users_stream: [tenant_users!]! - fetch data from the table in a streaming manner: "tenant_users"
  • ticket_severity_type: [ticket_severity_type!]! - fetch data from the table: "ticket_severity_type"
  • ticket_severity_type_aggregate: ticket_severity_type_aggregate! - fetch aggregated fields from the table: "ticket_severity_type"
  • ticket_severity_type_by_pk: ticket_severity_type - fetch data from the table: "ticket_severity_type" using primary key columns
  • ticket_severity_type_stream: [ticket_severity_type!]! - fetch data from the table in a streaming manner: "ticket_severity_type"
  • ticket_source_type: [ticket_source_type!]! - fetch data from the table: "ticket_source_type"
  • ticket_source_type_aggregate: ticket_source_type_aggregate! - fetch aggregated fields from the table: "ticket_source_type"
  • ticket_source_type_by_pk: ticket_source_type - fetch data from the table: "ticket_source_type" using primary key columns
  • ticket_source_type_stream: [ticket_source_type!]! - fetch data from the table in a streaming manner: "ticket_source_type"
  • ticket_tool_types: [ticket_tool_types!]! - fetch data from the table: "ticket_tool_types"
  • ticket_tool_types_aggregate: ticket_tool_types_aggregate! - fetch aggregated fields from the table: "ticket_tool_types"
  • ticket_tool_types_by_pk: ticket_tool_types - fetch data from the table: "ticket_tool_types" using primary key columns
  • ticket_tool_types_stream: [ticket_tool_types!]! - fetch data from the table in a streaming manner: "ticket_tool_types"
  • tickets: [tickets!]! - An array relationship
  • tickets_aggregate: tickets_aggregate! - An aggregate relationship
  • tickets_by_pk: tickets - fetch data from the table: "tickets" using primary key columns
  • tickets_stream: [tickets!]! - fetch data from the table in a streaming manner: "tickets"
  • upgrade_plan: [upgrade_plan!]! - fetch data from the table: "upgrade_plan"
  • upgrade_plan_aggregate: upgrade_plan_aggregate! - fetch aggregated fields from the table: "upgrade_plan"
  • upgrade_plan_audit: [upgrade_plan_audit!]! - fetch data from the table: "upgrade_plan_audit"
  • upgrade_plan_audit_aggregate: upgrade_plan_audit_aggregate! - fetch aggregated fields from the table: "upgrade_plan_audit"
  • upgrade_plan_audit_by_pk: upgrade_plan_audit - fetch data from the table: "upgrade_plan_audit" using primary key columns
  • upgrade_plan_audit_stream: [upgrade_plan_audit!]! - fetch data from the table in a streaming manner: "upgrade_plan_audit"
  • upgrade_plan_by_pk: upgrade_plan - fetch data from the table: "upgrade_plan" using primary key columns
  • upgrade_plan_status_type: [upgrade_plan_status_type!]! - fetch data from the table: "upgrade_plan_status_type"
  • upgrade_plan_status_type_aggregate: upgrade_plan_status_type_aggregate! - fetch aggregated fields from the table: "upgrade_plan_status_type"
  • upgrade_plan_status_type_by_pk: upgrade_plan_status_type - fetch data from the table: "upgrade_plan_status_type" using primary key columns
  • upgrade_plan_status_type_stream: [upgrade_plan_status_type!]! - fetch data from the table in a streaming manner: "upgrade_plan_status_type"
  • upgrade_plan_steps: [upgrade_plan_steps!]! - fetch data from the table: "upgrade_plan_steps"
  • upgrade_plan_steps_aggregate: upgrade_plan_steps_aggregate! - fetch aggregated fields from the table: "upgrade_plan_steps"
  • upgrade_plan_steps_by_pk: upgrade_plan_steps - fetch data from the table: "upgrade_plan_steps" using primary key columns
  • upgrade_plan_steps_stream: [upgrade_plan_steps!]! - fetch data from the table in a streaming manner: "upgrade_plan_steps"
  • upgrade_plan_stream: [upgrade_plan!]! - fetch data from the table in a streaming manner: "upgrade_plan"
  • upgrade_plan_tasks: [upgrade_plan_tasks!]! - fetch data from the table: "upgrade_plan_tasks"
  • upgrade_plan_tasks_aggregate: upgrade_plan_tasks_aggregate! - fetch aggregated fields from the table: "upgrade_plan_tasks"
  • upgrade_plan_tasks_by_pk: upgrade_plan_tasks - fetch data from the table: "upgrade_plan_tasks" using primary key columns
  • upgrade_plan_tasks_stream: [upgrade_plan_tasks!]! - fetch data from the table in a streaming manner: "upgrade_plan_tasks"
  • user_attrs: [user_attrs!]! - An array relationship
  • user_attrs_aggregate: user_attrs_aggregate! - An aggregate relationship
  • user_attrs_by_pk: user_attrs - fetch data from the table: "user_attrs" using primary key columns
  • user_attrs_stream: [user_attrs!]! - fetch data from the table in a streaming manner: "user_attrs"
  • user_auths: [user_auths!]! - An array relationship
  • user_auths_aggregate: user_auths_aggregate! - An aggregate relationship
  • user_auths_by_pk: user_auths - fetch data from the table: "user_auths" using primary key columns
  • user_auths_stream: [user_auths!]! - fetch data from the table in a streaming manner: "user_auths"
  • user_groups: [user_groups!]! - An array relationship
  • user_groups_aggregate: user_groups_aggregate! - An aggregate relationship
  • user_groups_by_pk: user_groups - fetch data from the table: "user_groups" using primary key columns
  • user_groups_stream: [user_groups!]! - fetch data from the table in a streaming manner: "user_groups"
  • user_history: [user_history!]! - fetch data from the table: "user_history"
  • user_history_aggregate: user_history_aggregate! - fetch aggregated fields from the table: "user_history"
  • user_history_by_pk: user_history - fetch data from the table: "user_history" using primary key columns
  • user_history_stream: [user_history!]! - fetch data from the table in a streaming manner: "user_history"
  • user_roles: [user_roles!]! - An array relationship
  • user_roles_aggregate: user_roles_aggregate! - An aggregate relationship
  • user_roles_by_pk: user_roles - fetch data from the table: "user_roles" using primary key columns
  • user_roles_stream: [user_roles!]! - fetch data from the table in a streaming manner: "user_roles"
  • user_status_type: [user_status_type!]! - fetch data from the table: "user_status_type"
  • user_status_type_aggregate: user_status_type_aggregate! - fetch aggregated fields from the table: "user_status_type"
  • user_status_type_by_pk: user_status_type - fetch data from the table: "user_status_type" using primary key columns
  • user_status_type_stream: [user_status_type!]! - fetch data from the table in a streaming manner: "user_status_type"
  • usergroup_users: [usergroup_users!]! - An array relationship
  • usergroup_users_aggregate: usergroup_users_aggregate! - An aggregate relationship
  • usergroup_users_by_pk: usergroup_users - fetch data from the table: "usergroup_users" using primary key columns
  • usergroup_users_stream: [usergroup_users!]! - fetch data from the table in a streaming manner: "usergroup_users"
  • users: [users!]! - An array relationship
  • users_aggregate: users_aggregate! - An aggregate relationship
  • users_by_pk: users - fetch data from the table: "users" using primary key columns
  • users_stream: [users!]! - fetch data from the table in a streaming manner: "users"
task_response

Fields:

  • id: String
  • owner: String
  • sequence: String
  • status: String
  • step_id: String
  • title: String
timestamp
timestamp_comparison_exp

Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'.

Fields:

  • _eq: timestamp
  • _gt: timestamp
  • _gte: timestamp
  • _in: [timestamp!]
  • _is_null: Boolean
  • _lt: timestamp
  • _lte: timestamp
  • _neq: timestamp
  • _nin: [timestamp!]
timestamptz
timestamptz_comparison_exp

Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'.

Fields:

  • _eq: timestamptz
  • _gt: timestamptz
  • _gte: timestamptz
  • _in: [timestamptz!]
  • _is_null: Boolean
  • _lt: timestamptz
  • _lte: timestamptz
  • _neq: timestamptz
  • _nin: [timestamptz!]
uuid
uuid_comparison_exp

Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'.

Fields:

  • _eq: uuid
  • _gt: uuid
  • _gte: uuid
  • _in: [uuid!]
  • _is_null: Boolean
  • _lt: uuid
  • _lte: uuid
  • _neq: uuid
  • _nin: [uuid!]

Helper Types (Filter, Input, Ordering)

Auto-generated types for filtering, sorting, and input operations. Expand each category to view.

Cost Management (190 types)

billing_aggregate_fields

aggregate fields of "billing"

Fields:

  • avg: billing_avg_fields
  • count: Int!
  • max: billing_max_fields
  • min: billing_min_fields
  • stddev: billing_stddev_fields
  • stddev_pop: billing_stddev_pop_fields
  • stddev_samp: billing_stddev_samp_fields
  • sum: billing_sum_fields
  • var_pop: billing_var_pop_fields
  • var_samp: billing_var_samp_fields
  • variance: billing_variance_fields

billing_avg_fields

aggregate avg on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

billing_bool_exp

Boolean expression to filter rows from the table "billing". All fields are combined with a logical 'AND'.

Fields:

  • _and: [billing_bool_exp!]
  • _not: billing_bool_exp
  • _or: [billing_bool_exp!]
  • amount_due: float8_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • last_billed_amount: float8_comparison_exp
  • last_billed_date: timestamp_comparison_exp
  • tenant_id: uuid_comparison_exp
  • tier: String_comparison_exp
  • total_paid: float8_comparison_exp
  • updated_at: timestamp_comparison_exp

billing_constraint

unique or primary key constraints on table "billing"

Values:

  • billing_pkey - unique or primary key constraint on columns "id"

billing_inc_input

input type for incrementing numeric columns in table "billing"

Fields:

  • amount_due: float8
  • last_billed_amount: float8
  • total_paid: float8

billing_insert_input

input type for inserting data into table "billing"

Fields:

  • amount_due: float8
  • created_at: timestamp
  • id: uuid
  • last_billed_amount: float8
  • last_billed_date: timestamp
  • tenant_id: uuid
  • tier: String
  • total_paid: float8
  • updated_at: timestamp

billing_max_fields

aggregate max on columns

Fields:

  • amount_due: float8
  • created_at: timestamp
  • id: uuid
  • last_billed_amount: float8
  • last_billed_date: timestamp
  • tenant_id: uuid
  • tier: String
  • total_paid: float8
  • updated_at: timestamp

billing_min_fields

aggregate min on columns

Fields:

  • amount_due: float8
  • created_at: timestamp
  • id: uuid
  • last_billed_amount: float8
  • last_billed_date: timestamp
  • tenant_id: uuid
  • tier: String
  • total_paid: float8
  • updated_at: timestamp

billing_mutation_response

response of any mutation on the table "billing"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [billing!]! - data from the rows affected by the mutation

billing_on_conflict

on_conflict condition type for table "billing"

Fields:

  • constraint: billing_constraint!
  • update_columns: [billing_update_column!]!
  • where: billing_bool_exp

billing_order_by

Ordering options when selecting data from "billing".

Fields:

  • amount_due: order_by
  • created_at: order_by
  • id: order_by
  • last_billed_amount: order_by
  • last_billed_date: order_by
  • tenant_id: order_by
  • tier: order_by
  • total_paid: order_by
  • updated_at: order_by

billing_pk_columns_input

primary key columns input for table: billing

Fields:

  • id: uuid!

billing_select_column

select columns of table "billing"

Values:

  • amount_due - column name
  • created_at - column name
  • id - column name
  • last_billed_amount - column name
  • last_billed_date - column name
  • tenant_id - column name
  • tier - column name
  • total_paid - column name
  • updated_at - column name

billing_set_input

input type for updating data in table "billing"

Fields:

  • amount_due: float8
  • created_at: timestamp
  • id: uuid
  • last_billed_amount: float8
  • last_billed_date: timestamp
  • tenant_id: uuid
  • tier: String
  • total_paid: float8
  • updated_at: timestamp

billing_stddev_fields

aggregate stddev on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

billing_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

billing_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

billing_stream_cursor_input

Streaming cursor of the table "billing"

Fields:

  • initial_value: billing_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

billing_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • amount_due: float8
  • created_at: timestamp
  • id: uuid
  • last_billed_amount: float8
  • last_billed_date: timestamp
  • tenant_id: uuid
  • tier: String
  • total_paid: float8
  • updated_at: timestamp

billing_sum_fields

aggregate sum on columns

Fields:

  • amount_due: float8
  • last_billed_amount: float8
  • total_paid: float8

billing_update_column

update columns of table "billing"

Values:

  • amount_due - column name
  • created_at - column name
  • id - column name
  • last_billed_amount - column name
  • last_billed_date - column name
  • tenant_id - column name
  • tier - column name
  • total_paid - column name
  • updated_at - column name

billing_usage_cost_aggregate_fields

aggregate fields of "billing_usage_cost"

Fields:

  • avg: billing_usage_cost_avg_fields
  • count: Int!
  • max: billing_usage_cost_max_fields
  • min: billing_usage_cost_min_fields
  • stddev: billing_usage_cost_stddev_fields
  • stddev_pop: billing_usage_cost_stddev_pop_fields
  • stddev_samp: billing_usage_cost_stddev_samp_fields
  • sum: billing_usage_cost_sum_fields
  • var_pop: billing_usage_cost_var_pop_fields
  • var_samp: billing_usage_cost_var_samp_fields
  • variance: billing_usage_cost_variance_fields

billing_usage_cost_avg_fields

aggregate avg on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_usage_cost_bool_exp

Boolean expression to filter rows from the table "billing_usage_cost". All fields are combined with a logical 'AND'.

Fields:

  • _and: [billing_usage_cost_bool_exp!]
  • _not: billing_usage_cost_bool_exp
  • _or: [billing_usage_cost_bool_exp!]
  • account_id: uuid_comparison_exp
  • billing_date: timestamp_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • cost_per_unit: float8_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • service_name: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • total_cost: float8_comparison_exp
  • units: Int_comparison_exp
  • updated_at: timestamp_comparison_exp

billing_usage_cost_constraint

unique or primary key constraints on table "billing_usage_cost"

Values:

  • billing_usage_cost_pkey - unique or primary key constraint on columns "id"
  • tenant_id_billing_date_service_name_name_account_id_index - unique or primary key constraint on columns "service_name", "account_id", "billing_date", "tenant_id", "name"

billing_usage_cost_inc_input

input type for incrementing numeric columns in table "billing_usage_cost"

Fields:

  • cost_per_unit: float8
  • total_cost: float8
  • units: Int

billing_usage_cost_insert_input

input type for inserting data into table "billing_usage_cost"

Fields:

  • account_id: uuid
  • billing_date: timestamp
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cost_per_unit: float8
  • created_at: timestamp
  • id: uuid
  • name: String
  • service_name: String
  • tenant_id: uuid
  • total_cost: float8
  • units: Int
  • updated_at: timestamp

billing_usage_cost_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • billing_date: timestamp
  • cost_per_unit: float8
  • created_at: timestamp
  • id: uuid
  • name: String
  • service_name: String
  • tenant_id: uuid
  • total_cost: float8
  • units: Int
  • updated_at: timestamp

billing_usage_cost_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • billing_date: timestamp
  • cost_per_unit: float8
  • created_at: timestamp
  • id: uuid
  • name: String
  • service_name: String
  • tenant_id: uuid
  • total_cost: float8
  • units: Int
  • updated_at: timestamp

billing_usage_cost_mutation_response

response of any mutation on the table "billing_usage_cost"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [billing_usage_cost!]! - data from the rows affected by the mutation

billing_usage_cost_on_conflict

on_conflict condition type for table "billing_usage_cost"

Fields:

  • constraint: billing_usage_cost_constraint!
  • update_columns: [billing_usage_cost_update_column!]!
  • where: billing_usage_cost_bool_exp

billing_usage_cost_order_by

Ordering options when selecting data from "billing_usage_cost".

Fields:

  • account_id: order_by
  • billing_date: order_by
  • cloud_account: cloud_accounts_order_by
  • cost_per_unit: order_by
  • created_at: order_by
  • id: order_by
  • name: order_by
  • service_name: order_by
  • tenant_id: order_by
  • total_cost: order_by
  • units: order_by
  • updated_at: order_by

billing_usage_cost_pk_columns_input

primary key columns input for table: billing_usage_cost

Fields:

  • id: uuid!

billing_usage_cost_select_column

select columns of table "billing_usage_cost"

Values:

  • account_id - column name
  • billing_date - column name
  • cost_per_unit - column name
  • created_at - column name
  • id - column name
  • name - column name
  • service_name - column name
  • tenant_id - column name
  • total_cost - column name
  • units - column name
  • updated_at - column name

billing_usage_cost_set_input

input type for updating data in table "billing_usage_cost"

Fields:

  • account_id: uuid
  • billing_date: timestamp
  • cost_per_unit: float8
  • created_at: timestamp
  • id: uuid
  • name: String
  • service_name: String
  • tenant_id: uuid
  • total_cost: float8
  • units: Int
  • updated_at: timestamp

billing_usage_cost_stddev_fields

aggregate stddev on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_usage_cost_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_usage_cost_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_usage_cost_stream_cursor_input

Streaming cursor of the table "billing_usage_cost"

Fields:

  • initial_value: billing_usage_cost_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

billing_usage_cost_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • billing_date: timestamp
  • cost_per_unit: float8
  • created_at: timestamp
  • id: uuid
  • name: String
  • service_name: String
  • tenant_id: uuid
  • total_cost: float8
  • units: Int
  • updated_at: timestamp

billing_usage_cost_sum_fields

aggregate sum on columns

Fields:

  • cost_per_unit: float8
  • total_cost: float8
  • units: Int

billing_usage_cost_update_column

update columns of table "billing_usage_cost"

Values:

  • account_id - column name
  • billing_date - column name
  • cost_per_unit - column name
  • created_at - column name
  • id - column name
  • name - column name
  • service_name - column name
  • tenant_id - column name
  • total_cost - column name
  • units - column name
  • updated_at - column name

billing_usage_cost_var_pop_fields

aggregate var_pop on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_usage_cost_var_samp_fields

aggregate var_samp on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_usage_cost_variance_fields

aggregate variance on columns

Fields:

  • cost_per_unit: Float
  • total_cost: Float
  • units: Float

billing_var_pop_fields

aggregate var_pop on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

billing_var_samp_fields

aggregate var_samp on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

billing_variance_fields

aggregate variance on columns

Fields:

  • amount_due: Float
  • last_billed_amount: Float
  • total_paid: Float

businessunit_funding_aggregate_bool_exp

Fields:

  • avg: businessunit_funding_aggregate_bool_exp_avg
  • corr: businessunit_funding_aggregate_bool_exp_corr
  • count: businessunit_funding_aggregate_bool_exp_count
  • covar_samp: businessunit_funding_aggregate_bool_exp_covar_samp
  • max: businessunit_funding_aggregate_bool_exp_max
  • min: businessunit_funding_aggregate_bool_exp_min
  • stddev_samp: businessunit_funding_aggregate_bool_exp_stddev_samp
  • sum: businessunit_funding_aggregate_bool_exp_sum
  • var_samp: businessunit_funding_aggregate_bool_exp_var_samp

businessunit_funding_aggregate_bool_exp_count

Fields:

  • arguments: [businessunit_funding_select_column!]
  • distinct: Boolean
  • filter: businessunit_funding_bool_exp
  • predicate: Int_comparison_exp!

businessunit_funding_aggregate_fields

aggregate fields of "businessunit_funding"

Fields:

  • avg: businessunit_funding_avg_fields
  • count: Int!
  • max: businessunit_funding_max_fields
  • min: businessunit_funding_min_fields
  • stddev: businessunit_funding_stddev_fields
  • stddev_pop: businessunit_funding_stddev_pop_fields
  • stddev_samp: businessunit_funding_stddev_samp_fields
  • sum: businessunit_funding_sum_fields
  • var_pop: businessunit_funding_var_pop_fields
  • var_samp: businessunit_funding_var_samp_fields
  • variance: businessunit_funding_variance_fields

businessunit_funding_aggregate_order_by

order by aggregate values of table "businessunit_funding"

Fields:

  • avg: businessunit_funding_avg_order_by
  • count: order_by
  • max: businessunit_funding_max_order_by
  • min: businessunit_funding_min_order_by
  • stddev: businessunit_funding_stddev_order_by
  • stddev_pop: businessunit_funding_stddev_pop_order_by
  • stddev_samp: businessunit_funding_stddev_samp_order_by
  • sum: businessunit_funding_sum_order_by
  • var_pop: businessunit_funding_var_pop_order_by
  • var_samp: businessunit_funding_var_samp_order_by
  • variance: businessunit_funding_variance_order_by

businessunit_funding_arr_rel_insert_input

input type for inserting array relation for remote table "businessunit_funding"

Fields:

  • data: [businessunit_funding_insert_input!]!
  • on_conflict: businessunit_funding_on_conflict - upsert condition

businessunit_funding_avg_fields

aggregate avg on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_avg_order_by

order by avg() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_bool_exp

Boolean expression to filter rows from the table "businessunit_funding". All fields are combined with a logical 'AND'.

Fields:

  • _and: [businessunit_funding_bool_exp!]
  • _not: businessunit_funding_bool_exp
  • _or: [businessunit_funding_bool_exp!]
  • amount: float8_comparison_exp
  • businessUnitByBusinessUnit: business_unit_bool_exp
  • business_unit: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • end_date: timestamp_comparison_exp
  • fundingSourceByFundingSource: funding_sources_bool_exp
  • funding_source: uuid_comparison_exp
  • id: uuid_comparison_exp
  • planned_amount: float8_comparison_exp
  • project_fundings: project_fundings_bool_exp
  • project_fundings_aggregate: project_fundings_aggregate_bool_exp
  • start_date: timestamp_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp

businessunit_funding_constraint

unique or primary key constraints on table "businessunit_funding"

Values:

  • businessunit_funding_sources_funding_source_business_unit_t_key - unique or primary key constraint on columns "business_unit", "funding_source", "tenant"
  • businessunit_funding_sources_pkey - unique or primary key constraint on columns "id"

businessunit_funding_inc_input

input type for incrementing numeric columns in table "businessunit_funding"

Fields:

  • amount: float8
  • planned_amount: float8

businessunit_funding_insert_input

input type for inserting data into table "businessunit_funding"

Fields:

  • amount: float8
  • businessUnitByBusinessUnit: business_unit_obj_rel_insert_input
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • fundingSourceByFundingSource: funding_sources_obj_rel_insert_input
  • funding_source: uuid
  • id: uuid
  • planned_amount: float8
  • project_fundings: project_fundings_arr_rel_insert_input
  • start_date: timestamp
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input

businessunit_funding_max_fields

aggregate max on columns

Fields:

  • amount: float8
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • funding_source: uuid
  • id: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

businessunit_funding_max_order_by

order by max() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • end_date: order_by
  • funding_source: order_by
  • id: order_by
  • planned_amount: order_by
  • start_date: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

businessunit_funding_min_fields

aggregate min on columns

Fields:

  • amount: float8
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • funding_source: uuid
  • id: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

businessunit_funding_min_order_by

order by min() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • end_date: order_by
  • funding_source: order_by
  • id: order_by
  • planned_amount: order_by
  • start_date: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

businessunit_funding_mutation_response

response of any mutation on the table "businessunit_funding"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [businessunit_funding!]! - data from the rows affected by the mutation

businessunit_funding_obj_rel_insert_input

input type for inserting object relation for remote table "businessunit_funding"

Fields:

  • data: businessunit_funding_insert_input!
  • on_conflict: businessunit_funding_on_conflict - upsert condition

businessunit_funding_on_conflict

on_conflict condition type for table "businessunit_funding"

Fields:

  • constraint: businessunit_funding_constraint!
  • update_columns: [businessunit_funding_update_column!]!
  • where: businessunit_funding_bool_exp

businessunit_funding_order_by

Ordering options when selecting data from "businessunit_funding".

Fields:

  • amount: order_by
  • businessUnitByBusinessUnit: business_unit_order_by
  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • end_date: order_by
  • fundingSourceByFundingSource: funding_sources_order_by
  • funding_source: order_by
  • id: order_by
  • planned_amount: order_by
  • project_fundings_aggregate: project_fundings_aggregate_order_by
  • start_date: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by

businessunit_funding_pk_columns_input

primary key columns input for table: businessunit_funding

Fields:

  • id: uuid!

businessunit_funding_select_column

select columns of table "businessunit_funding"

Values:

  • amount - column name
  • business_unit - column name
  • created_at - column name
  • created_by - column name
  • end_date - column name
  • funding_source - column name
  • id - column name
  • planned_amount - column name
  • start_date - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

businessunit_funding_set_input

input type for updating data in table "businessunit_funding"

Fields:

  • amount: float8
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • funding_source: uuid
  • id: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

businessunit_funding_stddev_fields

aggregate stddev on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_stddev_order_by

order by stddev() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_stddev_pop_order_by

order by stddev_pop() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_stddev_samp_order_by

order by stddev_samp() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_stream_cursor_input

Streaming cursor of the table "businessunit_funding"

Fields:

  • initial_value: businessunit_funding_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

businessunit_funding_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • amount: float8
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • funding_source: uuid
  • id: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

businessunit_funding_sum_fields

aggregate sum on columns

Fields:

  • amount: float8
  • planned_amount: float8

businessunit_funding_sum_order_by

order by sum() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_update_column

update columns of table "businessunit_funding"

Values:

  • amount - column name
  • business_unit - column name
  • created_at - column name
  • created_by - column name
  • end_date - column name
  • funding_source - column name
  • id - column name
  • planned_amount - column name
  • start_date - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

businessunit_funding_var_pop_fields

aggregate var_pop on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_var_pop_order_by

order by var_pop() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_var_samp_fields

aggregate var_samp on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_var_samp_order_by

order by var_samp() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

businessunit_funding_variance_fields

aggregate variance on columns

Fields:

  • amount: Float
  • planned_amount: Float

businessunit_funding_variance_order_by

order by variance() on columns of table "businessunit_funding"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_aggregate_bool_exp

Fields:

  • avg: funding_sources_aggregate_bool_exp_avg
  • corr: funding_sources_aggregate_bool_exp_corr
  • count: funding_sources_aggregate_bool_exp_count
  • covar_samp: funding_sources_aggregate_bool_exp_covar_samp
  • max: funding_sources_aggregate_bool_exp_max
  • min: funding_sources_aggregate_bool_exp_min
  • stddev_samp: funding_sources_aggregate_bool_exp_stddev_samp
  • sum: funding_sources_aggregate_bool_exp_sum
  • var_samp: funding_sources_aggregate_bool_exp_var_samp

funding_sources_aggregate_bool_exp_count

Fields:

  • arguments: [funding_sources_select_column!]
  • distinct: Boolean
  • filter: funding_sources_bool_exp
  • predicate: Int_comparison_exp!

funding_sources_aggregate_fields

aggregate fields of "funding_sources"

Fields:

  • avg: funding_sources_avg_fields
  • count: Int!
  • max: funding_sources_max_fields
  • min: funding_sources_min_fields
  • stddev: funding_sources_stddev_fields
  • stddev_pop: funding_sources_stddev_pop_fields
  • stddev_samp: funding_sources_stddev_samp_fields
  • sum: funding_sources_sum_fields
  • var_pop: funding_sources_var_pop_fields
  • var_samp: funding_sources_var_samp_fields
  • variance: funding_sources_variance_fields

funding_sources_aggregate_order_by

order by aggregate values of table "funding_sources"

Fields:

  • avg: funding_sources_avg_order_by
  • count: order_by
  • max: funding_sources_max_order_by
  • min: funding_sources_min_order_by
  • stddev: funding_sources_stddev_order_by
  • stddev_pop: funding_sources_stddev_pop_order_by
  • stddev_samp: funding_sources_stddev_samp_order_by
  • sum: funding_sources_sum_order_by
  • var_pop: funding_sources_var_pop_order_by
  • var_samp: funding_sources_var_samp_order_by
  • variance: funding_sources_variance_order_by

funding_sources_arr_rel_insert_input

input type for inserting array relation for remote table "funding_sources"

Fields:

  • data: [funding_sources_insert_input!]!
  • on_conflict: funding_sources_on_conflict - upsert condition

funding_sources_avg_fields

aggregate avg on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_avg_order_by

order by avg() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_bool_exp

Boolean expression to filter rows from the table "funding_sources". All fields are combined with a logical 'AND'.

Fields:

  • _and: [funding_sources_bool_exp!]
  • _not: funding_sources_bool_exp
  • _or: [funding_sources_bool_exp!]
  • amount: float8_comparison_exp
  • businessunit_funding_sources: businessunit_funding_bool_exp
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • end_date: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • name: citext_comparison_exp
  • owners: uuid_comparison_exp
  • ownersById: users_bool_exp
  • ownersById_aggregate: users_aggregate_bool_exp
  • planned_amount: float8_comparison_exp
  • start_date: timestamp_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • user_group: user_groups_bool_exp
  • user_groups: uuid_comparison_exp

funding_sources_constraint

unique or primary key constraints on table "funding_sources"

Values:

  • funding_sources_pkey - unique or primary key constraint on columns "id"
  • funding_sources_tenant_name_key - unique or primary key constraint on columns "tenant", "name"

funding_sources_inc_input

input type for incrementing numeric columns in table "funding_sources"

Fields:

  • amount: float8
  • planned_amount: float8

funding_sources_insert_input

input type for inserting data into table "funding_sources"

Fields:

  • amount: float8
  • businessunit_funding_sources: businessunit_funding_arr_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • end_date: timestamp
  • id: uuid
  • name: citext
  • owners: uuid
  • ownersById: users_arr_rel_insert_input
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • user_group: user_groups_obj_rel_insert_input
  • user_groups: uuid

funding_sources_max_fields

aggregate max on columns

Fields:

  • amount: float8
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • end_date: timestamp
  • id: uuid
  • name: citext
  • owners: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user_groups: uuid

funding_sources_max_order_by

order by max() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • end_date: order_by
  • id: order_by
  • name: order_by
  • owners: order_by
  • planned_amount: order_by
  • start_date: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user_groups: order_by

funding_sources_min_fields

aggregate min on columns

Fields:

  • amount: float8
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • end_date: timestamp
  • id: uuid
  • name: citext
  • owners: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user_groups: uuid

funding_sources_min_order_by

order by min() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • end_date: order_by
  • id: order_by
  • name: order_by
  • owners: order_by
  • planned_amount: order_by
  • start_date: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user_groups: order_by

funding_sources_mutation_response

response of any mutation on the table "funding_sources"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [funding_sources!]! - data from the rows affected by the mutation

funding_sources_obj_rel_insert_input

input type for inserting object relation for remote table "funding_sources"

Fields:

  • data: funding_sources_insert_input!
  • on_conflict: funding_sources_on_conflict - upsert condition

funding_sources_on_conflict

on_conflict condition type for table "funding_sources"

Fields:

  • constraint: funding_sources_constraint!
  • update_columns: [funding_sources_update_column!]!
  • where: funding_sources_bool_exp

funding_sources_order_by

Ordering options when selecting data from "funding_sources".

Fields:

  • amount: order_by
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • end_date: order_by
  • id: order_by
  • name: order_by
  • owners: order_by
  • ownersById_aggregate: users_aggregate_order_by
  • planned_amount: order_by
  • start_date: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by
  • user_group: user_groups_order_by
  • user_groups: order_by

funding_sources_pk_columns_input

primary key columns input for table: funding_sources

Fields:

  • id: uuid!

funding_sources_select_column

select columns of table "funding_sources"

Values:

  • amount - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • end_date - column name
  • id - column name
  • name - column name
  • owners - column name
  • planned_amount - column name
  • start_date - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name
  • user_groups - column name

funding_sources_set_input

input type for updating data in table "funding_sources"

Fields:

  • amount: float8
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • end_date: timestamp
  • id: uuid
  • name: citext
  • owners: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user_groups: uuid

funding_sources_stddev_fields

aggregate stddev on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_stddev_order_by

order by stddev() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_stddev_pop_order_by

order by stddev_pop() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_stddev_samp_order_by

order by stddev_samp() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_stream_cursor_input

Streaming cursor of the table "funding_sources"

Fields:

  • initial_value: funding_sources_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

funding_sources_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • amount: float8
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • end_date: timestamp
  • id: uuid
  • name: citext
  • owners: uuid
  • planned_amount: float8
  • start_date: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user_groups: uuid

funding_sources_sum_fields

aggregate sum on columns

Fields:

  • amount: float8
  • planned_amount: float8

funding_sources_sum_order_by

order by sum() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_update_column

update columns of table "funding_sources"

Values:

  • amount - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • end_date - column name
  • id - column name
  • name - column name
  • owners - column name
  • planned_amount - column name
  • start_date - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name
  • user_groups - column name

funding_sources_var_pop_fields

aggregate var_pop on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_var_pop_order_by

order by var_pop() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_var_samp_fields

aggregate var_samp on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_var_samp_order_by

order by var_samp() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

funding_sources_variance_fields

aggregate variance on columns

Fields:

  • amount: Float
  • planned_amount: Float

funding_sources_variance_order_by

order by variance() on columns of table "funding_sources"

Fields:

  • amount: order_by
  • planned_amount: order_by

spends_aggregate_bool_exp

Fields:

  • avg: spends_aggregate_bool_exp_avg
  • bool_and: spends_aggregate_bool_exp_bool_and
  • bool_or: spends_aggregate_bool_exp_bool_or
  • corr: spends_aggregate_bool_exp_corr
  • count: spends_aggregate_bool_exp_count
  • covar_samp: spends_aggregate_bool_exp_covar_samp
  • max: spends_aggregate_bool_exp_max
  • min: spends_aggregate_bool_exp_min
  • stddev_samp: spends_aggregate_bool_exp_stddev_samp
  • sum: spends_aggregate_bool_exp_sum
  • var_samp: spends_aggregate_bool_exp_var_samp

spends_aggregate_bool_exp_count

Fields:

  • arguments: [spends_select_column!]
  • distinct: Boolean
  • filter: spends_bool_exp
  • predicate: Int_comparison_exp!

spends_aggregate_fields

aggregate fields of "spends"

Fields:

  • avg: spends_avg_fields
  • count: Int!
  • max: spends_max_fields
  • min: spends_min_fields
  • stddev: spends_stddev_fields
  • stddev_pop: spends_stddev_pop_fields
  • stddev_samp: spends_stddev_samp_fields
  • sum: spends_sum_fields
  • var_pop: spends_var_pop_fields
  • var_samp: spends_var_samp_fields
  • variance: spends_variance_fields

spends_aggregate_order_by

order by aggregate values of table "spends"

Fields:

  • avg: spends_avg_order_by
  • count: order_by
  • max: spends_max_order_by
  • min: spends_min_order_by
  • stddev: spends_stddev_order_by
  • stddev_pop: spends_stddev_pop_order_by
  • stddev_samp: spends_stddev_samp_order_by
  • sum: spends_sum_order_by
  • var_pop: spends_var_pop_order_by
  • var_samp: spends_var_samp_order_by
  • variance: spends_variance_order_by

spends_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • tags: jsonb

spends_arr_rel_insert_input

input type for inserting array relation for remote table "spends"

Fields:

  • data: [spends_insert_input!]!
  • on_conflict: spends_on_conflict - upsert condition

spends_avg_fields

aggregate avg on columns

Fields:

  • amount: Float

spends_avg_order_by

order by avg() on columns of table "spends"

Fields:

  • amount: order_by

spends_bool_exp

Boolean expression to filter rows from the table "spends". All fields are combined with a logical 'AND'.

Fields:

  • _and: [spends_bool_exp!]
  • _not: spends_bool_exp
  • _or: [spends_bool_exp!]
  • amount: float8_comparison_exp
  • business_unit: uuid_comparison_exp
  • cloudAccountByCloudAccount: cloud_accounts_bool_exp
  • cloud_account: uuid_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • cloud_resourse: cloud_resourses_bool_exp
  • date: timestamp_comparison_exp
  • exclude_aggregate: Boolean_comparison_exp
  • id: uuid_comparison_exp
  • tags: jsonb_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • unit: String_comparison_exp

spends_constraint

unique or primary key constraints on table "spends"

Values:

  • spends_pkey - unique or primary key constraint on columns "id"
  • spends_tenant_cloud_account_cloud_resource_id_date_key - unique or primary key constraint on columns "date", "tenant", "cloud_account", "cloud_resource_id"

spends_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • tags: [String!]

spends_delete_elem_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

Fields:

  • tags: Int

spends_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • tags: String

spends_inc_input

input type for incrementing numeric columns in table "spends"

Fields:

  • amount: float8

spends_insert_input

input type for inserting data into table "spends"

Fields:

  • amount: float8
  • business_unit: uuid
  • cloudAccountByCloudAccount: cloud_accounts_obj_rel_insert_input
  • cloud_account: uuid
  • cloud_resource_id: uuid
  • cloud_resourse: cloud_resourses_obj_rel_insert_input
  • date: timestamp
  • exclude_aggregate: Boolean
  • id: uuid
  • tags: jsonb
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • unit: String

spends_max_fields

aggregate max on columns

Fields:

  • amount: float8
  • business_unit: uuid
  • cloud_account: uuid
  • cloud_resource_id: uuid
  • date: timestamp
  • id: uuid
  • tenant: uuid
  • unit: String

spends_max_order_by

order by max() on columns of table "spends"

Fields:

  • amount: order_by
  • business_unit: order_by
  • cloud_account: order_by
  • cloud_resource_id: order_by
  • date: order_by
  • id: order_by
  • tenant: order_by
  • unit: order_by

spends_min_fields

aggregate min on columns

Fields:

  • amount: float8
  • business_unit: uuid
  • cloud_account: uuid
  • cloud_resource_id: uuid
  • date: timestamp
  • id: uuid
  • tenant: uuid
  • unit: String

spends_min_order_by

order by min() on columns of table "spends"

Fields:

  • amount: order_by
  • business_unit: order_by
  • cloud_account: order_by
  • cloud_resource_id: order_by
  • date: order_by
  • id: order_by
  • tenant: order_by
  • unit: order_by

spends_mutation_response

response of any mutation on the table "spends"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [spends!]! - data from the rows affected by the mutation

spends_on_conflict

on_conflict condition type for table "spends"

Fields:

  • constraint: spends_constraint!
  • update_columns: [spends_update_column!]!
  • where: spends_bool_exp

spends_order_by

Ordering options when selecting data from "spends".

Fields:

  • amount: order_by
  • business_unit: order_by
  • cloudAccountByCloudAccount: cloud_accounts_order_by
  • cloud_account: order_by
  • cloud_resource_id: order_by
  • cloud_resourse: cloud_resourses_order_by
  • date: order_by
  • exclude_aggregate: order_by
  • id: order_by
  • tags: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • unit: order_by

spends_pk_columns_input

primary key columns input for table: spends

Fields:

  • id: uuid!

spends_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • tags: jsonb

spends_resource_group_type_aggregate_bool_exp

Fields:

  • count: spends_resource_group_type_aggregate_bool_exp_count

spends_resource_group_type_aggregate_bool_exp_count

Fields:

  • arguments: [spends_resource_group_type_select_column!]
  • distinct: Boolean
  • filter: spends_resource_group_type_bool_exp
  • predicate: Int_comparison_exp!

spends_resource_group_type_aggregate_fields

aggregate fields of "spends_resource_group_type"

Fields:

  • count: Int!
  • max: spends_resource_group_type_max_fields
  • min: spends_resource_group_type_min_fields

spends_resource_group_type_aggregate_order_by

order by aggregate values of table "spends_resource_group_type"

Fields:

  • count: order_by
  • max: spends_resource_group_type_max_order_by
  • min: spends_resource_group_type_min_order_by

spends_resource_group_type_arr_rel_insert_input

input type for inserting array relation for remote table "spends_resource_group_type"

Fields:

  • data: [spends_resource_group_type_insert_input!]!
  • on_conflict: spends_resource_group_type_on_conflict - upsert condition

spends_resource_group_type_bool_exp

Boolean expression to filter rows from the table "spends_resource_group_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [spends_resource_group_type_bool_exp!]
  • _not: spends_resource_group_type_bool_exp
  • _or: [spends_resource_group_type_bool_exp!]
  • cloudProviderByCloudProvider: cloud_provider_type_bool_exp
  • cloud_provider: cloud_provider_type_enum_comparison_exp
  • description: String_comparison_exp
  • value: String_comparison_exp

spends_resource_group_type_constraint

unique or primary key constraints on table "spends_resource_group_type"

Values:

  • spends_resource_group_types_pkey - unique or primary key constraint on columns "value"

spends_resource_group_type_insert_input

input type for inserting data into table "spends_resource_group_type"

Fields:

  • cloudProviderByCloudProvider: cloud_provider_type_obj_rel_insert_input
  • cloud_provider: cloud_provider_type_enum
  • description: String
  • value: String

spends_resource_group_type_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

spends_resource_group_type_max_order_by

order by max() on columns of table "spends_resource_group_type"

Fields:

  • description: order_by
  • value: order_by

spends_resource_group_type_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

spends_resource_group_type_min_order_by

order by min() on columns of table "spends_resource_group_type"

Fields:

  • description: order_by
  • value: order_by

spends_resource_group_type_mutation_response

response of any mutation on the table "spends_resource_group_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [spends_resource_group_type!]! - data from the rows affected by the mutation

spends_resource_group_type_on_conflict

on_conflict condition type for table "spends_resource_group_type"

Fields:

  • constraint: spends_resource_group_type_constraint!
  • update_columns: [spends_resource_group_type_update_column!]!
  • where: spends_resource_group_type_bool_exp

spends_resource_group_type_order_by

Ordering options when selecting data from "spends_resource_group_type".

Fields:

  • cloudProviderByCloudProvider: cloud_provider_type_order_by
  • cloud_provider: order_by
  • description: order_by
  • value: order_by

spends_resource_group_type_pk_columns_input

primary key columns input for table: spends_resource_group_type

Fields:

  • value: String!

spends_resource_group_type_select_column

select columns of table "spends_resource_group_type"

Values:

  • cloud_provider - column name
  • description - column name
  • value - column name

spends_resource_group_type_set_input

input type for updating data in table "spends_resource_group_type"

Fields:

  • cloud_provider: cloud_provider_type_enum
  • description: String
  • value: String

spends_resource_group_type_stream_cursor_input

Streaming cursor of the table "spends_resource_group_type"

Fields:

  • initial_value: spends_resource_group_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

spends_resource_group_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_provider: cloud_provider_type_enum
  • description: String
  • value: String

spends_resource_group_type_update_column

update columns of table "spends_resource_group_type"

Values:

  • cloud_provider - column name
  • description - column name
  • value - column name

spends_select_column

select columns of table "spends"

Values:

  • amount - column name
  • business_unit - column name
  • cloud_account - column name
  • cloud_resource_id - column name
  • date - column name
  • exclude_aggregate - column name
  • id - column name
  • tags - column name
  • tenant - column name
  • unit - column name

spends_set_input

input type for updating data in table "spends"

Fields:

  • amount: float8
  • business_unit: uuid
  • cloud_account: uuid
  • cloud_resource_id: uuid
  • date: timestamp
  • exclude_aggregate: Boolean
  • id: uuid
  • tags: jsonb
  • tenant: uuid
  • unit: String

spends_stddev_fields

aggregate stddev on columns

Fields:

  • amount: Float

spends_stddev_order_by

order by stddev() on columns of table "spends"

Fields:

  • amount: order_by

spends_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • amount: Float

spends_stddev_pop_order_by

order by stddev_pop() on columns of table "spends"

Fields:

  • amount: order_by

spends_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • amount: Float

spends_stddev_samp_order_by

order by stddev_samp() on columns of table "spends"

Fields:

  • amount: order_by

spends_stream_cursor_input

Streaming cursor of the table "spends"

Fields:

  • initial_value: spends_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

spends_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • amount: float8
  • business_unit: uuid
  • cloud_account: uuid
  • cloud_resource_id: uuid
  • date: timestamp
  • exclude_aggregate: Boolean
  • id: uuid
  • tags: jsonb
  • tenant: uuid
  • unit: String

spends_sum_fields

aggregate sum on columns

Fields:

  • amount: float8

spends_sum_order_by

order by sum() on columns of table "spends"

Fields:

  • amount: order_by

spends_update_column

update columns of table "spends"

Values:

  • amount - column name
  • business_unit - column name
  • cloud_account - column name
  • cloud_resource_id - column name
  • date - column name
  • exclude_aggregate - column name
  • id - column name
  • tags - column name
  • tenant - column name
  • unit - column name

spends_var_pop_fields

aggregate var_pop on columns

Fields:

  • amount: Float

spends_var_pop_order_by

order by var_pop() on columns of table "spends"

Fields:

  • amount: order_by

spends_var_samp_fields

aggregate var_samp on columns

Fields:

  • amount: Float

spends_var_samp_order_by

order by var_samp() on columns of table "spends"

Fields:

  • amount: order_by

spends_variance_fields

aggregate variance on columns

Fields:

  • amount: Float

spends_variance_order_by

order by variance() on columns of table "spends"

Fields:

  • amount: order_by
Anomalies (98 types)

anomaly_aggregate_fields

aggregate fields of "anomaly"

Fields:

  • avg: anomaly_avg_fields
  • count: Int!
  • max: anomaly_max_fields
  • min: anomaly_min_fields
  • stddev: anomaly_stddev_fields
  • stddev_pop: anomaly_stddev_pop_fields
  • stddev_samp: anomaly_stddev_samp_fields
  • sum: anomaly_sum_fields
  • var_pop: anomaly_var_pop_fields
  • var_samp: anomaly_var_samp_fields
  • variance: anomaly_variance_fields

anomaly_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • reference_value: jsonb

anomaly_avg_fields

aggregate avg on columns

Fields:

  • current_value: Float

anomaly_bool_exp

Boolean expression to filter rows from the table "anomaly". All fields are combined with a logical 'AND'.

Fields:

  • _and: [anomaly_bool_exp!]
  • _not: anomaly_bool_exp
  • _or: [anomaly_bool_exp!]
  • account_id: uuid_comparison_exp
  • anomaly_type: String_comparison_exp
  • config_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • current_value: numeric_comparison_exp
  • evaluated_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • is_anomaly: Boolean_comparison_exp
  • name: String_comparison_exp
  • namespace: String_comparison_exp
  • pod_name: String_comparison_exp
  • reference_value: jsonb_comparison_exp
  • tenant: uuid_comparison_exp
  • training_end_time: timestamp_comparison_exp
  • updated_at: timestamp_comparison_exp

anomaly_change_operator_aggregate_fields

aggregate fields of "anomaly_change_operator"

Fields:

  • count: Int!
  • max: anomaly_change_operator_max_fields
  • min: anomaly_change_operator_min_fields

anomaly_change_operator_bool_exp

Boolean expression to filter rows from the table "anomaly_change_operator". All fields are combined with a logical 'AND'.

Fields:

  • _and: [anomaly_change_operator_bool_exp!]
  • _not: anomaly_change_operator_bool_exp
  • _or: [anomaly_change_operator_bool_exp!]
  • comment: String_comparison_exp
  • value: String_comparison_exp

anomaly_change_operator_constraint

unique or primary key constraints on table "anomaly_change_operator"

Values:

  • anomaly_change_operator_pkey - unique or primary key constraint on columns "value"

anomaly_change_operator_insert_input

input type for inserting data into table "anomaly_change_operator"

Fields:

  • comment: String
  • value: String

anomaly_change_operator_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

anomaly_change_operator_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

anomaly_change_operator_mutation_response

response of any mutation on the table "anomaly_change_operator"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [anomaly_change_operator!]! - data from the rows affected by the mutation

anomaly_change_operator_on_conflict

on_conflict condition type for table "anomaly_change_operator"

Fields:

  • constraint: anomaly_change_operator_constraint!
  • update_columns: [anomaly_change_operator_update_column!]!
  • where: anomaly_change_operator_bool_exp

anomaly_change_operator_order_by

Ordering options when selecting data from "anomaly_change_operator".

Fields:

  • comment: order_by
  • value: order_by

anomaly_change_operator_pk_columns_input

primary key columns input for table: anomaly_change_operator

Fields:

  • value: String!

anomaly_change_operator_select_column

select columns of table "anomaly_change_operator"

Values:

  • comment - column name
  • value - column name

anomaly_change_operator_set_input

input type for updating data in table "anomaly_change_operator"

Fields:

  • comment: String
  • value: String

anomaly_change_operator_stream_cursor_input

Streaming cursor of the table "anomaly_change_operator"

Fields:

  • initial_value: anomaly_change_operator_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

anomaly_change_operator_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

anomaly_change_operator_update_column

update columns of table "anomaly_change_operator"

Values:

  • comment - column name
  • value - column name

anomaly_config_aggregate_fields

aggregate fields of "anomaly_config"

Fields:

  • avg: anomaly_config_avg_fields
  • count: Int!
  • max: anomaly_config_max_fields
  • min: anomaly_config_min_fields
  • stddev: anomaly_config_stddev_fields
  • stddev_pop: anomaly_config_stddev_pop_fields
  • stddev_samp: anomaly_config_stddev_samp_fields
  • sum: anomaly_config_sum_fields
  • var_pop: anomaly_config_var_pop_fields
  • var_samp: anomaly_config_var_samp_fields
  • variance: anomaly_config_variance_fields

anomaly_config_avg_fields

aggregate avg on columns

Fields:

  • buffer_percentage: Float

anomaly_config_bool_exp

Boolean expression to filter rows from the table "anomaly_config". All fields are combined with a logical 'AND'.

Fields:

  • _and: [anomaly_config_bool_exp!]
  • _not: anomaly_config_bool_exp
  • _or: [anomaly_config_bool_exp!]
  • anomaly_type: anomaly_type_enum_comparison_exp
  • buffer_percentage: numeric_comparison_exp
  • change_operator: anomaly_change_operator_enum_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • reference_period: String_comparison_exp
  • reference_unit: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • type: anomaly_config_type_enum_comparison_exp
  • updated_at: timestamptz_comparison_exp
  • updated_by: uuid_comparison_exp

anomaly_config_constraint

unique or primary key constraints on table "anomaly_config"

Values:

  • anomaly_config_pkey - unique or primary key constraint on columns "id"

anomaly_config_inc_input

input type for incrementing numeric columns in table "anomaly_config"

Fields:

  • buffer_percentage: numeric

anomaly_config_insert_input

input type for inserting data into table "anomaly_config"

Fields:

  • anomaly_type: anomaly_type_enum
  • buffer_percentage: numeric
  • change_operator: anomaly_change_operator_enum
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • reference_period: String
  • reference_unit: String
  • tenant_id: uuid
  • type: anomaly_config_type_enum
  • updated_at: timestamptz
  • updated_by: uuid

anomaly_config_max_fields

aggregate max on columns

Fields:

  • buffer_percentage: numeric
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • reference_period: String
  • reference_unit: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

anomaly_config_min_fields

aggregate min on columns

Fields:

  • buffer_percentage: numeric
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • reference_period: String
  • reference_unit: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

anomaly_config_mutation_response

response of any mutation on the table "anomaly_config"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [anomaly_config!]! - data from the rows affected by the mutation

anomaly_config_on_conflict

on_conflict condition type for table "anomaly_config"

Fields:

  • constraint: anomaly_config_constraint!
  • update_columns: [anomaly_config_update_column!]!
  • where: anomaly_config_bool_exp

anomaly_config_order_by

Ordering options when selecting data from "anomaly_config".

Fields:

  • anomaly_type: order_by
  • buffer_percentage: order_by
  • change_operator: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • reference_period: order_by
  • reference_unit: order_by
  • tenant_id: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by

anomaly_config_pk_columns_input

primary key columns input for table: anomaly_config

Fields:

  • id: uuid!

anomaly_config_select_column

select columns of table "anomaly_config"

Values:

  • anomaly_type - column name
  • buffer_percentage - column name
  • change_operator - column name
  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • reference_period - column name
  • reference_unit - column name
  • tenant_id - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

anomaly_config_set_input

input type for updating data in table "anomaly_config"

Fields:

  • anomaly_type: anomaly_type_enum
  • buffer_percentage: numeric
  • change_operator: anomaly_change_operator_enum
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • reference_period: String
  • reference_unit: String
  • tenant_id: uuid
  • type: anomaly_config_type_enum
  • updated_at: timestamptz
  • updated_by: uuid

anomaly_config_stddev_fields

aggregate stddev on columns

Fields:

  • buffer_percentage: Float

anomaly_config_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • buffer_percentage: Float

anomaly_config_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • buffer_percentage: Float

anomaly_config_stream_cursor_input

Streaming cursor of the table "anomaly_config"

Fields:

  • initial_value: anomaly_config_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

anomaly_config_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • anomaly_type: anomaly_type_enum
  • buffer_percentage: numeric
  • change_operator: anomaly_change_operator_enum
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • reference_period: String
  • reference_unit: String
  • tenant_id: uuid
  • type: anomaly_config_type_enum
  • updated_at: timestamptz
  • updated_by: uuid

anomaly_config_sum_fields

aggregate sum on columns

Fields:

  • buffer_percentage: numeric

anomaly_config_type_aggregate_fields

aggregate fields of "anomaly_config_type"

Fields:

  • count: Int!
  • max: anomaly_config_type_max_fields
  • min: anomaly_config_type_min_fields

anomaly_config_type_bool_exp

Boolean expression to filter rows from the table "anomaly_config_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [anomaly_config_type_bool_exp!]
  • _not: anomaly_config_type_bool_exp
  • _or: [anomaly_config_type_bool_exp!]
  • comment: String_comparison_exp
  • value: String_comparison_exp

anomaly_config_type_constraint

unique or primary key constraints on table "anomaly_config_type"

Values:

  • anamoly_config_type_pkey - unique or primary key constraint on columns "value"

anomaly_config_type_insert_input

input type for inserting data into table "anomaly_config_type"

Fields:

  • comment: String
  • value: String

anomaly_config_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

anomaly_config_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

anomaly_config_type_mutation_response

response of any mutation on the table "anomaly_config_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [anomaly_config_type!]! - data from the rows affected by the mutation

anomaly_config_type_on_conflict

on_conflict condition type for table "anomaly_config_type"

Fields:

  • constraint: anomaly_config_type_constraint!
  • update_columns: [anomaly_config_type_update_column!]!
  • where: anomaly_config_type_bool_exp

anomaly_config_type_order_by

Ordering options when selecting data from "anomaly_config_type".

Fields:

  • comment: order_by
  • value: order_by

anomaly_config_type_pk_columns_input

primary key columns input for table: anomaly_config_type

Fields:

  • value: String!

anomaly_config_type_select_column

select columns of table "anomaly_config_type"

Values:

  • comment - column name
  • value - column name

anomaly_config_type_set_input

input type for updating data in table "anomaly_config_type"

Fields:

  • comment: String
  • value: String

anomaly_config_type_stream_cursor_input

Streaming cursor of the table "anomaly_config_type"

Fields:

  • initial_value: anomaly_config_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

anomaly_config_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

anomaly_config_type_update_column

update columns of table "anomaly_config_type"

Values:

  • comment - column name
  • value - column name

anomaly_config_update_column

update columns of table "anomaly_config"

Values:

  • anomaly_type - column name
  • buffer_percentage - column name
  • change_operator - column name
  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • reference_period - column name
  • reference_unit - column name
  • tenant_id - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

anomaly_config_var_pop_fields

aggregate var_pop on columns

Fields:

  • buffer_percentage: Float

anomaly_config_var_samp_fields

aggregate var_samp on columns

Fields:

  • buffer_percentage: Float

anomaly_config_variance_fields

aggregate variance on columns

Fields:

  • buffer_percentage: Float

anomaly_constraint

unique or primary key constraints on table "anomaly"

Values:

  • anomaly_pkey - unique or primary key constraint on columns "id"

anomaly_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • reference_value: [String!]

anomaly_delete_elem_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

Fields:

  • reference_value: Int

anomaly_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • reference_value: String

anomaly_inc_input

input type for incrementing numeric columns in table "anomaly"

Fields:

  • current_value: numeric

anomaly_insert_input

input type for inserting data into table "anomaly"

Fields:

  • account_id: uuid
  • anomaly_type: String
  • config_id: uuid
  • created_at: timestamp
  • current_value: numeric
  • evaluated_at: timestamp
  • id: uuid
  • is_anomaly: Boolean
  • name: String
  • namespace: String
  • pod_name: String
  • reference_value: jsonb
  • tenant: uuid
  • training_end_time: timestamp
  • updated_at: timestamp

anomaly_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • anomaly_type: String
  • config_id: uuid
  • created_at: timestamp
  • current_value: numeric
  • evaluated_at: timestamp
  • id: uuid
  • name: String
  • namespace: String
  • pod_name: String
  • tenant: uuid
  • training_end_time: timestamp
  • updated_at: timestamp

anomaly_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • anomaly_type: String
  • config_id: uuid
  • created_at: timestamp
  • current_value: numeric
  • evaluated_at: timestamp
  • id: uuid
  • name: String
  • namespace: String
  • pod_name: String
  • tenant: uuid
  • training_end_time: timestamp
  • updated_at: timestamp

anomaly_mutation_response

response of any mutation on the table "anomaly"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [anomaly!]! - data from the rows affected by the mutation

anomaly_on_conflict

on_conflict condition type for table "anomaly"

Fields:

  • constraint: anomaly_constraint!
  • update_columns: [anomaly_update_column!]!
  • where: anomaly_bool_exp

anomaly_order_by

Ordering options when selecting data from "anomaly".

Fields:

  • account_id: order_by
  • anomaly_type: order_by
  • config_id: order_by
  • created_at: order_by
  • current_value: order_by
  • evaluated_at: order_by
  • id: order_by
  • is_anomaly: order_by
  • name: order_by
  • namespace: order_by
  • pod_name: order_by
  • reference_value: order_by
  • tenant: order_by
  • training_end_time: order_by
  • updated_at: order_by

anomaly_pk_columns_input

primary key columns input for table: anomaly

Fields:

  • id: uuid!

anomaly_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • reference_value: jsonb

anomaly_select_column

select columns of table "anomaly"

Values:

  • account_id - column name
  • anomaly_type - column name
  • config_id - column name
  • created_at - column name
  • current_value - column name
  • evaluated_at - column name
  • id - column name
  • is_anomaly - column name
  • name - column name
  • namespace - column name
  • pod_name - column name
  • reference_value - column name
  • tenant - column name
  • training_end_time - column name
  • updated_at - column name

anomaly_set_input

input type for updating data in table "anomaly"

Fields:

  • account_id: uuid
  • anomaly_type: String
  • config_id: uuid
  • created_at: timestamp
  • current_value: numeric
  • evaluated_at: timestamp
  • id: uuid
  • is_anomaly: Boolean
  • name: String
  • namespace: String
  • pod_name: String
  • reference_value: jsonb
  • tenant: uuid
  • training_end_time: timestamp
  • updated_at: timestamp

anomaly_stddev_fields

aggregate stddev on columns

Fields:

  • current_value: Float

anomaly_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • current_value: Float

anomaly_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • current_value: Float

anomaly_stream_cursor_input

Streaming cursor of the table "anomaly"

Fields:

  • initial_value: anomaly_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

anomaly_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • anomaly_type: String
  • config_id: uuid
  • created_at: timestamp
  • current_value: numeric
  • evaluated_at: timestamp
  • id: uuid
  • is_anomaly: Boolean
  • name: String
  • namespace: String
  • pod_name: String
  • reference_value: jsonb
  • tenant: uuid
  • training_end_time: timestamp
  • updated_at: timestamp

anomaly_sum_fields

aggregate sum on columns

Fields:

  • current_value: numeric

anomaly_type_aggregate_fields

aggregate fields of "anomaly_type"

Fields:

  • count: Int!
  • max: anomaly_type_max_fields
  • min: anomaly_type_min_fields

anomaly_type_bool_exp

Boolean expression to filter rows from the table "anomaly_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [anomaly_type_bool_exp!]
  • _not: anomaly_type_bool_exp
  • _or: [anomaly_type_bool_exp!]
  • comment: String_comparison_exp
  • value: String_comparison_exp

anomaly_type_constraint

unique or primary key constraints on table "anomaly_type"

Values:

  • anomaly_type_pkey - unique or primary key constraint on columns "value"

anomaly_type_insert_input

input type for inserting data into table "anomaly_type"

Fields:

  • comment: String
  • value: String

anomaly_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

anomaly_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

anomaly_type_mutation_response

response of any mutation on the table "anomaly_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [anomaly_type!]! - data from the rows affected by the mutation

anomaly_type_on_conflict

on_conflict condition type for table "anomaly_type"

Fields:

  • constraint: anomaly_type_constraint!
  • update_columns: [anomaly_type_update_column!]!
  • where: anomaly_type_bool_exp

anomaly_type_order_by

Ordering options when selecting data from "anomaly_type".

Fields:

  • comment: order_by
  • value: order_by

anomaly_type_pk_columns_input

primary key columns input for table: anomaly_type

Fields:

  • value: String!

anomaly_type_select_column

select columns of table "anomaly_type"

Values:

  • comment - column name
  • value - column name

anomaly_type_set_input

input type for updating data in table "anomaly_type"

Fields:

  • comment: String
  • value: String

anomaly_type_stream_cursor_input

Streaming cursor of the table "anomaly_type"

Fields:

  • initial_value: anomaly_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

anomaly_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

anomaly_type_update_column

update columns of table "anomaly_type"

Values:

  • comment - column name
  • value - column name

anomaly_update_column

update columns of table "anomaly"

Values:

  • account_id - column name
  • anomaly_type - column name
  • config_id - column name
  • created_at - column name
  • current_value - column name
  • evaluated_at - column name
  • id - column name
  • is_anomaly - column name
  • name - column name
  • namespace - column name
  • pod_name - column name
  • reference_value - column name
  • tenant - column name
  • training_end_time - column name
  • updated_at - column name

anomaly_var_pop_fields

aggregate var_pop on columns

Fields:

  • current_value: Float

anomaly_var_samp_fields

aggregate var_samp on columns

Fields:

  • current_value: Float

anomaly_variance_fields

aggregate variance on columns

Fields:

  • current_value: Float
Events & Incidents (390 types)

event_bulk_operations_aggregate_fields

aggregate fields of "event_bulk_operations"

Fields:

  • avg: event_bulk_operations_avg_fields
  • count: Int!
  • max: event_bulk_operations_max_fields
  • min: event_bulk_operations_min_fields
  • stddev: event_bulk_operations_stddev_fields
  • stddev_pop: event_bulk_operations_stddev_pop_fields
  • stddev_samp: event_bulk_operations_stddev_samp_fields
  • sum: event_bulk_operations_sum_fields
  • var_pop: event_bulk_operations_var_pop_fields
  • var_samp: event_bulk_operations_var_samp_fields
  • variance: event_bulk_operations_variance_fields

event_bulk_operations_avg_fields

aggregate avg on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_bulk_operations_bool_exp

Boolean expression to filter rows from the table "event_bulk_operations". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_bulk_operations_bool_exp!]
  • _not: event_bulk_operations_bool_exp
  • _or: [event_bulk_operations_bool_exp!]
  • account_id: uuid_comparison_exp
  • classification_id: uuid_comparison_exp
  • completed_at: timestamp_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • error_message: String_comparison_exp
  • fingerprint: String_comparison_exp
  • id: uuid_comparison_exp
  • operation_type: String_comparison_exp
  • processed_events: Int_comparison_exp
  • rule_id: uuid_comparison_exp
  • status: String_comparison_exp
  • target_status: String_comparison_exp
  • total_events: Int_comparison_exp

event_bulk_operations_constraint

unique or primary key constraints on table "event_bulk_operations"

Values:

  • event_bulk_operations_pkey - unique or primary key constraint on columns "id"

event_bulk_operations_inc_input

input type for incrementing numeric columns in table "event_bulk_operations"

Fields:

  • processed_events: Int
  • total_events: Int

event_bulk_operations_insert_input

input type for inserting data into table "event_bulk_operations"

Fields:

  • account_id: uuid
  • classification_id: uuid
  • completed_at: timestamp
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • fingerprint: String
  • id: uuid
  • operation_type: String
  • processed_events: Int
  • rule_id: uuid
  • status: String
  • target_status: String
  • total_events: Int

event_bulk_operations_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • classification_id: uuid
  • completed_at: timestamp
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • fingerprint: String
  • id: uuid
  • operation_type: String
  • processed_events: Int
  • rule_id: uuid
  • status: String
  • target_status: String
  • total_events: Int

event_bulk_operations_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • classification_id: uuid
  • completed_at: timestamp
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • fingerprint: String
  • id: uuid
  • operation_type: String
  • processed_events: Int
  • rule_id: uuid
  • status: String
  • target_status: String
  • total_events: Int

event_bulk_operations_mutation_response

response of any mutation on the table "event_bulk_operations"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_bulk_operations!]! - data from the rows affected by the mutation

event_bulk_operations_on_conflict

on_conflict condition type for table "event_bulk_operations"

Fields:

  • constraint: event_bulk_operations_constraint!
  • update_columns: [event_bulk_operations_update_column!]!
  • where: event_bulk_operations_bool_exp

event_bulk_operations_order_by

Ordering options when selecting data from "event_bulk_operations".

Fields:

  • account_id: order_by
  • classification_id: order_by
  • completed_at: order_by
  • created_at: order_by
  • created_by: order_by
  • error_message: order_by
  • fingerprint: order_by
  • id: order_by
  • operation_type: order_by
  • processed_events: order_by
  • rule_id: order_by
  • status: order_by
  • target_status: order_by
  • total_events: order_by

event_bulk_operations_pk_columns_input

primary key columns input for table: event_bulk_operations

Fields:

  • id: uuid!

event_bulk_operations_select_column

select columns of table "event_bulk_operations"

Values:

  • account_id - column name
  • classification_id - column name
  • completed_at - column name
  • created_at - column name
  • created_by - column name
  • error_message - column name
  • fingerprint - column name
  • id - column name
  • operation_type - column name
  • processed_events - column name
  • rule_id - column name
  • status - column name
  • target_status - column name
  • total_events - column name

event_bulk_operations_set_input

input type for updating data in table "event_bulk_operations"

Fields:

  • account_id: uuid
  • classification_id: uuid
  • completed_at: timestamp
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • fingerprint: String
  • id: uuid
  • operation_type: String
  • processed_events: Int
  • rule_id: uuid
  • status: String
  • target_status: String
  • total_events: Int

event_bulk_operations_stddev_fields

aggregate stddev on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_bulk_operations_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_bulk_operations_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_bulk_operations_stream_cursor_input

Streaming cursor of the table "event_bulk_operations"

Fields:

  • initial_value: event_bulk_operations_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_bulk_operations_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • classification_id: uuid
  • completed_at: timestamp
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • fingerprint: String
  • id: uuid
  • operation_type: String
  • processed_events: Int
  • rule_id: uuid
  • status: String
  • target_status: String
  • total_events: Int

event_bulk_operations_sum_fields

aggregate sum on columns

Fields:

  • processed_events: Int
  • total_events: Int

event_bulk_operations_update_column

update columns of table "event_bulk_operations"

Values:

  • account_id - column name
  • classification_id - column name
  • completed_at - column name
  • created_at - column name
  • created_by - column name
  • error_message - column name
  • fingerprint - column name
  • id - column name
  • operation_type - column name
  • processed_events - column name
  • rule_id - column name
  • status - column name
  • target_status - column name
  • total_events - column name

event_bulk_operations_var_pop_fields

aggregate var_pop on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_bulk_operations_var_samp_fields

aggregate var_samp on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_bulk_operations_variance_fields

aggregate variance on columns

Fields:

  • processed_events: Float
  • total_events: Float

event_classification_aggregate_fields

aggregate fields of "event_classification"

Fields:

  • avg: event_classification_avg_fields
  • count: Int!
  • max: event_classification_max_fields
  • min: event_classification_min_fields
  • stddev: event_classification_stddev_fields
  • stddev_pop: event_classification_stddev_pop_fields
  • stddev_samp: event_classification_stddev_samp_fields
  • sum: event_classification_sum_fields
  • var_pop: event_classification_var_pop_fields
  • var_samp: event_classification_var_samp_fields
  • variance: event_classification_variance_fields

event_classification_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • feature_snapshot: jsonb

event_classification_avg_fields

aggregate avg on columns

Fields:

  • original_score: Float

event_classification_bool_exp

Boolean expression to filter rows from the table "event_classification". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_classification_bool_exp!]
  • _not: event_classification_bool_exp
  • _or: [event_classification_bool_exp!]
  • apply_scope: String_comparison_exp
  • apply_until: timestamp_comparison_exp
  • classification: String_comparison_exp
  • classified_at: timestamp_comparison_exp
  • classified_by: uuid_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • corrected_priority: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • event_id: uuid_comparison_exp
  • feature_snapshot: jsonb_comparison_exp
  • id: uuid_comparison_exp
  • linked_event_id: uuid_comparison_exp
  • original_priority: String_comparison_exp
  • original_score: Int_comparison_exp
  • priority_direction: String_comparison_exp
  • reason_code: String_comparison_exp
  • reason_text: String_comparison_exp
  • rule_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

event_classification_constraint

unique or primary key constraints on table "event_classification"

Values:

  • event_classification_event_id_cloud_account_id_key - unique or primary key constraint on columns "cloud_account_id", "event_id"
  • event_classification_pkey - unique or primary key constraint on columns "id"

event_classification_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • feature_snapshot: [String!]

event_classification_delete_elem_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

Fields:

  • feature_snapshot: Int

event_classification_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • feature_snapshot: String

event_classification_inc_input

input type for incrementing numeric columns in table "event_classification"

Fields:

  • original_score: Int

event_classification_insert_input

input type for inserting data into table "event_classification"

Fields:

  • apply_scope: String
  • apply_until: timestamp
  • classification: String
  • classified_at: timestamp
  • classified_by: uuid
  • cloud_account_id: uuid
  • corrected_priority: String
  • created_at: timestamp
  • event_id: uuid
  • feature_snapshot: jsonb
  • id: uuid
  • linked_event_id: uuid
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String
  • reason_text: String
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

event_classification_max_fields

aggregate max on columns

Fields:

  • apply_scope: String
  • apply_until: timestamp
  • classification: String
  • classified_at: timestamp
  • classified_by: uuid
  • cloud_account_id: uuid
  • corrected_priority: String
  • created_at: timestamp
  • event_id: uuid
  • id: uuid
  • linked_event_id: uuid
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String
  • reason_text: String
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

event_classification_min_fields

aggregate min on columns

Fields:

  • apply_scope: String
  • apply_until: timestamp
  • classification: String
  • classified_at: timestamp
  • classified_by: uuid
  • cloud_account_id: uuid
  • corrected_priority: String
  • created_at: timestamp
  • event_id: uuid
  • id: uuid
  • linked_event_id: uuid
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String
  • reason_text: String
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

event_classification_mutation_response

response of any mutation on the table "event_classification"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_classification!]! - data from the rows affected by the mutation

event_classification_on_conflict

on_conflict condition type for table "event_classification"

Fields:

  • constraint: event_classification_constraint!
  • update_columns: [event_classification_update_column!]!
  • where: event_classification_bool_exp

event_classification_order_by

Ordering options when selecting data from "event_classification".

Fields:

  • apply_scope: order_by
  • apply_until: order_by
  • classification: order_by
  • classified_at: order_by
  • classified_by: order_by
  • cloud_account_id: order_by
  • corrected_priority: order_by
  • created_at: order_by
  • event_id: order_by
  • feature_snapshot: order_by
  • id: order_by
  • linked_event_id: order_by
  • original_priority: order_by
  • original_score: order_by
  • priority_direction: order_by
  • reason_code: order_by
  • reason_text: order_by
  • rule_id: order_by
  • tenant_id: order_by
  • updated_at: order_by

event_classification_pk_columns_input

primary key columns input for table: event_classification

Fields:

  • id: uuid!

event_classification_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • feature_snapshot: jsonb

event_classification_select_column

select columns of table "event_classification"

Values:

  • apply_scope - column name
  • apply_until - column name
  • classification - column name
  • classified_at - column name
  • classified_by - column name
  • cloud_account_id - column name
  • corrected_priority - column name
  • created_at - column name
  • event_id - column name
  • feature_snapshot - column name
  • id - column name
  • linked_event_id - column name
  • original_priority - column name
  • original_score - column name
  • priority_direction - column name
  • reason_code - column name
  • reason_text - column name
  • rule_id - column name
  • tenant_id - column name
  • updated_at - column name

event_classification_set_input

input type for updating data in table "event_classification"

Fields:

  • apply_scope: String
  • apply_until: timestamp
  • classification: String
  • classified_at: timestamp
  • classified_by: uuid
  • cloud_account_id: uuid
  • corrected_priority: String
  • created_at: timestamp
  • event_id: uuid
  • feature_snapshot: jsonb
  • id: uuid
  • linked_event_id: uuid
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String
  • reason_text: String
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

event_classification_stddev_fields

aggregate stddev on columns

Fields:

  • original_score: Float

event_classification_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • original_score: Float

event_classification_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • original_score: Float

event_classification_stream_cursor_input

Streaming cursor of the table "event_classification"

Fields:

  • initial_value: event_classification_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_classification_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • apply_scope: String
  • apply_until: timestamp
  • classification: String
  • classified_at: timestamp
  • classified_by: uuid
  • cloud_account_id: uuid
  • corrected_priority: String
  • created_at: timestamp
  • event_id: uuid
  • feature_snapshot: jsonb
  • id: uuid
  • linked_event_id: uuid
  • original_priority: String
  • original_score: Int
  • priority_direction: String
  • reason_code: String
  • reason_text: String
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

event_classification_sum_fields

aggregate sum on columns

Fields:

  • original_score: Int

event_classification_update_column

update columns of table "event_classification"

Values:

  • apply_scope - column name
  • apply_until - column name
  • classification - column name
  • classified_at - column name
  • classified_by - column name
  • cloud_account_id - column name
  • corrected_priority - column name
  • created_at - column name
  • event_id - column name
  • feature_snapshot - column name
  • id - column name
  • linked_event_id - column name
  • original_priority - column name
  • original_score - column name
  • priority_direction - column name
  • reason_code - column name
  • reason_text - column name
  • rule_id - column name
  • tenant_id - column name
  • updated_at - column name

event_classification_var_pop_fields

aggregate var_pop on columns

Fields:

  • original_score: Float

event_classification_var_samp_fields

aggregate var_samp on columns

Fields:

  • original_score: Float

event_classification_variance_fields

aggregate variance on columns

Fields:

  • original_score: Float

event_correlations_aggregate_fields

aggregate fields of "event_correlations"

Fields:

  • avg: event_correlations_avg_fields
  • count: Int!
  • max: event_correlations_max_fields
  • min: event_correlations_min_fields
  • stddev: event_correlations_stddev_fields
  • stddev_pop: event_correlations_stddev_pop_fields
  • stddev_samp: event_correlations_stddev_samp_fields
  • sum: event_correlations_sum_fields
  • var_pop: event_correlations_var_pop_fields
  • var_samp: event_correlations_var_samp_fields
  • variance: event_correlations_variance_fields

event_correlations_avg_fields

aggregate avg on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_correlations_bool_exp

Boolean expression to filter rows from the table "event_correlations". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_correlations_bool_exp!]
  • _not: event_correlations_bool_exp
  • _or: [event_correlations_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • correlation_reason: String_comparison_exp
  • correlation_score: numeric_comparison_exp
  • correlation_type: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • dependency_distance: Int_comparison_exp
  • event_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • related_event_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • time_offset_minutes: Int_comparison_exp

event_correlations_constraint

unique or primary key constraints on table "event_correlations"

Values:

  • event_correlations_pkey - unique or primary key constraint on columns "id"
  • event_correlations_related_event_id_event_id_cloud_account_id_k - unique or primary key constraint on columns "related_event_id", "cloud_account_id", "event_id"

event_correlations_inc_input

input type for incrementing numeric columns in table "event_correlations"

Fields:

  • correlation_score: numeric
  • dependency_distance: Int
  • time_offset_minutes: Int

event_correlations_insert_input

input type for inserting data into table "event_correlations"

Fields:

  • cloud_account_id: uuid
  • correlation_reason: String
  • correlation_score: numeric
  • correlation_type: String
  • created_at: timestamp
  • dependency_distance: Int
  • event_id: uuid
  • id: uuid
  • related_event_id: uuid
  • tenant_id: uuid
  • time_offset_minutes: Int

event_correlations_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • correlation_reason: String
  • correlation_score: numeric
  • correlation_type: String
  • created_at: timestamp
  • dependency_distance: Int
  • event_id: uuid
  • id: uuid
  • related_event_id: uuid
  • tenant_id: uuid
  • time_offset_minutes: Int

event_correlations_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • correlation_reason: String
  • correlation_score: numeric
  • correlation_type: String
  • created_at: timestamp
  • dependency_distance: Int
  • event_id: uuid
  • id: uuid
  • related_event_id: uuid
  • tenant_id: uuid
  • time_offset_minutes: Int

event_correlations_mutation_response

response of any mutation on the table "event_correlations"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_correlations!]! - data from the rows affected by the mutation

event_correlations_on_conflict

on_conflict condition type for table "event_correlations"

Fields:

  • constraint: event_correlations_constraint!
  • update_columns: [event_correlations_update_column!]!
  • where: event_correlations_bool_exp

event_correlations_order_by

Ordering options when selecting data from "event_correlations".

Fields:

  • cloud_account_id: order_by
  • correlation_reason: order_by
  • correlation_score: order_by
  • correlation_type: order_by
  • created_at: order_by
  • dependency_distance: order_by
  • event_id: order_by
  • id: order_by
  • related_event_id: order_by
  • tenant_id: order_by
  • time_offset_minutes: order_by

event_correlations_pk_columns_input

primary key columns input for table: event_correlations

Fields:

  • id: uuid!

event_correlations_select_column

select columns of table "event_correlations"

Values:

  • cloud_account_id - column name
  • correlation_reason - column name
  • correlation_score - column name
  • correlation_type - column name
  • created_at - column name
  • dependency_distance - column name
  • event_id - column name
  • id - column name
  • related_event_id - column name
  • tenant_id - column name
  • time_offset_minutes - column name

event_correlations_set_input

input type for updating data in table "event_correlations"

Fields:

  • cloud_account_id: uuid
  • correlation_reason: String
  • correlation_score: numeric
  • correlation_type: String
  • created_at: timestamp
  • dependency_distance: Int
  • event_id: uuid
  • id: uuid
  • related_event_id: uuid
  • tenant_id: uuid
  • time_offset_minutes: Int

event_correlations_stddev_fields

aggregate stddev on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_correlations_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_correlations_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_correlations_stream_cursor_input

Streaming cursor of the table "event_correlations"

Fields:

  • initial_value: event_correlations_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_correlations_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • correlation_reason: String
  • correlation_score: numeric
  • correlation_type: String
  • created_at: timestamp
  • dependency_distance: Int
  • event_id: uuid
  • id: uuid
  • related_event_id: uuid
  • tenant_id: uuid
  • time_offset_minutes: Int

event_correlations_sum_fields

aggregate sum on columns

Fields:

  • correlation_score: numeric
  • dependency_distance: Int
  • time_offset_minutes: Int

event_correlations_update_column

update columns of table "event_correlations"

Values:

  • cloud_account_id - column name
  • correlation_reason - column name
  • correlation_score - column name
  • correlation_type - column name
  • created_at - column name
  • dependency_distance - column name
  • event_id - column name
  • id - column name
  • related_event_id - column name
  • tenant_id - column name
  • time_offset_minutes - column name

event_correlations_var_pop_fields

aggregate var_pop on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_correlations_var_samp_fields

aggregate var_samp on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_correlations_variance_fields

aggregate variance on columns

Fields:

  • correlation_score: Float
  • dependency_distance: Float
  • time_offset_minutes: Float

event_duplicates_aggregate_fields

aggregate fields of "event_duplicates"

Fields:

  • avg: event_duplicates_avg_fields
  • count: Int!
  • max: event_duplicates_max_fields
  • min: event_duplicates_min_fields
  • stddev: event_duplicates_stddev_fields
  • stddev_pop: event_duplicates_stddev_pop_fields
  • stddev_samp: event_duplicates_stddev_samp_fields
  • sum: event_duplicates_sum_fields
  • var_pop: event_duplicates_var_pop_fields
  • var_samp: event_duplicates_var_samp_fields
  • variance: event_duplicates_variance_fields

event_duplicates_avg_fields

aggregate avg on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_duplicates_bool_exp

Boolean expression to filter rows from the table "event_duplicates". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_duplicates_bool_exp!]
  • _not: event_duplicates_bool_exp
  • _or: [event_duplicates_bool_exp!]
  • absolute_first_seen_at: timestamp_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • event_id: uuid_comparison_exp
  • fingerprint: String_comparison_exp
  • first_event_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • occurrence_number: Int_comparison_exp
  • previous_event_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • time_since_first_seconds: Int_comparison_exp
  • time_since_previous_seconds: Int_comparison_exp

event_duplicates_constraint

unique or primary key constraints on table "event_duplicates"

Values:

  • event_duplicates_event_id_cloud_account_id_key - unique or primary key constraint on columns "cloud_account_id", "event_id"
  • event_duplicates_pkey - unique or primary key constraint on columns "id"

event_duplicates_inc_input

input type for incrementing numeric columns in table "event_duplicates"

Fields:

  • occurrence_number: Int
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_insert_input

input type for inserting data into table "event_duplicates"

Fields:

  • absolute_first_seen_at: timestamp
  • cloud_account_id: uuid
  • created_at: timestamp
  • event_id: uuid
  • fingerprint: String
  • first_event_id: uuid
  • id: uuid
  • occurrence_number: Int
  • previous_event_id: uuid
  • tenant_id: uuid
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_max_fields

aggregate max on columns

Fields:

  • absolute_first_seen_at: timestamp
  • cloud_account_id: uuid
  • created_at: timestamp
  • event_id: uuid
  • fingerprint: String
  • first_event_id: uuid
  • id: uuid
  • occurrence_number: Int
  • previous_event_id: uuid
  • tenant_id: uuid
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_min_fields

aggregate min on columns

Fields:

  • absolute_first_seen_at: timestamp
  • cloud_account_id: uuid
  • created_at: timestamp
  • event_id: uuid
  • fingerprint: String
  • first_event_id: uuid
  • id: uuid
  • occurrence_number: Int
  • previous_event_id: uuid
  • tenant_id: uuid
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_mutation_response

response of any mutation on the table "event_duplicates"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_duplicates!]! - data from the rows affected by the mutation

event_duplicates_on_conflict

on_conflict condition type for table "event_duplicates"

Fields:

  • constraint: event_duplicates_constraint!
  • update_columns: [event_duplicates_update_column!]!
  • where: event_duplicates_bool_exp

event_duplicates_order_by

Ordering options when selecting data from "event_duplicates".

Fields:

  • absolute_first_seen_at: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • event_id: order_by
  • fingerprint: order_by
  • first_event_id: order_by
  • id: order_by
  • occurrence_number: order_by
  • previous_event_id: order_by
  • tenant_id: order_by
  • time_since_first_seconds: order_by
  • time_since_previous_seconds: order_by

event_duplicates_pk_columns_input

primary key columns input for table: event_duplicates

Fields:

  • id: uuid!

event_duplicates_select_column

select columns of table "event_duplicates"

Values:

  • absolute_first_seen_at - column name
  • cloud_account_id - column name
  • created_at - column name
  • event_id - column name
  • fingerprint - column name
  • first_event_id - column name
  • id - column name
  • occurrence_number - column name
  • previous_event_id - column name
  • tenant_id - column name
  • time_since_first_seconds - column name
  • time_since_previous_seconds - column name

event_duplicates_set_input

input type for updating data in table "event_duplicates"

Fields:

  • absolute_first_seen_at: timestamp
  • cloud_account_id: uuid
  • created_at: timestamp
  • event_id: uuid
  • fingerprint: String
  • first_event_id: uuid
  • id: uuid
  • occurrence_number: Int
  • previous_event_id: uuid
  • tenant_id: uuid
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_stddev_fields

aggregate stddev on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_duplicates_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_duplicates_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_duplicates_stream_cursor_input

Streaming cursor of the table "event_duplicates"

Fields:

  • initial_value: event_duplicates_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_duplicates_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • absolute_first_seen_at: timestamp
  • cloud_account_id: uuid
  • created_at: timestamp
  • event_id: uuid
  • fingerprint: String
  • first_event_id: uuid
  • id: uuid
  • occurrence_number: Int
  • previous_event_id: uuid
  • tenant_id: uuid
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_sum_fields

aggregate sum on columns

Fields:

  • occurrence_number: Int
  • time_since_first_seconds: Int
  • time_since_previous_seconds: Int

event_duplicates_update_column

update columns of table "event_duplicates"

Values:

  • absolute_first_seen_at - column name
  • cloud_account_id - column name
  • created_at - column name
  • event_id - column name
  • fingerprint - column name
  • first_event_id - column name
  • id - column name
  • occurrence_number - column name
  • previous_event_id - column name
  • tenant_id - column name
  • time_since_first_seconds - column name
  • time_since_previous_seconds - column name

event_duplicates_var_pop_fields

aggregate var_pop on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_duplicates_var_samp_fields

aggregate var_samp on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_duplicates_variance_fields

aggregate variance on columns

Fields:

  • occurrence_number: Float
  • time_since_first_seconds: Float
  • time_since_previous_seconds: Float

event_history_aggregate_fields

aggregate fields of "event_history"

Fields:

  • count: Int!
  • max: event_history_max_fields
  • min: event_history_min_fields

event_history_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • metadata: jsonb
  • new_value: jsonb
  • old_value: jsonb

event_history_bool_exp

Boolean expression to filter rows from the table "event_history". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_history_bool_exp!]
  • _not: event_history_bool_exp
  • _or: [event_history_bool_exp!]
  • change_reason: String_comparison_exp
  • change_type: String_comparison_exp
  • changed_at: timestamptz_comparison_exp
  • changed_by: uuid_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • event_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • metadata: jsonb_comparison_exp
  • new_value: jsonb_comparison_exp
  • old_value: jsonb_comparison_exp
  • tenant_id: uuid_comparison_exp

event_history_constraint

unique or primary key constraints on table "event_history"

Values:

  • event_history_pkey - unique or primary key constraint on columns "id"

event_history_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • metadata: [String!]
  • new_value: [String!]
  • old_value: [String!]

event_history_delete_elem_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

Fields:

  • metadata: Int
  • new_value: Int
  • old_value: Int

event_history_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • metadata: String
  • new_value: String
  • old_value: String

event_history_insert_input

input type for inserting data into table "event_history"

Fields:

  • change_reason: String
  • change_type: String
  • changed_at: timestamptz
  • changed_by: uuid
  • cloud_account_id: uuid
  • event_id: uuid
  • id: uuid
  • metadata: jsonb
  • new_value: jsonb
  • old_value: jsonb
  • tenant_id: uuid

event_history_max_fields

aggregate max on columns

Fields:

  • change_reason: String
  • change_type: String
  • changed_at: timestamptz
  • changed_by: uuid
  • cloud_account_id: uuid
  • event_id: uuid
  • id: uuid
  • tenant_id: uuid

event_history_min_fields

aggregate min on columns

Fields:

  • change_reason: String
  • change_type: String
  • changed_at: timestamptz
  • changed_by: uuid
  • cloud_account_id: uuid
  • event_id: uuid
  • id: uuid
  • tenant_id: uuid

event_history_mutation_response

response of any mutation on the table "event_history"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_history!]! - data from the rows affected by the mutation

event_history_on_conflict

on_conflict condition type for table "event_history"

Fields:

  • constraint: event_history_constraint!
  • update_columns: [event_history_update_column!]!
  • where: event_history_bool_exp

event_history_order_by

Ordering options when selecting data from "event_history".

Fields:

  • change_reason: order_by
  • change_type: order_by
  • changed_at: order_by
  • changed_by: order_by
  • cloud_account_id: order_by
  • event_id: order_by
  • id: order_by
  • metadata: order_by
  • new_value: order_by
  • old_value: order_by
  • tenant_id: order_by

event_history_pk_columns_input

primary key columns input for table: event_history

Fields:

  • id: uuid!

event_history_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • metadata: jsonb
  • new_value: jsonb
  • old_value: jsonb

event_history_select_column

select columns of table "event_history"

Values:

  • change_reason - column name
  • change_type - column name
  • changed_at - column name
  • changed_by - column name
  • cloud_account_id - column name
  • event_id - column name
  • id - column name
  • metadata - column name
  • new_value - column name
  • old_value - column name
  • tenant_id - column name

event_history_set_input

input type for updating data in table "event_history"

Fields:

  • change_reason: String
  • change_type: String
  • changed_at: timestamptz
  • changed_by: uuid
  • cloud_account_id: uuid
  • event_id: uuid
  • id: uuid
  • metadata: jsonb
  • new_value: jsonb
  • old_value: jsonb
  • tenant_id: uuid

event_history_stream_cursor_input

Streaming cursor of the table "event_history"

Fields:

  • initial_value: event_history_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_history_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • change_reason: String
  • change_type: String
  • changed_at: timestamptz
  • changed_by: uuid
  • cloud_account_id: uuid
  • event_id: uuid
  • id: uuid
  • metadata: jsonb
  • new_value: jsonb
  • old_value: jsonb
  • tenant_id: uuid

event_history_update_column

update columns of table "event_history"

Values:

  • change_reason - column name
  • change_type - column name
  • changed_at - column name
  • changed_by - column name
  • cloud_account_id - column name
  • event_id - column name
  • id - column name
  • metadata - column name
  • new_value - column name
  • old_value - column name
  • tenant_id - column name

event_incoming_webhooks_aggregate_fields

aggregate fields of "event_incoming_webhooks"

Fields:

  • count: Int!
  • max: event_incoming_webhooks_max_fields
  • min: event_incoming_webhooks_min_fields

event_incoming_webhooks_bool_exp

Boolean expression to filter rows from the table "event_incoming_webhooks". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_incoming_webhooks_bool_exp!]
  • _not: event_incoming_webhooks_bool_exp
  • _or: [event_incoming_webhooks_bool_exp!]
  • account_id: uuid_comparison_exp
  • event_created_at: timestamp_comparison_exp
  • event_description: String_comparison_exp
  • event_id: String_comparison_exp
  • event_priority: String_comparison_exp
  • event_status: String_comparison_exp
  • event_title: String_comparison_exp
  • event_type: String_comparison_exp
  • event_url: String_comparison_exp
  • id: uuid_comparison_exp
  • integration_id: uuid_comparison_exp
  • integration_type: String_comparison_exp
  • raw: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • webhook_id: String_comparison_exp

event_incoming_webhooks_constraint

unique or primary key constraints on table "event_incoming_webhooks"

Values:

  • event_incoming_webhooks_pkey - unique or primary key constraint on columns "id"

event_incoming_webhooks_insert_input

input type for inserting data into table "event_incoming_webhooks"

Fields:

  • account_id: uuid
  • event_created_at: timestamp
  • event_description: String
  • event_id: String
  • event_priority: String
  • event_status: String
  • event_title: String
  • event_type: String
  • event_url: String
  • id: uuid
  • integration_id: uuid
  • integration_type: String
  • raw: String
  • tenant_id: uuid
  • webhook_id: String

event_incoming_webhooks_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • event_created_at: timestamp
  • event_description: String
  • event_id: String
  • event_priority: String
  • event_status: String
  • event_title: String
  • event_type: String
  • event_url: String
  • id: uuid
  • integration_id: uuid
  • integration_type: String
  • raw: String
  • tenant_id: uuid
  • webhook_id: String

event_incoming_webhooks_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • event_created_at: timestamp
  • event_description: String
  • event_id: String
  • event_priority: String
  • event_status: String
  • event_title: String
  • event_type: String
  • event_url: String
  • id: uuid
  • integration_id: uuid
  • integration_type: String
  • raw: String
  • tenant_id: uuid
  • webhook_id: String

event_incoming_webhooks_mutation_response

response of any mutation on the table "event_incoming_webhooks"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_incoming_webhooks!]! - data from the rows affected by the mutation

event_incoming_webhooks_on_conflict

on_conflict condition type for table "event_incoming_webhooks"

Fields:

  • constraint: event_incoming_webhooks_constraint!
  • update_columns: [event_incoming_webhooks_update_column!]!
  • where: event_incoming_webhooks_bool_exp

event_incoming_webhooks_order_by

Ordering options when selecting data from "event_incoming_webhooks".

Fields:

  • account_id: order_by
  • event_created_at: order_by
  • event_description: order_by
  • event_id: order_by
  • event_priority: order_by
  • event_status: order_by
  • event_title: order_by
  • event_type: order_by
  • event_url: order_by
  • id: order_by
  • integration_id: order_by
  • integration_type: order_by
  • raw: order_by
  • tenant_id: order_by
  • webhook_id: order_by

event_incoming_webhooks_pk_columns_input

primary key columns input for table: event_incoming_webhooks

Fields:

  • id: uuid!

event_incoming_webhooks_select_column

select columns of table "event_incoming_webhooks"

Values:

  • account_id - column name
  • event_created_at - column name
  • event_description - column name
  • event_id - column name
  • event_priority - column name
  • event_status - column name
  • event_title - column name
  • event_type - column name
  • event_url - column name
  • id - column name
  • integration_id - column name
  • integration_type - column name
  • raw - column name
  • tenant_id - column name
  • webhook_id - column name

event_incoming_webhooks_set_input

input type for updating data in table "event_incoming_webhooks"

Fields:

  • account_id: uuid
  • event_created_at: timestamp
  • event_description: String
  • event_id: String
  • event_priority: String
  • event_status: String
  • event_title: String
  • event_type: String
  • event_url: String
  • id: uuid
  • integration_id: uuid
  • integration_type: String
  • raw: String
  • tenant_id: uuid
  • webhook_id: String

event_incoming_webhooks_stream_cursor_input

Streaming cursor of the table "event_incoming_webhooks"

Fields:

  • initial_value: event_incoming_webhooks_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_incoming_webhooks_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • event_created_at: timestamp
  • event_description: String
  • event_id: String
  • event_priority: String
  • event_status: String
  • event_title: String
  • event_type: String
  • event_url: String
  • id: uuid
  • integration_id: uuid
  • integration_type: String
  • raw: String
  • tenant_id: uuid
  • webhook_id: String

event_incoming_webhooks_update_column

update columns of table "event_incoming_webhooks"

Values:

  • account_id - column name
  • event_created_at - column name
  • event_description - column name
  • event_id - column name
  • event_priority - column name
  • event_status - column name
  • event_title - column name
  • event_type - column name
  • event_url - column name
  • id - column name
  • integration_id - column name
  • integration_type - column name
  • raw - column name
  • tenant_id - column name
  • webhook_id - column name

event_log_analysis_aggregate_fields

aggregate fields of "event_log_analysis"

Fields:

  • count: Int!
  • max: event_log_analysis_max_fields
  • min: event_log_analysis_min_fields

event_log_analysis_bool_exp

Boolean expression to filter rows from the table "event_log_analysis". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_log_analysis_bool_exp!]
  • _not: event_log_analysis_bool_exp
  • _or: [event_log_analysis_bool_exp!]
  • analysis: String_comparison_exp
  • analysis_type: String_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • event_aggregation_key: String_comparison_exp
  • event_fingerprint: String_comparison_exp
  • event_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • recorded_at: timestamp_comparison_exp
  • status: event_log_analysis_status_enum_comparison_exp
  • status_reason: String_comparison_exp
  • summary: String_comparison_exp
  • updated_at: timestamp_comparison_exp

event_log_analysis_constraint

unique or primary key constraints on table "event_log_analysis"

Values:

  • event_log_analysis_event_fingerprint_cloud_account_id_event_agg - unique or primary key constraint on columns "analysis_type", "event_aggregation_key", "cloud_account_id", "event_fingerprint"
  • event_log_analysis_event_id_analysis_type_key - unique or primary key constraint on columns "analysis_type", "event_id"
  • event_log_analysis_pkey - unique or primary key constraint on columns "id"

event_log_analysis_insert_input

input type for inserting data into table "event_log_analysis"

Fields:

  • analysis: String
  • analysis_type: String
  • cloud_account_id: uuid
  • event_aggregation_key: String
  • event_fingerprint: String
  • event_id: uuid
  • id: uuid
  • recorded_at: timestamp
  • status: event_log_analysis_status_enum
  • status_reason: String
  • summary: String
  • updated_at: timestamp

event_log_analysis_max_fields

aggregate max on columns

Fields:

  • analysis: String
  • analysis_type: String
  • cloud_account_id: uuid
  • event_aggregation_key: String
  • event_fingerprint: String
  • event_id: uuid
  • id: uuid
  • recorded_at: timestamp
  • status_reason: String
  • summary: String
  • updated_at: timestamp

event_log_analysis_min_fields

aggregate min on columns

Fields:

  • analysis: String
  • analysis_type: String
  • cloud_account_id: uuid
  • event_aggregation_key: String
  • event_fingerprint: String
  • event_id: uuid
  • id: uuid
  • recorded_at: timestamp
  • status_reason: String
  • summary: String
  • updated_at: timestamp

event_log_analysis_mutation_response

response of any mutation on the table "event_log_analysis"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_log_analysis!]! - data from the rows affected by the mutation

event_log_analysis_on_conflict

on_conflict condition type for table "event_log_analysis"

Fields:

  • constraint: event_log_analysis_constraint!
  • update_columns: [event_log_analysis_update_column!]!
  • where: event_log_analysis_bool_exp

event_log_analysis_order_by

Ordering options when selecting data from "event_log_analysis".

Fields:

  • analysis: order_by
  • analysis_type: order_by
  • cloud_account_id: order_by
  • event_aggregation_key: order_by
  • event_fingerprint: order_by
  • event_id: order_by
  • id: order_by
  • recorded_at: order_by
  • status: order_by
  • status_reason: order_by
  • summary: order_by
  • updated_at: order_by

event_log_analysis_pk_columns_input

primary key columns input for table: event_log_analysis

Fields:

  • id: uuid!

event_log_analysis_select_column

select columns of table "event_log_analysis"

Values:

  • analysis - column name
  • analysis_type - column name
  • cloud_account_id - column name
  • event_aggregation_key - column name
  • event_fingerprint - column name
  • event_id - column name
  • id - column name
  • recorded_at - column name
  • status - column name
  • status_reason - column name
  • summary - column name
  • updated_at - column name

event_log_analysis_set_input

input type for updating data in table "event_log_analysis"

Fields:

  • analysis: String
  • analysis_type: String
  • cloud_account_id: uuid
  • event_aggregation_key: String
  • event_fingerprint: String
  • event_id: uuid
  • id: uuid
  • recorded_at: timestamp
  • status: event_log_analysis_status_enum
  • status_reason: String
  • summary: String
  • updated_at: timestamp

event_log_analysis_status_aggregate_fields

aggregate fields of "event_log_analysis_status"

Fields:

  • count: Int!
  • max: event_log_analysis_status_max_fields
  • min: event_log_analysis_status_min_fields

event_log_analysis_status_bool_exp

Boolean expression to filter rows from the table "event_log_analysis_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_log_analysis_status_bool_exp!]
  • _not: event_log_analysis_status_bool_exp
  • _or: [event_log_analysis_status_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

event_log_analysis_status_constraint

unique or primary key constraints on table "event_log_analysis_status"

Values:

  • event_log_analysis_status_pkey - unique or primary key constraint on columns "value"

event_log_analysis_status_insert_input

input type for inserting data into table "event_log_analysis_status"

Fields:

  • description: String
  • value: String

event_log_analysis_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

event_log_analysis_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

event_log_analysis_status_mutation_response

response of any mutation on the table "event_log_analysis_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_log_analysis_status!]! - data from the rows affected by the mutation

event_log_analysis_status_on_conflict

on_conflict condition type for table "event_log_analysis_status"

Fields:

  • constraint: event_log_analysis_status_constraint!
  • update_columns: [event_log_analysis_status_update_column!]!
  • where: event_log_analysis_status_bool_exp

event_log_analysis_status_order_by

Ordering options when selecting data from "event_log_analysis_status".

Fields:

  • description: order_by
  • value: order_by

event_log_analysis_status_pk_columns_input

primary key columns input for table: event_log_analysis_status

Fields:

  • value: String!

event_log_analysis_status_select_column

select columns of table "event_log_analysis_status"

Values:

  • description - column name
  • value - column name

event_log_analysis_status_set_input

input type for updating data in table "event_log_analysis_status"

Fields:

  • description: String
  • value: String

event_log_analysis_status_stream_cursor_input

Streaming cursor of the table "event_log_analysis_status"

Fields:

  • initial_value: event_log_analysis_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_log_analysis_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

event_log_analysis_status_update_column

update columns of table "event_log_analysis_status"

Values:

  • description - column name
  • value - column name

event_log_analysis_stream_cursor_input

Streaming cursor of the table "event_log_analysis"

Fields:

  • initial_value: event_log_analysis_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_log_analysis_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • analysis: String
  • analysis_type: String
  • cloud_account_id: uuid
  • event_aggregation_key: String
  • event_fingerprint: String
  • event_id: uuid
  • id: uuid
  • recorded_at: timestamp
  • status: event_log_analysis_status_enum
  • status_reason: String
  • summary: String
  • updated_at: timestamp

event_log_analysis_update_column

update columns of table "event_log_analysis"

Values:

  • analysis - column name
  • analysis_type - column name
  • cloud_account_id - column name
  • event_aggregation_key - column name
  • event_fingerprint - column name
  • event_id - column name
  • id - column name
  • recorded_at - column name
  • status - column name
  • status_reason - column name
  • summary - column name
  • updated_at - column name

event_resolution_aggregate_fields

aggregate fields of "event_resolution"

Fields:

  • count: Int!
  • max: event_resolution_max_fields
  • min: event_resolution_min_fields

event_resolution_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • data: jsonb

event_resolution_bool_exp

Boolean expression to filter rows from the table "event_resolution". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_resolution_bool_exp!]
  • _not: event_resolution_bool_exp
  • _or: [event_resolution_bool_exp!]
  • created_at: timestamp_comparison_exp
  • data: jsonb_comparison_exp
  • event_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • resolver_id: String_comparison_exp
  • resolver_type: String_comparison_exp
  • status: String_comparison_exp
  • status_message: String_comparison_exp
  • type: String_comparison_exp
  • type_reference_id: String_comparison_exp
  • updated_at: timestamp_comparison_exp

event_resolution_constraint

unique or primary key constraints on table "event_resolution"

Values:

  • event_resolution_pkey - unique or primary key constraint on columns "id"

event_resolution_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • data: [String!]

event_resolution_delete_elem_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

Fields:

  • data: Int

event_resolution_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • data: String

event_resolution_insert_input

input type for inserting data into table "event_resolution"

Fields:

  • created_at: timestamp
  • data: jsonb
  • event_id: uuid
  • id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

event_resolution_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • event_id: uuid
  • id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

event_resolution_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • event_id: uuid
  • id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

event_resolution_mutation_response

response of any mutation on the table "event_resolution"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_resolution!]! - data from the rows affected by the mutation

event_resolution_on_conflict

on_conflict condition type for table "event_resolution"

Fields:

  • constraint: event_resolution_constraint!
  • update_columns: [event_resolution_update_column!]!
  • where: event_resolution_bool_exp

event_resolution_order_by

Ordering options when selecting data from "event_resolution".

Fields:

  • created_at: order_by
  • data: order_by
  • event_id: order_by
  • id: order_by
  • resolver_id: order_by
  • resolver_type: order_by
  • status: order_by
  • status_message: order_by
  • type: order_by
  • type_reference_id: order_by
  • updated_at: order_by

event_resolution_pk_columns_input

primary key columns input for table: event_resolution

Fields:

  • id: uuid!

event_resolution_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • data: jsonb

event_resolution_select_column

select columns of table "event_resolution"

Values:

  • created_at - column name
  • data - column name
  • event_id - column name
  • id - column name
  • resolver_id - column name
  • resolver_type - column name
  • status - column name
  • status_message - column name
  • type - column name
  • type_reference_id - column name
  • updated_at - column name

event_resolution_set_input

input type for updating data in table "event_resolution"

Fields:

  • created_at: timestamp
  • data: jsonb
  • event_id: uuid
  • id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

event_resolution_stream_cursor_input

Streaming cursor of the table "event_resolution"

Fields:

  • initial_value: event_resolution_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_resolution_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • data: jsonb
  • event_id: uuid
  • id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

event_resolution_update_column

update columns of table "event_resolution"

Values:

  • created_at - column name
  • data - column name
  • event_id - column name
  • id - column name
  • resolver_id - column name
  • resolver_type - column name
  • status - column name
  • status_message - column name
  • type - column name
  • type_reference_id - column name
  • updated_at - column name

event_rule_severity_aggregate_fields

aggregate fields of "event_rule_severity"

Fields:

  • count: Int!
  • max: event_rule_severity_max_fields
  • min: event_rule_severity_min_fields

event_rule_severity_bool_exp

Boolean expression to filter rows from the table "event_rule_severity". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_rule_severity_bool_exp!]
  • _not: event_rule_severity_bool_exp
  • _or: [event_rule_severity_bool_exp!]
  • value: String_comparison_exp

event_rule_severity_constraint

unique or primary key constraints on table "event_rule_severity"

Values:

  • event_rule_severity_pkey - unique or primary key constraint on columns "value"

event_rule_severity_insert_input

input type for inserting data into table "event_rule_severity"

Fields:

  • value: String

event_rule_severity_max_fields

aggregate max on columns

Fields:

  • value: String

event_rule_severity_min_fields

aggregate min on columns

Fields:

  • value: String

event_rule_severity_mutation_response

response of any mutation on the table "event_rule_severity"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_rule_severity!]! - data from the rows affected by the mutation

event_rule_severity_on_conflict

on_conflict condition type for table "event_rule_severity"

Fields:

  • constraint: event_rule_severity_constraint!
  • update_columns: [event_rule_severity_update_column!]!
  • where: event_rule_severity_bool_exp

event_rule_severity_order_by

Ordering options when selecting data from "event_rule_severity".

Fields:

  • value: order_by

event_rule_severity_pk_columns_input

primary key columns input for table: event_rule_severity

Fields:

  • value: String!

event_rule_severity_select_column

select columns of table "event_rule_severity"

Values:

  • value - column name

event_rule_severity_set_input

input type for updating data in table "event_rule_severity"

Fields:

  • value: String

event_rule_severity_stream_cursor_input

Streaming cursor of the table "event_rule_severity"

Fields:

  • initial_value: event_rule_severity_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_rule_severity_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

event_rule_severity_update_column

update columns of table "event_rule_severity"

Values:

  • value - column name

event_rule_source_aggregate_fields

aggregate fields of "event_rule_source"

Fields:

  • count: Int!
  • max: event_rule_source_max_fields
  • min: event_rule_source_min_fields

event_rule_source_bool_exp

Boolean expression to filter rows from the table "event_rule_source". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_rule_source_bool_exp!]
  • _not: event_rule_source_bool_exp
  • _or: [event_rule_source_bool_exp!]
  • value: String_comparison_exp

event_rule_source_constraint

unique or primary key constraints on table "event_rule_source"

Values:

  • event_rule_source_pkey - unique or primary key constraint on columns "value"

event_rule_source_insert_input

input type for inserting data into table "event_rule_source"

Fields:

  • value: String

event_rule_source_max_fields

aggregate max on columns

Fields:

  • value: String

event_rule_source_min_fields

aggregate min on columns

Fields:

  • value: String

event_rule_source_mutation_response

response of any mutation on the table "event_rule_source"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_rule_source!]! - data from the rows affected by the mutation

event_rule_source_on_conflict

on_conflict condition type for table "event_rule_source"

Fields:

  • constraint: event_rule_source_constraint!
  • update_columns: [event_rule_source_update_column!]!
  • where: event_rule_source_bool_exp

event_rule_source_order_by

Ordering options when selecting data from "event_rule_source".

Fields:

  • value: order_by

event_rule_source_pk_columns_input

primary key columns input for table: event_rule_source

Fields:

  • value: String!

event_rule_source_select_column

select columns of table "event_rule_source"

Values:

  • value - column name

event_rule_source_set_input

input type for updating data in table "event_rule_source"

Fields:

  • value: String

event_rule_source_stream_cursor_input

Streaming cursor of the table "event_rule_source"

Fields:

  • initial_value: event_rule_source_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_rule_source_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

event_rule_source_update_column

update columns of table "event_rule_source"

Values:

  • value - column name

event_rules_aggregate_fields

aggregate fields of "event_rules"

Fields:

  • count: Int!
  • max: event_rules_max_fields
  • min: event_rules_min_fields

event_rules_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • annotations: jsonb
  • labels: jsonb

event_rules_bool_exp

Boolean expression to filter rows from the table "event_rules". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_rules_bool_exp!]
  • _not: event_rules_bool_exp
  • _or: [event_rules_bool_exp!]
  • account_id: uuid_comparison_exp
  • alert: String_comparison_exp
  • annotations: jsonb_comparison_exp
  • category: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • duration: String_comparison_exp
  • enabled: Boolean_comparison_exp
  • expr: String_comparison_exp
  • group: String_comparison_exp
  • id: uuid_comparison_exp
  • is_editable: Boolean_comparison_exp
  • labels: jsonb_comparison_exp
  • name: String_comparison_exp
  • namespace: String_comparison_exp
  • severity: event_rule_severity_enum_comparison_exp
  • source: event_rule_source_enum_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

event_rules_constraint

unique or primary key constraints on table "event_rules"

Values:

  • event_rules_account_id_tenant_id_alert_key - unique or primary key constraint on columns "account_id", "alert", "tenant_id"
  • event_rules_pkey - unique or primary key constraint on columns "id"

event_rules_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • annotations: [String!]
  • labels: [String!]

event_rules_delete_elem_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

Fields:

  • annotations: Int
  • labels: Int

event_rules_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • annotations: String
  • labels: String

event_rules_insert_input

input type for inserting data into table "event_rules"

Fields:

  • account_id: uuid
  • alert: String
  • annotations: jsonb
  • category: String
  • created_at: timestamp
  • created_by: uuid
  • duration: String
  • enabled: Boolean
  • expr: String
  • group: String
  • id: uuid
  • is_editable: Boolean
  • labels: jsonb
  • name: String
  • namespace: String
  • severity: event_rule_severity_enum
  • source: event_rule_source_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_rules_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • alert: String
  • category: String
  • created_at: timestamp
  • created_by: uuid
  • duration: String
  • expr: String
  • group: String
  • id: uuid
  • name: String
  • namespace: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_rules_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • alert: String
  • category: String
  • created_at: timestamp
  • created_by: uuid
  • duration: String
  • expr: String
  • group: String
  • id: uuid
  • name: String
  • namespace: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_rules_mutation_response

response of any mutation on the table "event_rules"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_rules!]! - data from the rows affected by the mutation

event_rules_on_conflict

on_conflict condition type for table "event_rules"

Fields:

  • constraint: event_rules_constraint!
  • update_columns: [event_rules_update_column!]!
  • where: event_rules_bool_exp

event_rules_order_by

Ordering options when selecting data from "event_rules".

Fields:

  • account_id: order_by
  • alert: order_by
  • annotations: order_by
  • category: order_by
  • created_at: order_by
  • created_by: order_by
  • duration: order_by
  • enabled: order_by
  • expr: order_by
  • group: order_by
  • id: order_by
  • is_editable: order_by
  • labels: order_by
  • name: order_by
  • namespace: order_by
  • severity: order_by
  • source: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

event_rules_pk_columns_input

primary key columns input for table: event_rules

Fields:

  • id: uuid!

event_rules_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • annotations: jsonb
  • labels: jsonb

event_rules_select_column

select columns of table "event_rules"

Values:

  • account_id - column name
  • alert - column name
  • annotations - column name
  • category - column name
  • created_at - column name
  • created_by - column name
  • duration - column name
  • enabled - column name
  • expr - column name
  • group - column name
  • id - column name
  • is_editable - column name
  • labels - column name
  • name - column name
  • namespace - column name
  • severity - column name
  • source - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

event_rules_set_input

input type for updating data in table "event_rules"

Fields:

  • account_id: uuid
  • alert: String
  • annotations: jsonb
  • category: String
  • created_at: timestamp
  • created_by: uuid
  • duration: String
  • enabled: Boolean
  • expr: String
  • group: String
  • id: uuid
  • is_editable: Boolean
  • labels: jsonb
  • name: String
  • namespace: String
  • severity: event_rule_severity_enum
  • source: event_rule_source_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_rules_stream_cursor_input

Streaming cursor of the table "event_rules"

Fields:

  • initial_value: event_rules_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_rules_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • alert: String
  • annotations: jsonb
  • category: String
  • created_at: timestamp
  • created_by: uuid
  • duration: String
  • enabled: Boolean
  • expr: String
  • group: String
  • id: uuid
  • is_editable: Boolean
  • labels: jsonb
  • name: String
  • namespace: String
  • severity: event_rule_severity_enum
  • source: event_rule_source_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_rules_update_column

update columns of table "event_rules"

Values:

  • account_id - column name
  • alert - column name
  • annotations - column name
  • category - column name
  • created_at - column name
  • created_by - column name
  • duration - column name
  • enabled - column name
  • expr - column name
  • group - column name
  • id - column name
  • is_editable - column name
  • labels - column name
  • name - column name
  • namespace - column name
  • severity - column name
  • source - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

event_severity_aggregate_fields

aggregate fields of "event_severity"

Fields:

  • count: Int!
  • max: event_severity_max_fields
  • min: event_severity_min_fields

event_severity_bool_exp

Boolean expression to filter rows from the table "event_severity". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_severity_bool_exp!]
  • _not: event_severity_bool_exp
  • _or: [event_severity_bool_exp!]
  • value: String_comparison_exp

event_severity_constraint

unique or primary key constraints on table "event_severity"

Values:

  • event_severity_pkey - unique or primary key constraint on columns "value"

event_severity_insert_input

input type for inserting data into table "event_severity"

Fields:

  • value: String

event_severity_max_fields

aggregate max on columns

Fields:

  • value: String

event_severity_min_fields

aggregate min on columns

Fields:

  • value: String

event_severity_mutation_response

response of any mutation on the table "event_severity"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_severity!]! - data from the rows affected by the mutation

event_severity_obj_rel_insert_input

input type for inserting object relation for remote table "event_severity"

Fields:

  • data: event_severity_insert_input!
  • on_conflict: event_severity_on_conflict - upsert condition

event_severity_on_conflict

on_conflict condition type for table "event_severity"

Fields:

  • constraint: event_severity_constraint!
  • update_columns: [event_severity_update_column!]!
  • where: event_severity_bool_exp

event_severity_order_by

Ordering options when selecting data from "event_severity".

Fields:

  • value: order_by

event_severity_pk_columns_input

primary key columns input for table: event_severity

Fields:

  • value: String!

event_severity_select_column

select columns of table "event_severity"

Values:

  • value - column name

event_severity_set_input

input type for updating data in table "event_severity"

Fields:

  • value: String

event_severity_stream_cursor_input

Streaming cursor of the table "event_severity"

Fields:

  • initial_value: event_severity_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_severity_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

event_severity_update_column

update columns of table "event_severity"

Values:

  • value - column name

event_source_aggregate_fields

aggregate fields of "event_source"

Fields:

  • count: Int!
  • max: event_source_max_fields
  • min: event_source_min_fields

event_source_bool_exp

Boolean expression to filter rows from the table "event_source". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_source_bool_exp!]
  • _not: event_source_bool_exp
  • _or: [event_source_bool_exp!]
  • value: String_comparison_exp

event_source_constraint

unique or primary key constraints on table "event_source"

Values:

  • event_source_pkey - unique or primary key constraint on columns "value"

event_source_insert_input

input type for inserting data into table "event_source"

Fields:

  • value: String

event_source_max_fields

aggregate max on columns

Fields:

  • value: String

event_source_min_fields

aggregate min on columns

Fields:

  • value: String

event_source_mutation_response

response of any mutation on the table "event_source"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_source!]! - data from the rows affected by the mutation

event_source_obj_rel_insert_input

input type for inserting object relation for remote table "event_source"

Fields:

  • data: event_source_insert_input!
  • on_conflict: event_source_on_conflict - upsert condition

event_source_on_conflict

on_conflict condition type for table "event_source"

Fields:

  • constraint: event_source_constraint!
  • update_columns: [event_source_update_column!]!
  • where: event_source_bool_exp

event_source_order_by

Ordering options when selecting data from "event_source".

Fields:

  • value: order_by

event_source_pk_columns_input

primary key columns input for table: event_source

Fields:

  • value: String!

event_source_select_column

select columns of table "event_source"

Values:

  • value - column name

event_source_set_input

input type for updating data in table "event_source"

Fields:

  • value: String

event_source_stream_cursor_input

Streaming cursor of the table "event_source"

Fields:

  • initial_value: event_source_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_source_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

event_source_update_column

update columns of table "event_source"

Values:

  • value - column name

event_status_aggregate_fields

aggregate fields of "event_status"

Fields:

  • count: Int!
  • max: event_status_max_fields
  • min: event_status_min_fields

event_status_bool_exp

Boolean expression to filter rows from the table "event_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_status_bool_exp!]
  • _not: event_status_bool_exp
  • _or: [event_status_bool_exp!]
  • value: String_comparison_exp

event_status_constraint

unique or primary key constraints on table "event_status"

Values:

  • event_status_pkey - unique or primary key constraint on columns "value"

event_status_insert_input

input type for inserting data into table "event_status"

Fields:

  • value: String

event_status_max_fields

aggregate max on columns

Fields:

  • value: String

event_status_min_fields

aggregate min on columns

Fields:

  • value: String

event_status_mutation_response

response of any mutation on the table "event_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_status!]! - data from the rows affected by the mutation

event_status_on_conflict

on_conflict condition type for table "event_status"

Fields:

  • constraint: event_status_constraint!
  • update_columns: [event_status_update_column!]!
  • where: event_status_bool_exp

event_status_order_by

Ordering options when selecting data from "event_status".

Fields:

  • value: order_by

event_status_pk_columns_input

primary key columns input for table: event_status

Fields:

  • value: String!

event_status_select_column

select columns of table "event_status"

Values:

  • value - column name

event_status_set_input

input type for updating data in table "event_status"

Fields:

  • value: String

event_status_stream_cursor_input

Streaming cursor of the table "event_status"

Fields:

  • initial_value: event_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

event_status_update_column

update columns of table "event_status"

Values:

  • value - column name

event_triage_rules_aggregate_fields

aggregate fields of "event_triage_rules"

Fields:

  • avg: event_triage_rules_avg_fields
  • count: Int!
  • max: event_triage_rules_max_fields
  • min: event_triage_rules_min_fields
  • stddev: event_triage_rules_stddev_fields
  • stddev_pop: event_triage_rules_stddev_pop_fields
  • stddev_samp: event_triage_rules_stddev_samp_fields
  • sum: event_triage_rules_sum_fields
  • var_pop: event_triage_rules_var_pop_fields
  • var_samp: event_triage_rules_var_samp_fields
  • variance: event_triage_rules_variance_fields

event_triage_rules_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • action_value: jsonb
  • match_labels: jsonb

event_triage_rules_avg_fields

aggregate avg on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

event_triage_rules_bool_exp

Boolean expression to filter rows from the table "event_triage_rules". All fields are combined with a logical 'AND'.

Fields:

  • _and: [event_triage_rules_bool_exp!]
  • _not: event_triage_rules_bool_exp
  • _or: [event_triage_rules_bool_exp!]
  • account_id: uuid_comparison_exp
  • action: String_comparison_exp
  • action_value: jsonb_comparison_exp
  • can_override: Boolean_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • effective_from: timestamp_comparison_exp
  • effective_until: timestamp_comparison_exp
  • enabled: Boolean_comparison_exp
  • id: uuid_comparison_exp
  • is_editable: Boolean_comparison_exp
  • last_matched_at: timestamp_comparison_exp
  • match_alertname: String_comparison_exp
  • match_count: Int_comparison_exp
  • match_finding_type: String_comparison_exp
  • match_fingerprint: String_comparison_exp
  • match_labels: jsonb_comparison_exp
  • match_namespace: String_comparison_exp
  • match_occurrence_greater_than: Int_comparison_exp
  • match_priority: String_comparison_exp
  • match_service: String_comparison_exp
  • match_source: String_comparison_exp
  • name: String_comparison_exp
  • override_rule_id: uuid_comparison_exp
  • priority: Int_comparison_exp
  • reason: String_comparison_exp
  • rule_type: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

event_triage_rules_constraint

unique or primary key constraints on table "event_triage_rules"

Values:

  • event_triage_rules_pkey - unique or primary key constraint on columns "id"

event_triage_rules_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • action_value: [String!]
  • match_labels: [String!]

event_triage_rules_delete_elem_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

Fields:

  • action_value: Int
  • match_labels: Int

event_triage_rules_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • action_value: String
  • match_labels: String

event_triage_rules_inc_input

input type for incrementing numeric columns in table "event_triage_rules"

Fields:

  • match_count: Int
  • match_occurrence_greater_than: Int
  • priority: Int

event_triage_rules_insert_input

input type for inserting data into table "event_triage_rules"

Fields:

  • account_id: uuid
  • action: String
  • action_value: jsonb
  • can_override: Boolean
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • enabled: Boolean
  • id: uuid
  • is_editable: Boolean
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: jsonb
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: uuid
  • priority: Int
  • reason: String
  • rule_type: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_triage_rules_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • action: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • id: uuid
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int
  • match_finding_type: String
  • match_fingerprint: String
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: uuid
  • priority: Int
  • reason: String
  • rule_type: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_triage_rules_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • action: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • id: uuid
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int
  • match_finding_type: String
  • match_fingerprint: String
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: uuid
  • priority: Int
  • reason: String
  • rule_type: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_triage_rules_mutation_response

response of any mutation on the table "event_triage_rules"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [event_triage_rules!]! - data from the rows affected by the mutation

event_triage_rules_on_conflict

on_conflict condition type for table "event_triage_rules"

Fields:

  • constraint: event_triage_rules_constraint!
  • update_columns: [event_triage_rules_update_column!]!
  • where: event_triage_rules_bool_exp

event_triage_rules_order_by

Ordering options when selecting data from "event_triage_rules".

Fields:

  • account_id: order_by
  • action: order_by
  • action_value: order_by
  • can_override: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • effective_from: order_by
  • effective_until: order_by
  • enabled: order_by
  • id: order_by
  • is_editable: order_by
  • last_matched_at: order_by
  • match_alertname: order_by
  • match_count: order_by
  • match_finding_type: order_by
  • match_fingerprint: order_by
  • match_labels: order_by
  • match_namespace: order_by
  • match_occurrence_greater_than: order_by
  • match_priority: order_by
  • match_service: order_by
  • match_source: order_by
  • name: order_by
  • override_rule_id: order_by
  • priority: order_by
  • reason: order_by
  • rule_type: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

event_triage_rules_pk_columns_input

primary key columns input for table: event_triage_rules

Fields:

  • id: uuid!

event_triage_rules_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • action_value: jsonb
  • match_labels: jsonb

event_triage_rules_select_column

select columns of table "event_triage_rules"

Values:

  • account_id - column name
  • action - column name
  • action_value - column name
  • can_override - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • effective_from - column name
  • effective_until - column name
  • enabled - column name
  • id - column name
  • is_editable - column name
  • last_matched_at - column name
  • match_alertname - column name
  • match_count - column name
  • match_finding_type - column name
  • match_fingerprint - column name
  • match_labels - column name
  • match_namespace - column name
  • match_occurrence_greater_than - column name
  • match_priority - column name
  • match_service - column name
  • match_source - column name
  • name - column name
  • override_rule_id - column name
  • priority - column name
  • reason - column name
  • rule_type - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

event_triage_rules_set_input

input type for updating data in table "event_triage_rules"

Fields:

  • account_id: uuid
  • action: String
  • action_value: jsonb
  • can_override: Boolean
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • enabled: Boolean
  • id: uuid
  • is_editable: Boolean
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: jsonb
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: uuid
  • priority: Int
  • reason: String
  • rule_type: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_triage_rules_stddev_fields

aggregate stddev on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

event_triage_rules_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

event_triage_rules_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

event_triage_rules_stream_cursor_input

Streaming cursor of the table "event_triage_rules"

Fields:

  • initial_value: event_triage_rules_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

event_triage_rules_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • action: String
  • action_value: jsonb
  • can_override: Boolean
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • effective_from: timestamp
  • effective_until: timestamp
  • enabled: Boolean
  • id: uuid
  • is_editable: Boolean
  • last_matched_at: timestamp
  • match_alertname: String
  • match_count: Int
  • match_finding_type: String
  • match_fingerprint: String
  • match_labels: jsonb
  • match_namespace: String
  • match_occurrence_greater_than: Int
  • match_priority: String
  • match_service: String
  • match_source: String
  • name: String
  • override_rule_id: uuid
  • priority: Int
  • reason: String
  • rule_type: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

event_triage_rules_sum_fields

aggregate sum on columns

Fields:

  • match_count: Int
  • match_occurrence_greater_than: Int
  • priority: Int

event_triage_rules_update_column

update columns of table "event_triage_rules"

Values:

  • account_id - column name
  • action - column name
  • action_value - column name
  • can_override - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • effective_from - column name
  • effective_until - column name
  • enabled - column name
  • id - column name
  • is_editable - column name
  • last_matched_at - column name
  • match_alertname - column name
  • match_count - column name
  • match_finding_type - column name
  • match_fingerprint - column name
  • match_labels - column name
  • match_namespace - column name
  • match_occurrence_greater_than - column name
  • match_priority - column name
  • match_service - column name
  • match_source - column name
  • name - column name
  • override_rule_id - column name
  • priority - column name
  • reason - column name
  • rule_type - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

event_triage_rules_var_pop_fields

aggregate var_pop on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

event_triage_rules_var_samp_fields

aggregate var_samp on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

event_triage_rules_variance_fields

aggregate variance on columns

Fields:

  • match_count: Float
  • match_occurrence_greater_than: Float
  • priority: Float

events_aggregate_bool_exp

Fields:

  • count: events_aggregate_bool_exp_count

events_aggregate_bool_exp_count

Fields:

  • arguments: [events_select_column!]
  • distinct: Boolean
  • filter: events_bool_exp
  • predicate: Int_comparison_exp!

events_aggregate_fields

aggregate fields of "events"

Fields:

  • avg: events_avg_fields
  • count: Int!
  • max: events_max_fields
  • min: events_min_fields
  • stddev: events_stddev_fields
  • stddev_pop: events_stddev_pop_fields
  • stddev_samp: events_stddev_samp_fields
  • sum: events_sum_fields
  • var_pop: events_var_pop_fields
  • var_samp: events_var_samp_fields
  • variance: events_variance_fields

events_aggregate_order_by

order by aggregate values of table "events"

Fields:

  • avg: events_avg_order_by
  • count: order_by
  • max: events_max_order_by
  • min: events_min_order_by
  • stddev: events_stddev_order_by
  • stddev_pop: events_stddev_pop_order_by
  • stddev_samp: events_stddev_samp_order_by
  • sum: events_sum_order_by
  • var_pop: events_var_pop_order_by
  • var_samp: events_var_samp_order_by
  • variance: events_variance_order_by

events_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • evidences: jsonb
  • labels: jsonb
  • score_factors: jsonb

events_arr_rel_insert_input

input type for inserting array relation for remote table "events"

Fields:

  • data: [events_insert_input!]!
  • on_conflict: events_on_conflict - upsert condition

events_avg_fields

aggregate avg on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_avg_order_by

order by avg() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_bool_exp

Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'.

Fields:

  • _and: [events_bool_exp!]
  • _not: events_bool_exp
  • _or: [events_bool_exp!]
  • aggregation_key: String_comparison_exp
  • category: String_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • cloud_account_id: uuid_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • cluster: String_comparison_exp
  • computed_priority: String_comparison_exp
  • computed_score: Int_comparison_exp
  • created_at: timestamp_comparison_exp
  • description: String_comparison_exp
  • ends_at: timestamp_comparison_exp
  • event_severity: event_severity_bool_exp
  • event_source: event_source_bool_exp
  • evidences: jsonb_comparison_exp
  • failure: String_comparison_exp
  • finding_id: String_comparison_exp
  • finding_type: String_comparison_exp
  • fingerprint: String_comparison_exp
  • id: uuid_comparison_exp
  • labels: jsonb_comparison_exp
  • nb_status: String_comparison_exp
  • nb_status_changed_at: timestamp_comparison_exp
  • nb_status_changed_by: uuid_comparison_exp
  • principal: String_comparison_exp
  • priority: event_severity_enum_comparison_exp
  • score_confidence: numeric_comparison_exp
  • score_factors: jsonb_comparison_exp
  • service_key: String_comparison_exp
  • snoozed_until: timestamp_comparison_exp
  • source: event_source_enum_comparison_exp
  • starts_at: timestamp_comparison_exp
  • status: event_status_enum_comparison_exp
  • subject_name: String_comparison_exp
  • subject_namespace: String_comparison_exp
  • subject_node: String_comparison_exp
  • subject_owner: String_comparison_exp
  • subject_owner_kind: String_comparison_exp
  • subject_type: String_comparison_exp
  • tenant: uuid_comparison_exp
  • title: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • urgency: event_severity_enum_comparison_exp

events_constraint

unique or primary key constraints on table "events"

Values:

  • events_cloudaccount_findingid - unique or primary key constraint on columns "tenant", "cloud_account_id", "finding_id"
  • events_pkey - unique or primary key constraint on columns "id"

events_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • evidences: [String!]
  • labels: [String!]
  • score_factors: [String!]

events_delete_elem_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

Fields:

  • evidences: Int
  • labels: Int
  • score_factors: Int

events_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • evidences: String
  • labels: String
  • score_factors: String

events_inc_input

input type for incrementing numeric columns in table "events"

Fields:

  • computed_score: Int
  • score_confidence: numeric

events_insert_input

input type for inserting data into table "events"

Fields:

  • aggregation_key: String
  • category: String
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • created_at: timestamp
  • description: String
  • ends_at: timestamp
  • event_severity: event_severity_obj_rel_insert_input
  • event_source: event_source_obj_rel_insert_input
  • evidences: jsonb
  • failure: String
  • finding_id: String
  • finding_type: String
  • fingerprint: String
  • id: uuid
  • labels: jsonb
  • nb_status: String
  • nb_status_changed_at: timestamp
  • nb_status_changed_by: uuid
  • principal: String
  • priority: event_severity_enum
  • score_confidence: numeric
  • score_factors: jsonb
  • service_key: String
  • snoozed_until: timestamp
  • source: event_source_enum
  • starts_at: timestamp
  • status: event_status_enum
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_owner_kind: String
  • subject_type: String
  • tenant: uuid
  • title: String
  • updated_at: timestamp
  • urgency: event_severity_enum

events_max_fields

aggregate max on columns

Fields:

  • aggregation_key: String
  • category: String
  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • created_at: timestamp
  • description: String
  • ends_at: timestamp
  • failure: String
  • finding_id: String
  • finding_type: String
  • fingerprint: String
  • id: uuid
  • nb_status: String
  • nb_status_changed_at: timestamp
  • nb_status_changed_by: uuid
  • principal: String
  • score_confidence: numeric
  • service_key: String
  • snoozed_until: timestamp
  • starts_at: timestamp
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_owner_kind: String
  • subject_type: String
  • tenant: uuid
  • title: String
  • updated_at: timestamp

events_max_order_by

order by max() on columns of table "events"

Fields:

  • aggregation_key: order_by
  • category: order_by
  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • cluster: order_by
  • computed_priority: order_by
  • computed_score: order_by
  • created_at: order_by
  • description: order_by
  • ends_at: order_by
  • failure: order_by
  • finding_id: order_by
  • finding_type: order_by
  • fingerprint: order_by
  • id: order_by
  • nb_status: order_by
  • nb_status_changed_at: order_by
  • nb_status_changed_by: order_by
  • principal: order_by
  • score_confidence: order_by
  • service_key: order_by
  • snoozed_until: order_by
  • starts_at: order_by
  • subject_name: order_by
  • subject_namespace: order_by
  • subject_node: order_by
  • subject_owner: order_by
  • subject_owner_kind: order_by
  • subject_type: order_by
  • tenant: order_by
  • title: order_by
  • updated_at: order_by

events_min_fields

aggregate min on columns

Fields:

  • aggregation_key: String
  • category: String
  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • created_at: timestamp
  • description: String
  • ends_at: timestamp
  • failure: String
  • finding_id: String
  • finding_type: String
  • fingerprint: String
  • id: uuid
  • nb_status: String
  • nb_status_changed_at: timestamp
  • nb_status_changed_by: uuid
  • principal: String
  • score_confidence: numeric
  • service_key: String
  • snoozed_until: timestamp
  • starts_at: timestamp
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_owner_kind: String
  • subject_type: String
  • tenant: uuid
  • title: String
  • updated_at: timestamp

events_min_order_by

order by min() on columns of table "events"

Fields:

  • aggregation_key: order_by
  • category: order_by
  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • cluster: order_by
  • computed_priority: order_by
  • computed_score: order_by
  • created_at: order_by
  • description: order_by
  • ends_at: order_by
  • failure: order_by
  • finding_id: order_by
  • finding_type: order_by
  • fingerprint: order_by
  • id: order_by
  • nb_status: order_by
  • nb_status_changed_at: order_by
  • nb_status_changed_by: order_by
  • principal: order_by
  • score_confidence: order_by
  • service_key: order_by
  • snoozed_until: order_by
  • starts_at: order_by
  • subject_name: order_by
  • subject_namespace: order_by
  • subject_node: order_by
  • subject_owner: order_by
  • subject_owner_kind: order_by
  • subject_type: order_by
  • tenant: order_by
  • title: order_by
  • updated_at: order_by

events_mutation_response

response of any mutation on the table "events"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [events!]! - data from the rows affected by the mutation

events_on_conflict

on_conflict condition type for table "events"

Fields:

  • constraint: events_constraint!
  • update_columns: [events_update_column!]!
  • where: events_bool_exp

events_order_by

Ordering options when selecting data from "events".

Fields:

  • aggregation_key: order_by
  • category: order_by
  • cloud_account: cloud_accounts_order_by
  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • cluster: order_by
  • computed_priority: order_by
  • computed_score: order_by
  • created_at: order_by
  • description: order_by
  • ends_at: order_by
  • event_severity: event_severity_order_by
  • event_source: event_source_order_by
  • evidences: order_by
  • failure: order_by
  • finding_id: order_by
  • finding_type: order_by
  • fingerprint: order_by
  • id: order_by
  • labels: order_by
  • nb_status: order_by
  • nb_status_changed_at: order_by
  • nb_status_changed_by: order_by
  • principal: order_by
  • priority: order_by
  • score_confidence: order_by
  • score_factors: order_by
  • service_key: order_by
  • snoozed_until: order_by
  • source: order_by
  • starts_at: order_by
  • status: order_by
  • subject_name: order_by
  • subject_namespace: order_by
  • subject_node: order_by
  • subject_owner: order_by
  • subject_owner_kind: order_by
  • subject_type: order_by
  • tenant: order_by
  • title: order_by
  • updated_at: order_by
  • urgency: order_by

events_pk_columns_input

primary key columns input for table: events

Fields:

  • id: uuid!

events_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • evidences: jsonb
  • labels: jsonb
  • score_factors: jsonb

events_select_column

select columns of table "events"

Values:

  • aggregation_key - column name
  • category - column name
  • cloud_account_id - column name
  • cloud_resource_id - column name
  • cluster - column name
  • computed_priority - column name
  • computed_score - column name
  • created_at - column name
  • description - column name
  • ends_at - column name
  • evidences - column name
  • failure - column name
  • finding_id - column name
  • finding_type - column name
  • fingerprint - column name
  • id - column name
  • labels - column name
  • nb_status - column name
  • nb_status_changed_at - column name
  • nb_status_changed_by - column name
  • principal - column name
  • priority - column name
  • score_confidence - column name
  • score_factors - column name
  • service_key - column name
  • snoozed_until - column name
  • source - column name
  • starts_at - column name
  • status - column name
  • subject_name - column name
  • subject_namespace - column name
  • subject_node - column name
  • subject_owner - column name
  • subject_owner_kind - column name
  • subject_type - column name
  • tenant - column name
  • title - column name
  • updated_at - column name
  • urgency - column name

events_set_input

input type for updating data in table "events"

Fields:

  • aggregation_key: String
  • category: String
  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • created_at: timestamp
  • description: String
  • ends_at: timestamp
  • evidences: jsonb
  • failure: String
  • finding_id: String
  • finding_type: String
  • fingerprint: String
  • id: uuid
  • labels: jsonb
  • nb_status: String
  • nb_status_changed_at: timestamp
  • nb_status_changed_by: uuid
  • principal: String
  • priority: event_severity_enum
  • score_confidence: numeric
  • score_factors: jsonb
  • service_key: String
  • snoozed_until: timestamp
  • source: event_source_enum
  • starts_at: timestamp
  • status: event_status_enum
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_owner_kind: String
  • subject_type: String
  • tenant: uuid
  • title: String
  • updated_at: timestamp
  • urgency: event_severity_enum

events_stddev_fields

aggregate stddev on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_stddev_order_by

order by stddev() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_stddev_pop_order_by

order by stddev_pop() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_stddev_samp_order_by

order by stddev_samp() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_stream_cursor_input

Streaming cursor of the table "events"

Fields:

  • initial_value: events_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

events_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • aggregation_key: String
  • category: String
  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cluster: String
  • computed_priority: String
  • computed_score: Int
  • created_at: timestamp
  • description: String
  • ends_at: timestamp
  • evidences: jsonb
  • failure: String
  • finding_id: String
  • finding_type: String
  • fingerprint: String
  • id: uuid
  • labels: jsonb
  • nb_status: String
  • nb_status_changed_at: timestamp
  • nb_status_changed_by: uuid
  • principal: String
  • priority: event_severity_enum
  • score_confidence: numeric
  • score_factors: jsonb
  • service_key: String
  • snoozed_until: timestamp
  • source: event_source_enum
  • starts_at: timestamp
  • status: event_status_enum
  • subject_name: String
  • subject_namespace: String
  • subject_node: String
  • subject_owner: String
  • subject_owner_kind: String
  • subject_type: String
  • tenant: uuid
  • title: String
  • updated_at: timestamp
  • urgency: event_severity_enum

events_sum_fields

aggregate sum on columns

Fields:

  • computed_score: Int
  • score_confidence: numeric

events_sum_order_by

order by sum() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_update_column

update columns of table "events"

Values:

  • aggregation_key - column name
  • category - column name
  • cloud_account_id - column name
  • cloud_resource_id - column name
  • cluster - column name
  • computed_priority - column name
  • computed_score - column name
  • created_at - column name
  • description - column name
  • ends_at - column name
  • evidences - column name
  • failure - column name
  • finding_id - column name
  • finding_type - column name
  • fingerprint - column name
  • id - column name
  • labels - column name
  • nb_status - column name
  • nb_status_changed_at - column name
  • nb_status_changed_by - column name
  • principal - column name
  • priority - column name
  • score_confidence - column name
  • score_factors - column name
  • service_key - column name
  • snoozed_until - column name
  • source - column name
  • starts_at - column name
  • status - column name
  • subject_name - column name
  • subject_namespace - column name
  • subject_node - column name
  • subject_owner - column name
  • subject_owner_kind - column name
  • subject_type - column name
  • tenant - column name
  • title - column name
  • updated_at - column name
  • urgency - column name

events_var_pop_fields

aggregate var_pop on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_var_pop_order_by

order by var_pop() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_var_samp_fields

aggregate var_samp on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_var_samp_order_by

order by var_samp() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

events_variance_fields

aggregate variance on columns

Fields:

  • computed_score: Float
  • score_confidence: Float

events_variance_order_by

order by variance() on columns of table "events"

Fields:

  • computed_score: order_by
  • score_confidence: order_by

insight_aggregate_fields

aggregate fields of "insight"

Fields:

  • count: Int!
  • max: insight_max_fields
  • min: insight_min_fields

insight_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • applications: jsonb
  • rule: jsonb

insight_bool_exp

Boolean expression to filter rows from the table "insight". All fields are combined with a logical 'AND'.

Fields:

  • _and: [insight_bool_exp!]
  • _not: insight_bool_exp
  • _or: [insight_bool_exp!]
  • account_id: uuid_comparison_exp
  • applications: jsonb_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • resource_id: uuid_comparison_exp
  • rule: jsonb_comparison_exp
  • severity: insight_severity_enum_comparison_exp
  • source: String_comparison_exp
  • status: String_comparison_exp
  • tenant: uuid_comparison_exp
  • title: String_comparison_exp
  • type: String_comparison_exp
  • unique_id: String_comparison_exp
  • updated_at: timestamp_comparison_exp

insight_constraint

unique or primary key constraints on table "insight"

Values:

  • insight_pkey - unique or primary key constraint on columns "id"
  • insight_tenant_account_id_unique_id_key - unique or primary key constraint on columns "account_id", "unique_id", "tenant"

insight_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • applications: [String!]
  • rule: [String!]

insight_delete_elem_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

Fields:

  • applications: Int
  • rule: Int

insight_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • applications: String
  • rule: String

insight_insert_input

input type for inserting data into table "insight"

Fields:

  • account_id: uuid
  • applications: jsonb
  • created_at: timestamp
  • id: uuid
  • resource_id: uuid
  • rule: jsonb
  • severity: insight_severity_enum
  • source: String
  • status: String
  • tenant: uuid
  • title: String
  • type: String
  • unique_id: String
  • updated_at: timestamp

insight_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • resource_id: uuid
  • source: String
  • status: String
  • tenant: uuid
  • title: String
  • type: String
  • unique_id: String
  • updated_at: timestamp

insight_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • resource_id: uuid
  • source: String
  • status: String
  • tenant: uuid
  • title: String
  • type: String
  • unique_id: String
  • updated_at: timestamp

insight_mutation_response

response of any mutation on the table "insight"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [insight!]! - data from the rows affected by the mutation

insight_on_conflict

on_conflict condition type for table "insight"

Fields:

  • constraint: insight_constraint!
  • update_columns: [insight_update_column!]!
  • where: insight_bool_exp

insight_order_by

Ordering options when selecting data from "insight".

Fields:

  • account_id: order_by
  • applications: order_by
  • created_at: order_by
  • id: order_by
  • resource_id: order_by
  • rule: order_by
  • severity: order_by
  • source: order_by
  • status: order_by
  • tenant: order_by
  • title: order_by
  • type: order_by
  • unique_id: order_by
  • updated_at: order_by

insight_pk_columns_input

primary key columns input for table: insight

Fields:

  • id: uuid!

insight_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • applications: jsonb
  • rule: jsonb

insight_select_column

select columns of table "insight"

Values:

  • account_id - column name
  • applications - column name
  • created_at - column name
  • id - column name
  • resource_id - column name
  • rule - column name
  • severity - column name
  • source - column name
  • status - column name
  • tenant - column name
  • title - column name
  • type - column name
  • unique_id - column name
  • updated_at - column name

insight_set_input

input type for updating data in table "insight"

Fields:

  • account_id: uuid
  • applications: jsonb
  • created_at: timestamp
  • id: uuid
  • resource_id: uuid
  • rule: jsonb
  • severity: insight_severity_enum
  • source: String
  • status: String
  • tenant: uuid
  • title: String
  • type: String
  • unique_id: String
  • updated_at: timestamp

insight_severity_aggregate_fields

aggregate fields of "insight_severity"

Fields:

  • count: Int!
  • max: insight_severity_max_fields
  • min: insight_severity_min_fields

insight_severity_bool_exp

Boolean expression to filter rows from the table "insight_severity". All fields are combined with a logical 'AND'.

Fields:

  • _and: [insight_severity_bool_exp!]
  • _not: insight_severity_bool_exp
  • _or: [insight_severity_bool_exp!]
  • comment: String_comparison_exp
  • value: String_comparison_exp

insight_severity_constraint

unique or primary key constraints on table "insight_severity"

Values:

  • insight_severity_pkey - unique or primary key constraint on columns "value"

insight_severity_insert_input

input type for inserting data into table "insight_severity"

Fields:

  • comment: String
  • value: String

insight_severity_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

insight_severity_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

insight_severity_mutation_response

response of any mutation on the table "insight_severity"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [insight_severity!]! - data from the rows affected by the mutation

insight_severity_on_conflict

on_conflict condition type for table "insight_severity"

Fields:

  • constraint: insight_severity_constraint!
  • update_columns: [insight_severity_update_column!]!
  • where: insight_severity_bool_exp

insight_severity_order_by

Ordering options when selecting data from "insight_severity".

Fields:

  • comment: order_by
  • value: order_by

insight_severity_pk_columns_input

primary key columns input for table: insight_severity

Fields:

  • value: String!

insight_severity_select_column

select columns of table "insight_severity"

Values:

  • comment - column name
  • value - column name

insight_severity_set_input

input type for updating data in table "insight_severity"

Fields:

  • comment: String
  • value: String

insight_severity_stream_cursor_input

Streaming cursor of the table "insight_severity"

Fields:

  • initial_value: insight_severity_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

insight_severity_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

insight_severity_update_column

update columns of table "insight_severity"

Values:

  • comment - column name
  • value - column name

insight_stream_cursor_input

Streaming cursor of the table "insight"

Fields:

  • initial_value: insight_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

insight_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • applications: jsonb
  • created_at: timestamp
  • id: uuid
  • resource_id: uuid
  • rule: jsonb
  • severity: insight_severity_enum
  • source: String
  • status: String
  • tenant: uuid
  • title: String
  • type: String
  • unique_id: String
  • updated_at: timestamp

insight_update_column

update columns of table "insight"

Values:

  • account_id - column name
  • applications - column name
  • created_at - column name
  • id - column name
  • resource_id - column name
  • rule - column name
  • severity - column name
  • source - column name
  • status - column name
  • tenant - column name
  • title - column name
  • type - column name
  • unique_id - column name
  • updated_at - column name
Recommendations (128 types)

recommendation_action_type_aggregate_fields

aggregate fields of "recommendation_action_type"

Fields:

  • count: Int!
  • max: recommendation_action_type_max_fields
  • min: recommendation_action_type_min_fields

recommendation_action_type_bool_exp

Boolean expression to filter rows from the table "recommendation_action_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [recommendation_action_type_bool_exp!]
  • _not: recommendation_action_type_bool_exp
  • _or: [recommendation_action_type_bool_exp!]
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • value: String_comparison_exp

recommendation_action_type_constraint

unique or primary key constraints on table "recommendation_action_type"

Values:

  • recommendation_action_type_pkey - unique or primary key constraint on columns "value"

recommendation_action_type_insert_input

input type for inserting data into table "recommendation_action_type"

Fields:

  • recommendations: recommendation_arr_rel_insert_input
  • value: String

recommendation_action_type_max_fields

aggregate max on columns

Fields:

  • value: String

recommendation_action_type_min_fields

aggregate min on columns

Fields:

  • value: String

recommendation_action_type_mutation_response

response of any mutation on the table "recommendation_action_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [recommendation_action_type!]! - data from the rows affected by the mutation

recommendation_action_type_obj_rel_insert_input

input type for inserting object relation for remote table "recommendation_action_type"

Fields:

  • data: recommendation_action_type_insert_input!
  • on_conflict: recommendation_action_type_on_conflict - upsert condition

recommendation_action_type_on_conflict

on_conflict condition type for table "recommendation_action_type"

Fields:

  • constraint: recommendation_action_type_constraint!
  • update_columns: [recommendation_action_type_update_column!]!
  • where: recommendation_action_type_bool_exp

recommendation_action_type_order_by

Ordering options when selecting data from "recommendation_action_type".

Fields:

  • recommendations_aggregate: recommendation_aggregate_order_by
  • value: order_by

recommendation_action_type_pk_columns_input

primary key columns input for table: recommendation_action_type

Fields:

  • value: String!

recommendation_action_type_select_column

select columns of table "recommendation_action_type"

Values:

  • value - column name

recommendation_action_type_set_input

input type for updating data in table "recommendation_action_type"

Fields:

  • value: String

recommendation_action_type_stream_cursor_input

Streaming cursor of the table "recommendation_action_type"

Fields:

  • initial_value: recommendation_action_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

recommendation_action_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

recommendation_action_type_update_column

update columns of table "recommendation_action_type"

Values:

  • value - column name

recommendation_aggregate_bool_exp

Fields:

  • avg: recommendation_aggregate_bool_exp_avg
  • bool_and: recommendation_aggregate_bool_exp_bool_and
  • bool_or: recommendation_aggregate_bool_exp_bool_or
  • corr: recommendation_aggregate_bool_exp_corr
  • count: recommendation_aggregate_bool_exp_count
  • covar_samp: recommendation_aggregate_bool_exp_covar_samp
  • max: recommendation_aggregate_bool_exp_max
  • min: recommendation_aggregate_bool_exp_min
  • stddev_samp: recommendation_aggregate_bool_exp_stddev_samp
  • sum: recommendation_aggregate_bool_exp_sum
  • var_samp: recommendation_aggregate_bool_exp_var_samp

recommendation_aggregate_bool_exp_count

Fields:

  • arguments: [recommendation_select_column!]
  • distinct: Boolean
  • filter: recommendation_bool_exp
  • predicate: Int_comparison_exp!

recommendation_aggregate_fields

aggregate fields of "recommendation"

Fields:

  • avg: recommendation_avg_fields
  • count: Int!
  • max: recommendation_max_fields
  • min: recommendation_min_fields
  • stddev: recommendation_stddev_fields
  • stddev_pop: recommendation_stddev_pop_fields
  • stddev_samp: recommendation_stddev_samp_fields
  • sum: recommendation_sum_fields
  • var_pop: recommendation_var_pop_fields
  • var_samp: recommendation_var_samp_fields
  • variance: recommendation_variance_fields

recommendation_aggregate_order_by

order by aggregate values of table "recommendation"

Fields:

  • avg: recommendation_avg_order_by
  • count: order_by
  • max: recommendation_max_order_by
  • min: recommendation_min_order_by
  • stddev: recommendation_stddev_order_by
  • stddev_pop: recommendation_stddev_pop_order_by
  • stddev_samp: recommendation_stddev_samp_order_by
  • sum: recommendation_sum_order_by
  • var_pop: recommendation_var_pop_order_by
  • var_samp: recommendation_var_samp_order_by
  • variance: recommendation_variance_order_by

recommendation_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • recommendation: jsonb

recommendation_arr_rel_insert_input

input type for inserting array relation for remote table "recommendation"

Fields:

  • data: [recommendation_insert_input!]!
  • on_conflict: recommendation_on_conflict - upsert condition

recommendation_avg_fields

aggregate avg on columns

Fields:

  • estimated_savings: Float

recommendation_avg_order_by

order by avg() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_bool_exp

Boolean expression to filter rows from the table "recommendation". All fields are combined with a logical 'AND'.

Fields:

  • _and: [recommendation_bool_exp!]
  • _not: recommendation_bool_exp
  • _or: [recommendation_bool_exp!]
  • account_object_id: String_comparison_exp
  • category: recommendation_category_type_enum_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • cloud_account_id: uuid_comparison_exp
  • cloud_resourse: cloud_resourses_bool_exp
  • created_at: timestamp_comparison_exp
  • dismissed_reason: String_comparison_exp
  • estimated_savings: float8_comparison_exp
  • id: uuid_comparison_exp
  • is_dismissed: Boolean_comparison_exp
  • note: String_comparison_exp
  • recommendation: jsonb_comparison_exp
  • recommendation__status: recommendation_status_type_bool_exp
  • recommendation_action: recommendation_action_type_enum_comparison_exp
  • recommendation_action_type: recommendation_action_type_bool_exp
  • recommendation_category_type: recommendation_category_type_bool_exp
  • recommendation_severity: recommendation_severity_type_bool_exp
  • resource_id: uuid_comparison_exp
  • rule_name: String_comparison_exp
  • severity: recommendation_severity_type_enum_comparison_exp
  • status: recommendation_status_type_enum_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

recommendation_category_type_aggregate_fields

aggregate fields of "recommendation_category_type"

Fields:

  • count: Int!
  • max: recommendation_category_type_max_fields
  • min: recommendation_category_type_min_fields

recommendation_category_type_bool_exp

Boolean expression to filter rows from the table "recommendation_category_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [recommendation_category_type_bool_exp!]
  • _not: recommendation_category_type_bool_exp
  • _or: [recommendation_category_type_bool_exp!]
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • value: String_comparison_exp

recommendation_category_type_constraint

unique or primary key constraints on table "recommendation_category_type"

Values:

  • recommendation_category_type_pkey - unique or primary key constraint on columns "value"

recommendation_category_type_insert_input

input type for inserting data into table "recommendation_category_type"

Fields:

  • recommendations: recommendation_arr_rel_insert_input
  • value: String

recommendation_category_type_max_fields

aggregate max on columns

Fields:

  • value: String

recommendation_category_type_min_fields

aggregate min on columns

Fields:

  • value: String

recommendation_category_type_mutation_response

response of any mutation on the table "recommendation_category_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [recommendation_category_type!]! - data from the rows affected by the mutation

recommendation_category_type_obj_rel_insert_input

input type for inserting object relation for remote table "recommendation_category_type"

Fields:

  • data: recommendation_category_type_insert_input!
  • on_conflict: recommendation_category_type_on_conflict - upsert condition

recommendation_category_type_on_conflict

on_conflict condition type for table "recommendation_category_type"

Fields:

  • constraint: recommendation_category_type_constraint!
  • update_columns: [recommendation_category_type_update_column!]!
  • where: recommendation_category_type_bool_exp

recommendation_category_type_order_by

Ordering options when selecting data from "recommendation_category_type".

Fields:

  • recommendations_aggregate: recommendation_aggregate_order_by
  • value: order_by

recommendation_category_type_pk_columns_input

primary key columns input for table: recommendation_category_type

Fields:

  • value: String!

recommendation_category_type_select_column

select columns of table "recommendation_category_type"

Values:

  • value - column name

recommendation_category_type_set_input

input type for updating data in table "recommendation_category_type"

Fields:

  • value: String

recommendation_category_type_stream_cursor_input

Streaming cursor of the table "recommendation_category_type"

Fields:

  • initial_value: recommendation_category_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

recommendation_category_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

recommendation_category_type_update_column

update columns of table "recommendation_category_type"

Values:

  • value - column name

recommendation_constraint

unique or primary key constraints on table "recommendation"

Values:

  • recommendation_account_object_id_resource_id_cloud_account_id_r - unique or primary key constraint on columns "resource_id", "account_object_id", "cloud_account_id", "category", "rule_name"
  • recommendation_cloud_account_id_rule_name_resource_id_category_ - unique or primary key constraint on columns "resource_id", "account_object_id", "cloud_account_id", "category", "rule_name"
  • recommendation_pkey - unique or primary key constraint on columns "id"
  • recommendation_rule_name_cloud_account_id_account_object_id_cat - unique or primary key constraint on columns "resource_id", "account_object_id", "cloud_account_id", "category", "rule_name"

recommendation_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • recommendation: [String!]

recommendation_delete_elem_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

Fields:

  • recommendation: Int

recommendation_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • recommendation: String

recommendation_inc_input

input type for incrementing numeric columns in table "recommendation"

Fields:

  • estimated_savings: float8

recommendation_insert_input

input type for inserting data into table "recommendation"

Fields:

  • account_object_id: String
  • category: recommendation_category_type_enum
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_account_id: uuid
  • cloud_resourse: cloud_resourses_obj_rel_insert_input
  • created_at: timestamp
  • dismissed_reason: String
  • estimated_savings: float8
  • id: uuid
  • is_dismissed: Boolean
  • note: String
  • recommendation: jsonb
  • recommendation__status: recommendation_status_type_obj_rel_insert_input
  • recommendation_action: recommendation_action_type_enum
  • recommendation_action_type: recommendation_action_type_obj_rel_insert_input
  • recommendation_category_type: recommendation_category_type_obj_rel_insert_input
  • recommendation_severity: recommendation_severity_type_obj_rel_insert_input
  • resource_id: uuid
  • rule_name: String
  • severity: recommendation_severity_type_enum
  • status: recommendation_status_type_enum
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

recommendation_max_fields

aggregate max on columns

Fields:

  • account_object_id: String
  • cloud_account_id: uuid
  • created_at: timestamp
  • dismissed_reason: String
  • estimated_savings: float8
  • id: uuid
  • note: String
  • resource_id: uuid
  • rule_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

recommendation_max_order_by

order by max() on columns of table "recommendation"

Fields:

  • account_object_id: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • dismissed_reason: order_by
  • estimated_savings: order_by
  • id: order_by
  • note: order_by
  • resource_id: order_by
  • rule_name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

recommendation_min_fields

aggregate min on columns

Fields:

  • account_object_id: String
  • cloud_account_id: uuid
  • created_at: timestamp
  • dismissed_reason: String
  • estimated_savings: float8
  • id: uuid
  • note: String
  • resource_id: uuid
  • rule_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

recommendation_min_order_by

order by min() on columns of table "recommendation"

Fields:

  • account_object_id: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • dismissed_reason: order_by
  • estimated_savings: order_by
  • id: order_by
  • note: order_by
  • resource_id: order_by
  • rule_name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

recommendation_mutation_response

response of any mutation on the table "recommendation"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [recommendation!]! - data from the rows affected by the mutation

recommendation_obj_rel_insert_input

input type for inserting object relation for remote table "recommendation"

Fields:

  • data: recommendation_insert_input!
  • on_conflict: recommendation_on_conflict - upsert condition

recommendation_on_conflict

on_conflict condition type for table "recommendation"

Fields:

  • constraint: recommendation_constraint!
  • update_columns: [recommendation_update_column!]!
  • where: recommendation_bool_exp

recommendation_order_by

Ordering options when selecting data from "recommendation".

Fields:

  • account_object_id: order_by
  • category: order_by
  • cloud_account: cloud_accounts_order_by
  • cloud_account_id: order_by
  • cloud_resourse: cloud_resourses_order_by
  • created_at: order_by
  • dismissed_reason: order_by
  • estimated_savings: order_by
  • id: order_by
  • is_dismissed: order_by
  • note: order_by
  • recommendation: order_by
  • recommendation__status: recommendation_status_type_order_by
  • recommendation_action: order_by
  • recommendation_action_type: recommendation_action_type_order_by
  • recommendation_category_type: recommendation_category_type_order_by
  • recommendation_severity: recommendation_severity_type_order_by
  • resource_id: order_by
  • rule_name: order_by
  • severity: order_by
  • status: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

recommendation_pk_columns_input

primary key columns input for table: recommendation

Fields:

  • id: uuid!

recommendation_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • recommendation: jsonb

recommendation_resolution_aggregate_fields

aggregate fields of "recommendation_resolution"

Fields:

  • count: Int!
  • max: recommendation_resolution_max_fields
  • min: recommendation_resolution_min_fields

recommendation_resolution_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • data: jsonb

recommendation_resolution_bool_exp

Boolean expression to filter rows from the table "recommendation_resolution". All fields are combined with a logical 'AND'.

Fields:

  • _and: [recommendation_resolution_bool_exp!]
  • _not: recommendation_resolution_bool_exp
  • _or: [recommendation_resolution_bool_exp!]
  • created_at: timestamp_comparison_exp
  • data: jsonb_comparison_exp
  • id: uuid_comparison_exp
  • recommendation: recommendation_bool_exp
  • recommendation_id: uuid_comparison_exp
  • resolver_id: String_comparison_exp
  • resolver_type: String_comparison_exp
  • status: String_comparison_exp
  • status_message: String_comparison_exp
  • type: String_comparison_exp
  • type_reference_id: String_comparison_exp
  • updated_at: timestamp_comparison_exp

recommendation_resolution_constraint

unique or primary key constraints on table "recommendation_resolution"

Values:

  • recommendation_resolution_pkey - unique or primary key constraint on columns "id"

recommendation_resolution_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • data: [String!]

recommendation_resolution_delete_elem_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

Fields:

  • data: Int

recommendation_resolution_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • data: String

recommendation_resolution_insert_input

input type for inserting data into table "recommendation_resolution"

Fields:

  • created_at: timestamp
  • data: jsonb
  • id: uuid
  • recommendation: recommendation_obj_rel_insert_input
  • recommendation_id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

recommendation_resolution_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • recommendation_id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

recommendation_resolution_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • recommendation_id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

recommendation_resolution_mutation_response

response of any mutation on the table "recommendation_resolution"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [recommendation_resolution!]! - data from the rows affected by the mutation

recommendation_resolution_on_conflict

on_conflict condition type for table "recommendation_resolution"

Fields:

  • constraint: recommendation_resolution_constraint!
  • update_columns: [recommendation_resolution_update_column!]!
  • where: recommendation_resolution_bool_exp

recommendation_resolution_order_by

Ordering options when selecting data from "recommendation_resolution".

Fields:

  • created_at: order_by
  • data: order_by
  • id: order_by
  • recommendation: recommendation_order_by
  • recommendation_id: order_by
  • resolver_id: order_by
  • resolver_type: order_by
  • status: order_by
  • status_message: order_by
  • type: order_by
  • type_reference_id: order_by
  • updated_at: order_by

recommendation_resolution_pk_columns_input

primary key columns input for table: recommendation_resolution

Fields:

  • id: uuid!

recommendation_resolution_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • data: jsonb

recommendation_resolution_select_column

select columns of table "recommendation_resolution"

Values:

  • created_at - column name
  • data - column name
  • id - column name
  • recommendation_id - column name
  • resolver_id - column name
  • resolver_type - column name
  • status - column name
  • status_message - column name
  • type - column name
  • type_reference_id - column name
  • updated_at - column name

recommendation_resolution_set_input

input type for updating data in table "recommendation_resolution"

Fields:

  • created_at: timestamp
  • data: jsonb
  • id: uuid
  • recommendation_id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

recommendation_resolution_stream_cursor_input

Streaming cursor of the table "recommendation_resolution"

Fields:

  • initial_value: recommendation_resolution_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

recommendation_resolution_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • data: jsonb
  • id: uuid
  • recommendation_id: uuid
  • resolver_id: String
  • resolver_type: String
  • status: String
  • status_message: String
  • type: String
  • type_reference_id: String
  • updated_at: timestamp

recommendation_resolution_update_column

update columns of table "recommendation_resolution"

Values:

  • created_at - column name
  • data - column name
  • id - column name
  • recommendation_id - column name
  • resolver_id - column name
  • resolver_type - column name
  • status - column name
  • status_message - column name
  • type - column name
  • type_reference_id - column name
  • updated_at - column name

recommendation_select_column

select columns of table "recommendation"

Values:

  • account_object_id - column name
  • category - column name
  • cloud_account_id - column name
  • created_at - column name
  • dismissed_reason - column name
  • estimated_savings - column name
  • id - column name
  • is_dismissed - column name
  • note - column name
  • recommendation - column name
  • recommendation_action - column name
  • resource_id - column name
  • rule_name - column name
  • severity - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

recommendation_set_input

input type for updating data in table "recommendation"

Fields:

  • account_object_id: String
  • category: recommendation_category_type_enum
  • cloud_account_id: uuid
  • created_at: timestamp
  • dismissed_reason: String
  • estimated_savings: float8
  • id: uuid
  • is_dismissed: Boolean
  • note: String
  • recommendation: jsonb
  • recommendation_action: recommendation_action_type_enum
  • resource_id: uuid
  • rule_name: String
  • severity: recommendation_severity_type_enum
  • status: recommendation_status_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

recommendation_severity_type_aggregate_fields

aggregate fields of "recommendation_severity_type"

Fields:

  • count: Int!
  • max: recommendation_severity_type_max_fields
  • min: recommendation_severity_type_min_fields

recommendation_severity_type_bool_exp

Boolean expression to filter rows from the table "recommendation_severity_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [recommendation_severity_type_bool_exp!]
  • _not: recommendation_severity_type_bool_exp
  • _or: [recommendation_severity_type_bool_exp!]
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • value: String_comparison_exp

recommendation_severity_type_constraint

unique or primary key constraints on table "recommendation_severity_type"

Values:

  • severity_enum_pkey - unique or primary key constraint on columns "value"

recommendation_severity_type_insert_input

input type for inserting data into table "recommendation_severity_type"

Fields:

  • recommendations: recommendation_arr_rel_insert_input
  • value: String

recommendation_severity_type_max_fields

aggregate max on columns

Fields:

  • value: String

recommendation_severity_type_min_fields

aggregate min on columns

Fields:

  • value: String

recommendation_severity_type_mutation_response

response of any mutation on the table "recommendation_severity_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [recommendation_severity_type!]! - data from the rows affected by the mutation

recommendation_severity_type_obj_rel_insert_input

input type for inserting object relation for remote table "recommendation_severity_type"

Fields:

  • data: recommendation_severity_type_insert_input!
  • on_conflict: recommendation_severity_type_on_conflict - upsert condition

recommendation_severity_type_on_conflict

on_conflict condition type for table "recommendation_severity_type"

Fields:

  • constraint: recommendation_severity_type_constraint!
  • update_columns: [recommendation_severity_type_update_column!]!
  • where: recommendation_severity_type_bool_exp

recommendation_severity_type_order_by

Ordering options when selecting data from "recommendation_severity_type".

Fields:

  • recommendations_aggregate: recommendation_aggregate_order_by
  • value: order_by

recommendation_severity_type_pk_columns_input

primary key columns input for table: recommendation_severity_type

Fields:

  • value: String!

recommendation_severity_type_select_column

select columns of table "recommendation_severity_type"

Values:

  • value - column name

recommendation_severity_type_set_input

input type for updating data in table "recommendation_severity_type"

Fields:

  • value: String

recommendation_severity_type_stream_cursor_input

Streaming cursor of the table "recommendation_severity_type"

Fields:

  • initial_value: recommendation_severity_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

recommendation_severity_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

recommendation_severity_type_update_column

update columns of table "recommendation_severity_type"

Values:

  • value - column name

recommendation_status_type_aggregate_fields

aggregate fields of "recommendation_status_type"

Fields:

  • count: Int!
  • max: recommendation_status_type_max_fields
  • min: recommendation_status_type_min_fields

recommendation_status_type_bool_exp

Boolean expression to filter rows from the table "recommendation_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [recommendation_status_type_bool_exp!]
  • _not: recommendation_status_type_bool_exp
  • _or: [recommendation_status_type_bool_exp!]
  • description: String_comparison_exp
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • value: String_comparison_exp

recommendation_status_type_constraint

unique or primary key constraints on table "recommendation_status_type"

Values:

  • state_enum_pkey - unique or primary key constraint on columns "value"

recommendation_status_type_insert_input

input type for inserting data into table "recommendation_status_type"

Fields:

  • description: String
  • recommendations: recommendation_arr_rel_insert_input
  • value: String

recommendation_status_type_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

recommendation_status_type_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

recommendation_status_type_mutation_response

response of any mutation on the table "recommendation_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [recommendation_status_type!]! - data from the rows affected by the mutation

recommendation_status_type_obj_rel_insert_input

input type for inserting object relation for remote table "recommendation_status_type"

Fields:

  • data: recommendation_status_type_insert_input!
  • on_conflict: recommendation_status_type_on_conflict - upsert condition

recommendation_status_type_on_conflict

on_conflict condition type for table "recommendation_status_type"

Fields:

  • constraint: recommendation_status_type_constraint!
  • update_columns: [recommendation_status_type_update_column!]!
  • where: recommendation_status_type_bool_exp

recommendation_status_type_order_by

Ordering options when selecting data from "recommendation_status_type".

Fields:

  • description: order_by
  • recommendations_aggregate: recommendation_aggregate_order_by
  • value: order_by

recommendation_status_type_pk_columns_input

primary key columns input for table: recommendation_status_type

Fields:

  • value: String!

recommendation_status_type_select_column

select columns of table "recommendation_status_type"

Values:

  • description - column name
  • value - column name

recommendation_status_type_set_input

input type for updating data in table "recommendation_status_type"

Fields:

  • description: String
  • value: String

recommendation_status_type_stream_cursor_input

Streaming cursor of the table "recommendation_status_type"

Fields:

  • initial_value: recommendation_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

recommendation_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

recommendation_status_type_update_column

update columns of table "recommendation_status_type"

Values:

  • description - column name
  • value - column name

recommendation_stddev_fields

aggregate stddev on columns

Fields:

  • estimated_savings: Float

recommendation_stddev_order_by

order by stddev() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • estimated_savings: Float

recommendation_stddev_pop_order_by

order by stddev_pop() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • estimated_savings: Float

recommendation_stddev_samp_order_by

order by stddev_samp() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_stream_cursor_input

Streaming cursor of the table "recommendation"

Fields:

  • initial_value: recommendation_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

recommendation_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_object_id: String
  • category: recommendation_category_type_enum
  • cloud_account_id: uuid
  • created_at: timestamp
  • dismissed_reason: String
  • estimated_savings: float8
  • id: uuid
  • is_dismissed: Boolean
  • note: String
  • recommendation: jsonb
  • recommendation_action: recommendation_action_type_enum
  • resource_id: uuid
  • rule_name: String
  • severity: recommendation_severity_type_enum
  • status: recommendation_status_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

recommendation_sum_fields

aggregate sum on columns

Fields:

  • estimated_savings: float8

recommendation_sum_order_by

order by sum() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_update_column

update columns of table "recommendation"

Values:

  • account_object_id - column name
  • category - column name
  • cloud_account_id - column name
  • created_at - column name
  • dismissed_reason - column name
  • estimated_savings - column name
  • id - column name
  • is_dismissed - column name
  • note - column name
  • recommendation - column name
  • recommendation_action - column name
  • resource_id - column name
  • rule_name - column name
  • severity - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

recommendation_var_pop_fields

aggregate var_pop on columns

Fields:

  • estimated_savings: Float

recommendation_var_pop_order_by

order by var_pop() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_var_samp_fields

aggregate var_samp on columns

Fields:

  • estimated_savings: Float

recommendation_var_samp_order_by

order by var_samp() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by

recommendation_variance_fields

aggregate variance on columns

Fields:

  • estimated_savings: Float

recommendation_variance_order_by

order by variance() on columns of table "recommendation"

Fields:

  • estimated_savings: order_by
Cloud Infrastructure (329 types)

active_resources_aggregate_fields

aggregate fields of "active_resources"

Fields:

  • count: Int!
  • max: active_resources_max_fields
  • min: active_resources_min_fields

active_resources_bool_exp

Boolean expression to filter rows from the table "active_resources". All fields are combined with a logical 'AND'.

Fields:

  • _and: [active_resources_bool_exp!]
  • _not: active_resources_bool_exp
  • _or: [active_resources_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • external_resource_id: String_comparison_exp
  • resource_type: String_comparison_exp
  • resourse_id: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

active_resources_constraint

unique or primary key constraints on table "active_resources"

Values:

  • active_resources_pkey - unique or primary key constraint on columns "external_resource_id", "tenant_id", "resource_type", "cloud_account_id"

active_resources_insert_input

input type for inserting data into table "active_resources"

Fields:

  • cloud_account_id: uuid
  • external_resource_id: String
  • resource_type: String
  • resourse_id: String
  • tenant_id: uuid
  • updated_at: timestamp

active_resources_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • external_resource_id: String
  • resource_type: String
  • resourse_id: String
  • tenant_id: uuid
  • updated_at: timestamp

active_resources_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • external_resource_id: String
  • resource_type: String
  • resourse_id: String
  • tenant_id: uuid
  • updated_at: timestamp

active_resources_mutation_response

response of any mutation on the table "active_resources"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [active_resources!]! - data from the rows affected by the mutation

active_resources_on_conflict

on_conflict condition type for table "active_resources"

Fields:

  • constraint: active_resources_constraint!
  • update_columns: [active_resources_update_column!]!
  • where: active_resources_bool_exp

active_resources_order_by

Ordering options when selecting data from "active_resources".

Fields:

  • cloud_account_id: order_by
  • external_resource_id: order_by
  • resource_type: order_by
  • resourse_id: order_by
  • tenant_id: order_by
  • updated_at: order_by

active_resources_pk_columns_input

primary key columns input for table: active_resources

Fields:

  • cloud_account_id: uuid!
  • external_resource_id: String!
  • resource_type: String!
  • tenant_id: uuid!

active_resources_select_column

select columns of table "active_resources"

Values:

  • cloud_account_id - column name
  • external_resource_id - column name
  • resource_type - column name
  • resourse_id - column name
  • tenant_id - column name
  • updated_at - column name

active_resources_set_input

input type for updating data in table "active_resources"

Fields:

  • cloud_account_id: uuid
  • external_resource_id: String
  • resource_type: String
  • resourse_id: String
  • tenant_id: uuid
  • updated_at: timestamp

active_resources_stream_cursor_input

Streaming cursor of the table "active_resources"

Fields:

  • initial_value: active_resources_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

active_resources_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • external_resource_id: String
  • resource_type: String
  • resourse_id: String
  • tenant_id: uuid
  • updated_at: timestamp

active_resources_update_column

update columns of table "active_resources"

Values:

  • cloud_account_id - column name
  • external_resource_id - column name
  • resource_type - column name
  • resourse_id - column name
  • tenant_id - column name
  • updated_at - column name

cloud_account_attrs_aggregate_bool_exp

Fields:

  • count: cloud_account_attrs_aggregate_bool_exp_count

cloud_account_attrs_aggregate_bool_exp_count

Fields:

  • arguments: [cloud_account_attrs_select_column!]
  • distinct: Boolean
  • filter: cloud_account_attrs_bool_exp
  • predicate: Int_comparison_exp!

cloud_account_attrs_aggregate_fields

aggregate fields of "cloud_account_attrs"

Fields:

  • count: Int!
  • max: cloud_account_attrs_max_fields
  • min: cloud_account_attrs_min_fields

cloud_account_attrs_aggregate_order_by

order by aggregate values of table "cloud_account_attrs"

Fields:

  • count: order_by
  • max: cloud_account_attrs_max_order_by
  • min: cloud_account_attrs_min_order_by

cloud_account_attrs_arr_rel_insert_input

input type for inserting array relation for remote table "cloud_account_attrs"

Fields:

  • data: [cloud_account_attrs_insert_input!]!
  • on_conflict: cloud_account_attrs_on_conflict - upsert condition

cloud_account_attrs_bool_exp

Boolean expression to filter rows from the table "cloud_account_attrs". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_account_attrs_bool_exp!]
  • _not: cloud_account_attrs_bool_exp
  • _or: [cloud_account_attrs_bool_exp!]
  • cloud_account: cloud_accounts_bool_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • value: String_comparison_exp

cloud_account_attrs_constraint

unique or primary key constraints on table "cloud_account_attrs"

Values:

  • cloud_account_attrs_cloud_account_id_name_key - unique or primary key constraint on columns "cloud_account_id", "name"
  • cloud_account_attrs_pkey - unique or primary key constraint on columns "id"

cloud_account_attrs_insert_input

input type for inserting data into table "cloud_account_attrs"

Fields:

  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • value: String

cloud_account_attrs_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • value: String

cloud_account_attrs_max_order_by

order by max() on columns of table "cloud_account_attrs"

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • value: order_by

cloud_account_attrs_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • value: String

cloud_account_attrs_min_order_by

order by min() on columns of table "cloud_account_attrs"

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • value: order_by

cloud_account_attrs_mutation_response

response of any mutation on the table "cloud_account_attrs"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_account_attrs!]! - data from the rows affected by the mutation

cloud_account_attrs_on_conflict

on_conflict condition type for table "cloud_account_attrs"

Fields:

  • constraint: cloud_account_attrs_constraint!
  • update_columns: [cloud_account_attrs_update_column!]!
  • where: cloud_account_attrs_bool_exp

cloud_account_attrs_order_by

Ordering options when selecting data from "cloud_account_attrs".

Fields:

  • cloud_account: cloud_accounts_order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • value: order_by

cloud_account_attrs_pk_columns_input

primary key columns input for table: cloud_account_attrs

Fields:

  • id: uuid!

cloud_account_attrs_select_column

select columns of table "cloud_account_attrs"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • id - column name
  • name - column name
  • updated_at - column name
  • value - column name

cloud_account_attrs_set_input

input type for updating data in table "cloud_account_attrs"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • value: String

cloud_account_attrs_stream_cursor_input

Streaming cursor of the table "cloud_account_attrs"

Fields:

  • initial_value: cloud_account_attrs_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_account_attrs_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • value: String

cloud_account_attrs_update_column

update columns of table "cloud_account_attrs"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • id - column name
  • name - column name
  • updated_at - column name
  • value - column name

cloud_account_onboarding_errors_aggregate_fields

aggregate fields of "cloud_account_onboarding_errors"

Fields:

  • count: Int!
  • max: cloud_account_onboarding_errors_max_fields
  • min: cloud_account_onboarding_errors_min_fields

cloud_account_onboarding_errors_bool_exp

Boolean expression to filter rows from the table "cloud_account_onboarding_errors". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_account_onboarding_errors_bool_exp!]
  • _not: cloud_account_onboarding_errors_bool_exp
  • _or: [cloud_account_onboarding_errors_bool_exp!]
  • account_name: String_comparison_exp
  • config: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • error_message: String_comparison_exp
  • id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp

cloud_account_onboarding_errors_constraint

unique or primary key constraints on table "cloud_account_onboarding_errors"

Values:

  • cloud_account_onboarding_errors_pkey - unique or primary key constraint on columns "id"

cloud_account_onboarding_errors_insert_input

input type for inserting data into table "cloud_account_onboarding_errors"

Fields:

  • account_name: String
  • config: String
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • id: uuid
  • tenant_id: uuid

cloud_account_onboarding_errors_max_fields

aggregate max on columns

Fields:

  • account_name: String
  • config: String
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • id: uuid
  • tenant_id: uuid

cloud_account_onboarding_errors_min_fields

aggregate min on columns

Fields:

  • account_name: String
  • config: String
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • id: uuid
  • tenant_id: uuid

cloud_account_onboarding_errors_mutation_response

response of any mutation on the table "cloud_account_onboarding_errors"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_account_onboarding_errors!]! - data from the rows affected by the mutation

cloud_account_onboarding_errors_on_conflict

on_conflict condition type for table "cloud_account_onboarding_errors"

Fields:

  • constraint: cloud_account_onboarding_errors_constraint!
  • update_columns: [cloud_account_onboarding_errors_update_column!]!
  • where: cloud_account_onboarding_errors_bool_exp

cloud_account_onboarding_errors_order_by

Ordering options when selecting data from "cloud_account_onboarding_errors".

Fields:

  • account_name: order_by
  • config: order_by
  • created_at: order_by
  • created_by: order_by
  • error_message: order_by
  • id: order_by
  • tenant_id: order_by

cloud_account_onboarding_errors_pk_columns_input

primary key columns input for table: cloud_account_onboarding_errors

Fields:

  • id: uuid!

cloud_account_onboarding_errors_select_column

select columns of table "cloud_account_onboarding_errors"

Values:

  • account_name - column name
  • config - column name
  • created_at - column name
  • created_by - column name
  • error_message - column name
  • id - column name
  • tenant_id - column name

cloud_account_onboarding_errors_set_input

input type for updating data in table "cloud_account_onboarding_errors"

Fields:

  • account_name: String
  • config: String
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • id: uuid
  • tenant_id: uuid

cloud_account_onboarding_errors_stream_cursor_input

Streaming cursor of the table "cloud_account_onboarding_errors"

Fields:

  • initial_value: cloud_account_onboarding_errors_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_account_onboarding_errors_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_name: String
  • config: String
  • created_at: timestamp
  • created_by: uuid
  • error_message: String
  • id: uuid
  • tenant_id: uuid

cloud_account_onboarding_errors_update_column

update columns of table "cloud_account_onboarding_errors"

Values:

  • account_name - column name
  • config - column name
  • created_at - column name
  • created_by - column name
  • error_message - column name
  • id - column name
  • tenant_id - column name

cloud_account_score_aggregate_fields

aggregate fields of "cloud_account_score"

Fields:

  • avg: cloud_account_score_avg_fields
  • count: Int!
  • max: cloud_account_score_max_fields
  • min: cloud_account_score_min_fields
  • stddev: cloud_account_score_stddev_fields
  • stddev_pop: cloud_account_score_stddev_pop_fields
  • stddev_samp: cloud_account_score_stddev_samp_fields
  • sum: cloud_account_score_sum_fields
  • var_pop: cloud_account_score_var_pop_fields
  • var_samp: cloud_account_score_var_samp_fields
  • variance: cloud_account_score_variance_fields

cloud_account_score_avg_fields

aggregate avg on columns

Fields:

  • score: Float

cloud_account_score_bool_exp

Boolean expression to filter rows from the table "cloud_account_score". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_account_score_bool_exp!]
  • _not: cloud_account_score_bool_exp
  • _or: [cloud_account_score_bool_exp!]
  • cloud_account: cloud_accounts_bool_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • score: Int_comparison_exp
  • source: String_comparison_exp
  • tenant: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

cloud_account_score_constraint

unique or primary key constraints on table "cloud_account_score"

Values:

  • cloud_account_score_pkey - unique or primary key constraint on columns "id"
  • cloud_account_score_tenant_cloud_account_id_source_key - unique or primary key constraint on columns "source", "tenant", "cloud_account_id"

cloud_account_score_inc_input

input type for incrementing numeric columns in table "cloud_account_score"

Fields:

  • score: Int

cloud_account_score_insert_input

input type for inserting data into table "cloud_account_score"

Fields:

  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_account_id: uuid
  • created_at: timestamp
  • description: String
  • id: uuid
  • score: Int
  • source: String
  • tenant: uuid
  • updated_at: timestamp

cloud_account_score_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • description: String
  • id: uuid
  • score: Int
  • source: String
  • tenant: uuid
  • updated_at: timestamp

cloud_account_score_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • description: String
  • id: uuid
  • score: Int
  • source: String
  • tenant: uuid
  • updated_at: timestamp

cloud_account_score_mutation_response

response of any mutation on the table "cloud_account_score"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_account_score!]! - data from the rows affected by the mutation

cloud_account_score_on_conflict

on_conflict condition type for table "cloud_account_score"

Fields:

  • constraint: cloud_account_score_constraint!
  • update_columns: [cloud_account_score_update_column!]!
  • where: cloud_account_score_bool_exp

cloud_account_score_order_by

Ordering options when selecting data from "cloud_account_score".

Fields:

  • cloud_account: cloud_accounts_order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • description: order_by
  • id: order_by
  • score: order_by
  • source: order_by
  • tenant: order_by
  • updated_at: order_by

cloud_account_score_pk_columns_input

primary key columns input for table: cloud_account_score

Fields:

  • id: uuid!

cloud_account_score_select_column

select columns of table "cloud_account_score"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • description - column name
  • id - column name
  • score - column name
  • source - column name
  • tenant - column name
  • updated_at - column name

cloud_account_score_set_input

input type for updating data in table "cloud_account_score"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • description: String
  • id: uuid
  • score: Int
  • source: String
  • tenant: uuid
  • updated_at: timestamp

cloud_account_score_stddev_fields

aggregate stddev on columns

Fields:

  • score: Float

cloud_account_score_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • score: Float

cloud_account_score_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • score: Float

cloud_account_score_stream_cursor_input

Streaming cursor of the table "cloud_account_score"

Fields:

  • initial_value: cloud_account_score_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_account_score_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • description: String
  • id: uuid
  • score: Int
  • source: String
  • tenant: uuid
  • updated_at: timestamp

cloud_account_score_sum_fields

aggregate sum on columns

Fields:

  • score: Int

cloud_account_score_update_column

update columns of table "cloud_account_score"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • description - column name
  • id - column name
  • score - column name
  • source - column name
  • tenant - column name
  • updated_at - column name

cloud_account_score_var_pop_fields

aggregate var_pop on columns

Fields:

  • score: Float

cloud_account_score_var_samp_fields

aggregate var_samp on columns

Fields:

  • score: Float

cloud_account_score_variance_fields

aggregate variance on columns

Fields:

  • score: Float

cloud_account_status_type_aggregate_fields

aggregate fields of "cloud_account_status_type"

Fields:

  • count: Int!
  • max: cloud_account_status_type_max_fields
  • min: cloud_account_status_type_min_fields

cloud_account_status_type_bool_exp

Boolean expression to filter rows from the table "cloud_account_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_account_status_type_bool_exp!]
  • _not: cloud_account_status_type_bool_exp
  • _or: [cloud_account_status_type_bool_exp!]
  • cloud_accounts: cloud_accounts_bool_exp
  • cloud_accounts_aggregate: cloud_accounts_aggregate_bool_exp
  • decription: String_comparison_exp
  • value: String_comparison_exp

cloud_account_status_type_constraint

unique or primary key constraints on table "cloud_account_status_type"

Values:

  • cloud_account_status_types_pkey - unique or primary key constraint on columns "value"

cloud_account_status_type_insert_input

input type for inserting data into table "cloud_account_status_type"

Fields:

  • cloud_accounts: cloud_accounts_arr_rel_insert_input
  • decription: String
  • value: String

cloud_account_status_type_max_fields

aggregate max on columns

Fields:

  • decription: String
  • value: String

cloud_account_status_type_min_fields

aggregate min on columns

Fields:

  • decription: String
  • value: String

cloud_account_status_type_mutation_response

response of any mutation on the table "cloud_account_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_account_status_type!]! - data from the rows affected by the mutation

cloud_account_status_type_obj_rel_insert_input

input type for inserting object relation for remote table "cloud_account_status_type"

Fields:

  • data: cloud_account_status_type_insert_input!
  • on_conflict: cloud_account_status_type_on_conflict - upsert condition

cloud_account_status_type_on_conflict

on_conflict condition type for table "cloud_account_status_type"

Fields:

  • constraint: cloud_account_status_type_constraint!
  • update_columns: [cloud_account_status_type_update_column!]!
  • where: cloud_account_status_type_bool_exp

cloud_account_status_type_order_by

Ordering options when selecting data from "cloud_account_status_type".

Fields:

  • cloud_accounts_aggregate: cloud_accounts_aggregate_order_by
  • decription: order_by
  • value: order_by

cloud_account_status_type_pk_columns_input

primary key columns input for table: cloud_account_status_type

Fields:

  • value: String!

cloud_account_status_type_select_column

select columns of table "cloud_account_status_type"

Values:

  • decription - column name
  • value - column name

cloud_account_status_type_set_input

input type for updating data in table "cloud_account_status_type"

Fields:

  • decription: String
  • value: String

cloud_account_status_type_stream_cursor_input

Streaming cursor of the table "cloud_account_status_type"

Fields:

  • initial_value: cloud_account_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_account_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • decription: String
  • value: String

cloud_account_status_type_update_column

update columns of table "cloud_account_status_type"

Values:

  • decription - column name
  • value - column name

cloud_account_sync_status_type_aggregate_fields

aggregate fields of "cloud_account_sync_status_type"

Fields:

  • count: Int!
  • max: cloud_account_sync_status_type_max_fields
  • min: cloud_account_sync_status_type_min_fields

cloud_account_sync_status_type_bool_exp

Boolean expression to filter rows from the table "cloud_account_sync_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_account_sync_status_type_bool_exp!]
  • _not: cloud_account_sync_status_type_bool_exp
  • _or: [cloud_account_sync_status_type_bool_exp!]
  • cloud_accounts: cloud_accounts_bool_exp
  • cloud_accounts_aggregate: cloud_accounts_aggregate_bool_exp
  • value: String_comparison_exp

cloud_account_sync_status_type_constraint

unique or primary key constraints on table "cloud_account_sync_status_type"

Values:

  • cloud_account_sync_status_type_pkey - unique or primary key constraint on columns "value"

cloud_account_sync_status_type_insert_input

input type for inserting data into table "cloud_account_sync_status_type"

Fields:

  • cloud_accounts: cloud_accounts_arr_rel_insert_input
  • value: String

cloud_account_sync_status_type_max_fields

aggregate max on columns

Fields:

  • value: String

cloud_account_sync_status_type_min_fields

aggregate min on columns

Fields:

  • value: String

cloud_account_sync_status_type_mutation_response

response of any mutation on the table "cloud_account_sync_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_account_sync_status_type!]! - data from the rows affected by the mutation

cloud_account_sync_status_type_obj_rel_insert_input

input type for inserting object relation for remote table "cloud_account_sync_status_type"

Fields:

  • data: cloud_account_sync_status_type_insert_input!
  • on_conflict: cloud_account_sync_status_type_on_conflict - upsert condition

cloud_account_sync_status_type_on_conflict

on_conflict condition type for table "cloud_account_sync_status_type"

Fields:

  • constraint: cloud_account_sync_status_type_constraint!
  • update_columns: [cloud_account_sync_status_type_update_column!]!
  • where: cloud_account_sync_status_type_bool_exp

cloud_account_sync_status_type_order_by

Ordering options when selecting data from "cloud_account_sync_status_type".

Fields:

  • cloud_accounts_aggregate: cloud_accounts_aggregate_order_by
  • value: order_by

cloud_account_sync_status_type_pk_columns_input

primary key columns input for table: cloud_account_sync_status_type

Fields:

  • value: String!

cloud_account_sync_status_type_select_column

select columns of table "cloud_account_sync_status_type"

Values:

  • value - column name

cloud_account_sync_status_type_set_input

input type for updating data in table "cloud_account_sync_status_type"

Fields:

  • value: String

cloud_account_sync_status_type_stream_cursor_input

Streaming cursor of the table "cloud_account_sync_status_type"

Fields:

  • initial_value: cloud_account_sync_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_account_sync_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

cloud_account_sync_status_type_update_column

update columns of table "cloud_account_sync_status_type"

Values:

  • value - column name

cloud_accounts_aggregate_bool_exp

Fields:

  • avg: cloud_accounts_aggregate_bool_exp_avg
  • corr: cloud_accounts_aggregate_bool_exp_corr
  • count: cloud_accounts_aggregate_bool_exp_count
  • covar_samp: cloud_accounts_aggregate_bool_exp_covar_samp
  • max: cloud_accounts_aggregate_bool_exp_max
  • min: cloud_accounts_aggregate_bool_exp_min
  • stddev_samp: cloud_accounts_aggregate_bool_exp_stddev_samp
  • sum: cloud_accounts_aggregate_bool_exp_sum
  • var_samp: cloud_accounts_aggregate_bool_exp_var_samp

cloud_accounts_aggregate_bool_exp_count

Fields:

  • arguments: [cloud_accounts_select_column!]
  • distinct: Boolean
  • filter: cloud_accounts_bool_exp
  • predicate: Int_comparison_exp!

cloud_accounts_aggregate_fields

aggregate fields of "cloud_accounts"

Fields:

  • avg: cloud_accounts_avg_fields
  • count: Int!
  • max: cloud_accounts_max_fields
  • min: cloud_accounts_min_fields
  • stddev: cloud_accounts_stddev_fields
  • stddev_pop: cloud_accounts_stddev_pop_fields
  • stddev_samp: cloud_accounts_stddev_samp_fields
  • sum: cloud_accounts_sum_fields
  • var_pop: cloud_accounts_var_pop_fields
  • var_samp: cloud_accounts_var_samp_fields
  • variance: cloud_accounts_variance_fields

cloud_accounts_aggregate_order_by

order by aggregate values of table "cloud_accounts"

Fields:

  • avg: cloud_accounts_avg_order_by
  • count: order_by
  • max: cloud_accounts_max_order_by
  • min: cloud_accounts_min_order_by
  • stddev: cloud_accounts_stddev_order_by
  • stddev_pop: cloud_accounts_stddev_pop_order_by
  • stddev_samp: cloud_accounts_stddev_samp_order_by
  • sum: cloud_accounts_sum_order_by
  • var_pop: cloud_accounts_var_pop_order_by
  • var_samp: cloud_accounts_var_samp_order_by
  • variance: cloud_accounts_variance_order_by

cloud_accounts_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • data: jsonb

cloud_accounts_arr_rel_insert_input

input type for inserting array relation for remote table "cloud_accounts"

Fields:

  • data: [cloud_accounts_insert_input!]!
  • on_conflict: cloud_accounts_on_conflict - upsert condition

cloud_accounts_avg_fields

aggregate avg on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_avg_order_by

order by avg() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_bool_exp

Boolean expression to filter rows from the table "cloud_accounts". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_accounts_bool_exp!]
  • _not: cloud_accounts_bool_exp
  • _or: [cloud_accounts_bool_exp!]
  • access_key: String_comparison_exp
  • access_secret: String_comparison_exp
  • access_secret_v2: String_comparison_exp
  • account_access: String_comparison_exp
  • account_env: account_env_type_enum_comparison_exp
  • account_name: String_comparison_exp
  • account_number: String_comparison_exp
  • account_purpose: String_comparison_exp
  • account_type: String_comparison_exp
  • account_url: String_comparison_exp
  • agent_access_key: String_comparison_exp
  • agent_access_secret: String_comparison_exp
  • agent_synced_at: timestamp_comparison_exp
  • agent_tasks: agent_task_bool_exp
  • agent_tasks_aggregate: agent_task_aggregate_bool_exp
  • agents: agent_bool_exp
  • agents_aggregate: agent_aggregate_bool_exp
  • assume_role: String_comparison_exp
  • billing_source: String_comparison_exp
  • budget: float8_comparison_exp
  • cloudProviderByCloudProvider: cloud_provider_type_bool_exp
  • cloud_account_attrs: cloud_account_attrs_bool_exp
  • cloud_account_attrs_aggregate: cloud_account_attrs_aggregate_bool_exp
  • cloud_account_status_type: cloud_account_status_type_bool_exp
  • cloud_account_sync_status_type: cloud_account_sync_status_type_bool_exp
  • cloud_provider: cloud_provider_type_enum_comparison_exp
  • cloud_resource_query_perves: dw_queries_bool_exp
  • cloud_resource_query_perves_aggregate: dw_queries_aggregate_bool_exp
  • cloud_resourses: cloud_resourses_bool_exp
  • cloud_resourses_aggregate: cloud_resourses_aggregate_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • data: jsonb_comparison_exp
  • etl_attempt: Int_comparison_exp
  • events: events_bool_exp
  • events_aggregate: events_aggregate_bool_exp
  • external_id: String_comparison_exp
  • id: uuid_comparison_exp
  • k8s_nodes: k8s_nodes_bool_exp
  • k8s_nodes_aggregate: k8s_nodes_aggregate_bool_exp
  • k8s_pods: k8s_pods_bool_exp
  • k8s_pods_aggregate: k8s_pods_aggregate_bool_exp
  • parent_account_id: uuid_comparison_exp
  • project_accounts: project_accounts_bool_exp
  • project_accounts_aggregate: project_accounts_aggregate_bool_exp
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • region: String_comparison_exp
  • spends: spends_bool_exp
  • spends_aggregate: spends_aggregate_bool_exp
  • start_date: timestamp_comparison_exp
  • status: cloud_account_status_type_enum_comparison_exp
  • sync_status: cloud_account_sync_status_type_enum_comparison_exp
  • sync_status_message: String_comparison_exp
  • synced_at: timestamp_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp

cloud_accounts_constraint

unique or primary key constraints on table "cloud_accounts"

Values:

  • cloud_accounts_pkey - unique or primary key constraint on columns "id"
  • cloud_accounts_tenant_account_name_key - unique or primary key constraint on columns "account_name", "tenant"

cloud_accounts_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • data: [String!]

cloud_accounts_delete_elem_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

Fields:

  • data: Int

cloud_accounts_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • data: String

cloud_accounts_inc_input

input type for incrementing numeric columns in table "cloud_accounts"

Fields:

  • budget: float8
  • etl_attempt: Int

cloud_accounts_insert_input

input type for inserting data into table "cloud_accounts"

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • account_access: String
  • account_env: account_env_type_enum
  • account_name: String
  • account_number: String
  • account_purpose: String
  • account_type: String
  • account_url: String
  • agent_access_key: String
  • agent_access_secret: String
  • agent_synced_at: timestamp
  • agent_tasks: agent_task_arr_rel_insert_input
  • agents: agent_arr_rel_insert_input
  • assume_role: String
  • billing_source: String
  • budget: float8
  • cloudProviderByCloudProvider: cloud_provider_type_obj_rel_insert_input
  • cloud_account_attrs: cloud_account_attrs_arr_rel_insert_input
  • cloud_account_status_type: cloud_account_status_type_obj_rel_insert_input
  • cloud_account_sync_status_type: cloud_account_sync_status_type_obj_rel_insert_input
  • cloud_provider: cloud_provider_type_enum
  • cloud_resource_query_perves: dw_queries_arr_rel_insert_input
  • cloud_resourses: cloud_resourses_arr_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • data: jsonb
  • etl_attempt: Int
  • events: events_arr_rel_insert_input
  • external_id: String
  • id: uuid
  • k8s_nodes: k8s_nodes_arr_rel_insert_input
  • k8s_pods: k8s_pods_arr_rel_insert_input
  • parent_account_id: uuid
  • project_accounts: project_accounts_arr_rel_insert_input
  • recommendations: recommendation_arr_rel_insert_input
  • region: String
  • spends: spends_arr_rel_insert_input
  • start_date: timestamp
  • status: cloud_account_status_type_enum
  • sync_status: cloud_account_sync_status_type_enum
  • sync_status_message: String
  • synced_at: timestamp
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input

cloud_accounts_max_fields

aggregate max on columns

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • account_access: String
  • account_name: String
  • account_number: String
  • account_purpose: String
  • account_type: String
  • account_url: String
  • agent_access_key: String
  • agent_access_secret: String
  • agent_synced_at: timestamp
  • assume_role: String
  • billing_source: String
  • budget: float8
  • created_at: timestamp
  • created_by: uuid
  • etl_attempt: Int
  • external_id: String
  • id: uuid
  • parent_account_id: uuid
  • region: String
  • start_date: timestamp
  • sync_status_message: String
  • synced_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

cloud_accounts_max_order_by

order by max() on columns of table "cloud_accounts"

Fields:

  • access_key: order_by
  • access_secret: order_by
  • access_secret_v2: order_by
  • account_access: order_by
  • account_name: order_by
  • account_number: order_by
  • account_purpose: order_by
  • account_type: order_by
  • account_url: order_by
  • agent_access_key: order_by
  • agent_access_secret: order_by
  • agent_synced_at: order_by
  • assume_role: order_by
  • billing_source: order_by
  • budget: order_by
  • created_at: order_by
  • created_by: order_by
  • etl_attempt: order_by
  • external_id: order_by
  • id: order_by
  • parent_account_id: order_by
  • region: order_by
  • start_date: order_by
  • sync_status_message: order_by
  • synced_at: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

cloud_accounts_min_fields

aggregate min on columns

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • account_access: String
  • account_name: String
  • account_number: String
  • account_purpose: String
  • account_type: String
  • account_url: String
  • agent_access_key: String
  • agent_access_secret: String
  • agent_synced_at: timestamp
  • assume_role: String
  • billing_source: String
  • budget: float8
  • created_at: timestamp
  • created_by: uuid
  • etl_attempt: Int
  • external_id: String
  • id: uuid
  • parent_account_id: uuid
  • region: String
  • start_date: timestamp
  • sync_status_message: String
  • synced_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

cloud_accounts_min_order_by

order by min() on columns of table "cloud_accounts"

Fields:

  • access_key: order_by
  • access_secret: order_by
  • access_secret_v2: order_by
  • account_access: order_by
  • account_name: order_by
  • account_number: order_by
  • account_purpose: order_by
  • account_type: order_by
  • account_url: order_by
  • agent_access_key: order_by
  • agent_access_secret: order_by
  • agent_synced_at: order_by
  • assume_role: order_by
  • billing_source: order_by
  • budget: order_by
  • created_at: order_by
  • created_by: order_by
  • etl_attempt: order_by
  • external_id: order_by
  • id: order_by
  • parent_account_id: order_by
  • region: order_by
  • start_date: order_by
  • sync_status_message: order_by
  • synced_at: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

cloud_accounts_mutation_response

response of any mutation on the table "cloud_accounts"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_accounts!]! - data from the rows affected by the mutation

cloud_accounts_obj_rel_insert_input

input type for inserting object relation for remote table "cloud_accounts"

Fields:

  • data: cloud_accounts_insert_input!
  • on_conflict: cloud_accounts_on_conflict - upsert condition

cloud_accounts_on_conflict

on_conflict condition type for table "cloud_accounts"

Fields:

  • constraint: cloud_accounts_constraint!
  • update_columns: [cloud_accounts_update_column!]!
  • where: cloud_accounts_bool_exp

cloud_accounts_order_by

Ordering options when selecting data from "cloud_accounts".

Fields:

  • access_key: order_by
  • access_secret: order_by
  • access_secret_v2: order_by
  • account_access: order_by
  • account_env: order_by
  • account_name: order_by
  • account_number: order_by
  • account_purpose: order_by
  • account_type: order_by
  • account_url: order_by
  • agent_access_key: order_by
  • agent_access_secret: order_by
  • agent_synced_at: order_by
  • agent_tasks_aggregate: agent_task_aggregate_order_by
  • agents_aggregate: agent_aggregate_order_by
  • assume_role: order_by
  • billing_source: order_by
  • budget: order_by
  • cloudProviderByCloudProvider: cloud_provider_type_order_by
  • cloud_account_attrs_aggregate: cloud_account_attrs_aggregate_order_by
  • cloud_account_status_type: cloud_account_status_type_order_by
  • cloud_account_sync_status_type: cloud_account_sync_status_type_order_by
  • cloud_provider: order_by
  • cloud_resource_query_perves_aggregate: dw_queries_aggregate_order_by
  • cloud_resourses_aggregate: cloud_resourses_aggregate_order_by
  • created_at: order_by
  • created_by: order_by
  • data: order_by
  • etl_attempt: order_by
  • events_aggregate: events_aggregate_order_by
  • external_id: order_by
  • id: order_by
  • k8s_nodes_aggregate: k8s_nodes_aggregate_order_by
  • k8s_pods_aggregate: k8s_pods_aggregate_order_by
  • parent_account_id: order_by
  • project_accounts_aggregate: project_accounts_aggregate_order_by
  • recommendations_aggregate: recommendation_aggregate_order_by
  • region: order_by
  • spends_aggregate: spends_aggregate_order_by
  • start_date: order_by
  • status: order_by
  • sync_status: order_by
  • sync_status_message: order_by
  • synced_at: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by

cloud_accounts_pk_columns_input

primary key columns input for table: cloud_accounts

Fields:

  • id: uuid!

cloud_accounts_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • data: jsonb

cloud_accounts_select_column

select columns of table "cloud_accounts"

Values:

  • access_key - column name
  • access_secret - column name
  • access_secret_v2 - column name
  • account_access - column name
  • account_env - column name
  • account_name - column name
  • account_number - column name
  • account_purpose - column name
  • account_type - column name
  • account_url - column name
  • agent_access_key - column name
  • agent_access_secret - column name
  • agent_synced_at - column name
  • assume_role - column name
  • billing_source - column name
  • budget - column name
  • cloud_provider - column name
  • created_at - column name
  • created_by - column name
  • data - column name
  • etl_attempt - column name
  • external_id - column name
  • id - column name
  • parent_account_id - column name
  • region - column name
  • start_date - column name
  • status - column name
  • sync_status - column name
  • sync_status_message - column name
  • synced_at - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

cloud_accounts_set_input

input type for updating data in table "cloud_accounts"

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • account_access: String
  • account_env: account_env_type_enum
  • account_name: String
  • account_number: String
  • account_purpose: String
  • account_type: String
  • account_url: String
  • agent_access_key: String
  • agent_access_secret: String
  • agent_synced_at: timestamp
  • assume_role: String
  • billing_source: String
  • budget: float8
  • cloud_provider: cloud_provider_type_enum
  • created_at: timestamp
  • created_by: uuid
  • data: jsonb
  • etl_attempt: Int
  • external_id: String
  • id: uuid
  • parent_account_id: uuid
  • region: String
  • start_date: timestamp
  • status: cloud_account_status_type_enum
  • sync_status: cloud_account_sync_status_type_enum
  • sync_status_message: String
  • synced_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

cloud_accounts_stddev_fields

aggregate stddev on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_stddev_order_by

order by stddev() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_stddev_pop_order_by

order by stddev_pop() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_stddev_samp_order_by

order by stddev_samp() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_stream_cursor_input

Streaming cursor of the table "cloud_accounts"

Fields:

  • initial_value: cloud_accounts_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_accounts_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • account_access: String
  • account_env: account_env_type_enum
  • account_name: String
  • account_number: String
  • account_purpose: String
  • account_type: String
  • account_url: String
  • agent_access_key: String
  • agent_access_secret: String
  • agent_synced_at: timestamp
  • assume_role: String
  • billing_source: String
  • budget: float8
  • cloud_provider: cloud_provider_type_enum
  • created_at: timestamp
  • created_by: uuid
  • data: jsonb
  • etl_attempt: Int
  • external_id: String
  • id: uuid
  • parent_account_id: uuid
  • region: String
  • start_date: timestamp
  • status: cloud_account_status_type_enum
  • sync_status: cloud_account_sync_status_type_enum
  • sync_status_message: String
  • synced_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

cloud_accounts_sum_fields

aggregate sum on columns

Fields:

  • budget: float8
  • etl_attempt: Int

cloud_accounts_sum_order_by

order by sum() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_update_column

update columns of table "cloud_accounts"

Values:

  • access_key - column name
  • access_secret - column name
  • access_secret_v2 - column name
  • account_access - column name
  • account_env - column name
  • account_name - column name
  • account_number - column name
  • account_purpose - column name
  • account_type - column name
  • account_url - column name
  • agent_access_key - column name
  • agent_access_secret - column name
  • agent_synced_at - column name
  • assume_role - column name
  • billing_source - column name
  • budget - column name
  • cloud_provider - column name
  • created_at - column name
  • created_by - column name
  • data - column name
  • etl_attempt - column name
  • external_id - column name
  • id - column name
  • parent_account_id - column name
  • region - column name
  • start_date - column name
  • status - column name
  • sync_status - column name
  • sync_status_message - column name
  • synced_at - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

cloud_accounts_var_pop_fields

aggregate var_pop on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_var_pop_order_by

order by var_pop() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_var_samp_fields

aggregate var_samp on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_var_samp_order_by

order by var_samp() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_accounts_variance_fields

aggregate variance on columns

Fields:

  • budget: Float
  • etl_attempt: Float

cloud_accounts_variance_order_by

order by variance() on columns of table "cloud_accounts"

Fields:

  • budget: order_by
  • etl_attempt: order_by

cloud_api_permission_errors_aggregate_fields

aggregate fields of "cloud_api_permission_errors"

Fields:

  • avg: cloud_api_permission_errors_avg_fields
  • count: Int!
  • max: cloud_api_permission_errors_max_fields
  • min: cloud_api_permission_errors_min_fields
  • stddev: cloud_api_permission_errors_stddev_fields
  • stddev_pop: cloud_api_permission_errors_stddev_pop_fields
  • stddev_samp: cloud_api_permission_errors_stddev_samp_fields
  • sum: cloud_api_permission_errors_sum_fields
  • var_pop: cloud_api_permission_errors_var_pop_fields
  • var_samp: cloud_api_permission_errors_var_samp_fields
  • variance: cloud_api_permission_errors_variance_fields

cloud_api_permission_errors_avg_fields

aggregate avg on columns

Fields:

  • occurrence_count: Float

cloud_api_permission_errors_bool_exp

Boolean expression to filter rows from the table "cloud_api_permission_errors". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_api_permission_errors_bool_exp!]
  • _not: cloud_api_permission_errors_bool_exp
  • _or: [cloud_api_permission_errors_bool_exp!]
  • account_number: String_comparison_exp
  • api_operation: String_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • cloud_provider: String_comparison_exp
  • error_code: String_comparison_exp
  • error_message: String_comparison_exp
  • first_seen_at: timestamptz_comparison_exp
  • id: uuid_comparison_exp
  • is_resolved: Boolean_comparison_exp
  • last_seen_at: timestamptz_comparison_exp
  • occurrence_count: Int_comparison_exp
  • region: String_comparison_exp
  • resolved_at: timestamptz_comparison_exp
  • service_name: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • wrapper_method: String_comparison_exp

cloud_api_permission_errors_constraint

unique or primary key constraints on table "cloud_api_permission_errors"

Values:

  • cloud_api_permission_errors_pkey - unique or primary key constraint on columns "id"
  • cloud_api_permission_errors_tenant_id_cloud_account_id_serv_key - unique or primary key constraint on columns "region", "service_name", "tenant_id", "error_code", "cloud_account_id", "api_operation"

cloud_api_permission_errors_inc_input

input type for incrementing numeric columns in table "cloud_api_permission_errors"

Fields:

  • occurrence_count: Int

cloud_api_permission_errors_insert_input

input type for inserting data into table "cloud_api_permission_errors"

Fields:

  • account_number: String
  • api_operation: String
  • cloud_account_id: uuid
  • cloud_provider: String
  • error_code: String
  • error_message: String
  • first_seen_at: timestamptz
  • id: uuid
  • is_resolved: Boolean
  • last_seen_at: timestamptz
  • occurrence_count: Int
  • region: String
  • resolved_at: timestamptz
  • service_name: String
  • tenant_id: uuid
  • wrapper_method: String

cloud_api_permission_errors_max_fields

aggregate max on columns

Fields:

  • account_number: String
  • api_operation: String
  • cloud_account_id: uuid
  • cloud_provider: String
  • error_code: String
  • error_message: String
  • first_seen_at: timestamptz
  • id: uuid
  • last_seen_at: timestamptz
  • occurrence_count: Int
  • region: String
  • resolved_at: timestamptz
  • service_name: String
  • tenant_id: uuid
  • wrapper_method: String

cloud_api_permission_errors_min_fields

aggregate min on columns

Fields:

  • account_number: String
  • api_operation: String
  • cloud_account_id: uuid
  • cloud_provider: String
  • error_code: String
  • error_message: String
  • first_seen_at: timestamptz
  • id: uuid
  • last_seen_at: timestamptz
  • occurrence_count: Int
  • region: String
  • resolved_at: timestamptz
  • service_name: String
  • tenant_id: uuid
  • wrapper_method: String

cloud_api_permission_errors_mutation_response

response of any mutation on the table "cloud_api_permission_errors"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_api_permission_errors!]! - data from the rows affected by the mutation

cloud_api_permission_errors_on_conflict

on_conflict condition type for table "cloud_api_permission_errors"

Fields:

  • constraint: cloud_api_permission_errors_constraint!
  • update_columns: [cloud_api_permission_errors_update_column!]!
  • where: cloud_api_permission_errors_bool_exp

cloud_api_permission_errors_order_by

Ordering options when selecting data from "cloud_api_permission_errors".

Fields:

  • account_number: order_by
  • api_operation: order_by
  • cloud_account_id: order_by
  • cloud_provider: order_by
  • error_code: order_by
  • error_message: order_by
  • first_seen_at: order_by
  • id: order_by
  • is_resolved: order_by
  • last_seen_at: order_by
  • occurrence_count: order_by
  • region: order_by
  • resolved_at: order_by
  • service_name: order_by
  • tenant_id: order_by
  • wrapper_method: order_by

cloud_api_permission_errors_pk_columns_input

primary key columns input for table: cloud_api_permission_errors

Fields:

  • id: uuid!

cloud_api_permission_errors_select_column

select columns of table "cloud_api_permission_errors"

Values:

  • account_number - column name
  • api_operation - column name
  • cloud_account_id - column name
  • cloud_provider - column name
  • error_code - column name
  • error_message - column name
  • first_seen_at - column name
  • id - column name
  • is_resolved - column name
  • last_seen_at - column name
  • occurrence_count - column name
  • region - column name
  • resolved_at - column name
  • service_name - column name
  • tenant_id - column name
  • wrapper_method - column name

cloud_api_permission_errors_set_input

input type for updating data in table "cloud_api_permission_errors"

Fields:

  • account_number: String
  • api_operation: String
  • cloud_account_id: uuid
  • cloud_provider: String
  • error_code: String
  • error_message: String
  • first_seen_at: timestamptz
  • id: uuid
  • is_resolved: Boolean
  • last_seen_at: timestamptz
  • occurrence_count: Int
  • region: String
  • resolved_at: timestamptz
  • service_name: String
  • tenant_id: uuid
  • wrapper_method: String

cloud_api_permission_errors_stddev_fields

aggregate stddev on columns

Fields:

  • occurrence_count: Float

cloud_api_permission_errors_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • occurrence_count: Float

cloud_api_permission_errors_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • occurrence_count: Float

cloud_api_permission_errors_stream_cursor_input

Streaming cursor of the table "cloud_api_permission_errors"

Fields:

  • initial_value: cloud_api_permission_errors_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_api_permission_errors_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_number: String
  • api_operation: String
  • cloud_account_id: uuid
  • cloud_provider: String
  • error_code: String
  • error_message: String
  • first_seen_at: timestamptz
  • id: uuid
  • is_resolved: Boolean
  • last_seen_at: timestamptz
  • occurrence_count: Int
  • region: String
  • resolved_at: timestamptz
  • service_name: String
  • tenant_id: uuid
  • wrapper_method: String

cloud_api_permission_errors_sum_fields

aggregate sum on columns

Fields:

  • occurrence_count: Int

cloud_api_permission_errors_update_column

update columns of table "cloud_api_permission_errors"

Values:

  • account_number - column name
  • api_operation - column name
  • cloud_account_id - column name
  • cloud_provider - column name
  • error_code - column name
  • error_message - column name
  • first_seen_at - column name
  • id - column name
  • is_resolved - column name
  • last_seen_at - column name
  • occurrence_count - column name
  • region - column name
  • resolved_at - column name
  • service_name - column name
  • tenant_id - column name
  • wrapper_method - column name

cloud_api_permission_errors_var_pop_fields

aggregate var_pop on columns

Fields:

  • occurrence_count: Float

cloud_api_permission_errors_var_samp_fields

aggregate var_samp on columns

Fields:

  • occurrence_count: Float

cloud_api_permission_errors_variance_fields

aggregate variance on columns

Fields:

  • occurrence_count: Float

cloud_provider_type_aggregate_fields

aggregate fields of "cloud_provider_type"

Fields:

  • count: Int!
  • max: cloud_provider_type_max_fields
  • min: cloud_provider_type_min_fields

cloud_provider_type_bool_exp

Boolean expression to filter rows from the table "cloud_provider_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_provider_type_bool_exp!]
  • _not: cloud_provider_type_bool_exp
  • _or: [cloud_provider_type_bool_exp!]
  • cloud_accounts: cloud_accounts_bool_exp
  • cloud_accounts_aggregate: cloud_accounts_aggregate_bool_exp
  • cloud_resourses: cloud_resourses_bool_exp
  • cloud_resourses_aggregate: cloud_resourses_aggregate_bool_exp
  • comment: String_comparison_exp
  • spends_resource_group_types: spends_resource_group_type_bool_exp
  • spends_resource_group_types_aggregate: spends_resource_group_type_aggregate_bool_exp
  • value: String_comparison_exp

cloud_provider_type_constraint

unique or primary key constraints on table "cloud_provider_type"

Values:

  • cloud_provider_pkey - unique or primary key constraint on columns "value"

cloud_provider_type_insert_input

input type for inserting data into table "cloud_provider_type"

Fields:

  • cloud_accounts: cloud_accounts_arr_rel_insert_input
  • cloud_resourses: cloud_resourses_arr_rel_insert_input
  • comment: String
  • spends_resource_group_types: spends_resource_group_type_arr_rel_insert_input
  • value: String

cloud_provider_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

cloud_provider_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

cloud_provider_type_mutation_response

response of any mutation on the table "cloud_provider_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_provider_type!]! - data from the rows affected by the mutation

cloud_provider_type_obj_rel_insert_input

input type for inserting object relation for remote table "cloud_provider_type"

Fields:

  • data: cloud_provider_type_insert_input!
  • on_conflict: cloud_provider_type_on_conflict - upsert condition

cloud_provider_type_on_conflict

on_conflict condition type for table "cloud_provider_type"

Fields:

  • constraint: cloud_provider_type_constraint!
  • update_columns: [cloud_provider_type_update_column!]!
  • where: cloud_provider_type_bool_exp

cloud_provider_type_order_by

Ordering options when selecting data from "cloud_provider_type".

Fields:

  • cloud_accounts_aggregate: cloud_accounts_aggregate_order_by
  • cloud_resourses_aggregate: cloud_resourses_aggregate_order_by
  • comment: order_by
  • spends_resource_group_types_aggregate: spends_resource_group_type_aggregate_order_by
  • value: order_by

cloud_provider_type_pk_columns_input

primary key columns input for table: cloud_provider_type

Fields:

  • value: String!

cloud_provider_type_select_column

select columns of table "cloud_provider_type"

Values:

  • comment - column name
  • value - column name

cloud_provider_type_set_input

input type for updating data in table "cloud_provider_type"

Fields:

  • comment: String
  • value: String

cloud_provider_type_stream_cursor_input

Streaming cursor of the table "cloud_provider_type"

Fields:

  • initial_value: cloud_provider_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_provider_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

cloud_provider_type_update_column

update columns of table "cloud_provider_type"

Values:

  • comment - column name
  • value - column name

cloud_resource_attributes_aggregate_bool_exp

Fields:

  • count: cloud_resource_attributes_aggregate_bool_exp_count

cloud_resource_attributes_aggregate_bool_exp_count

Fields:

  • arguments: [cloud_resource_attributes_select_column!]
  • distinct: Boolean
  • filter: cloud_resource_attributes_bool_exp
  • predicate: Int_comparison_exp!

cloud_resource_attributes_aggregate_fields

aggregate fields of "cloud_resource_attributes"

Fields:

  • count: Int!
  • max: cloud_resource_attributes_max_fields
  • min: cloud_resource_attributes_min_fields

cloud_resource_attributes_aggregate_order_by

order by aggregate values of table "cloud_resource_attributes"

Fields:

  • count: order_by
  • max: cloud_resource_attributes_max_order_by
  • min: cloud_resource_attributes_min_order_by

cloud_resource_attributes_arr_rel_insert_input

input type for inserting array relation for remote table "cloud_resource_attributes"

Fields:

  • data: [cloud_resource_attributes_insert_input!]!
  • on_conflict: cloud_resource_attributes_on_conflict - upsert condition

cloud_resource_attributes_bool_exp

Boolean expression to filter rows from the table "cloud_resource_attributes". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_resource_attributes_bool_exp!]
  • _not: cloud_resource_attributes_bool_exp
  • _or: [cloud_resource_attributes_bool_exp!]
  • account_id: uuid_comparison_exp
  • cloud_resourse: cloud_resourses_bool_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • labels: json_comparison_exp
  • last_seen_at: timestamp_comparison_exp
  • name: String_comparison_exp
  • resource_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • value: String_comparison_exp

cloud_resource_attributes_constraint

unique or primary key constraints on table "cloud_resource_attributes"

Values:

  • cloudresourceattributes_pkey - unique or primary key constraint on columns "id"
  • cloudresourceattributes_resourceid_source - unique or primary key constraint on columns "resource_id", "name"

cloud_resource_attributes_insert_input

input type for inserting data into table "cloud_resource_attributes"

Fields:

  • account_id: uuid
  • cloud_resourse: cloud_resourses_obj_rel_insert_input
  • created_at: timestamp
  • id: uuid
  • labels: json
  • last_seen_at: timestamp
  • name: String
  • resource_id: uuid
  • tenant_id: uuid
  • value: String

cloud_resource_attributes_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • last_seen_at: timestamp
  • name: String
  • resource_id: uuid
  • tenant_id: uuid
  • value: String

cloud_resource_attributes_max_order_by

order by max() on columns of table "cloud_resource_attributes"

Fields:

  • account_id: order_by
  • created_at: order_by
  • id: order_by
  • last_seen_at: order_by
  • name: order_by
  • resource_id: order_by
  • tenant_id: order_by
  • value: order_by

cloud_resource_attributes_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • last_seen_at: timestamp
  • name: String
  • resource_id: uuid
  • tenant_id: uuid
  • value: String

cloud_resource_attributes_min_order_by

order by min() on columns of table "cloud_resource_attributes"

Fields:

  • account_id: order_by
  • created_at: order_by
  • id: order_by
  • last_seen_at: order_by
  • name: order_by
  • resource_id: order_by
  • tenant_id: order_by
  • value: order_by

cloud_resource_attributes_mutation_response

response of any mutation on the table "cloud_resource_attributes"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_resource_attributes!]! - data from the rows affected by the mutation

cloud_resource_attributes_on_conflict

on_conflict condition type for table "cloud_resource_attributes"

Fields:

  • constraint: cloud_resource_attributes_constraint!
  • update_columns: [cloud_resource_attributes_update_column!]!
  • where: cloud_resource_attributes_bool_exp

cloud_resource_attributes_order_by

Ordering options when selecting data from "cloud_resource_attributes".

Fields:

  • account_id: order_by
  • cloud_resourse: cloud_resourses_order_by
  • created_at: order_by
  • id: order_by
  • labels: order_by
  • last_seen_at: order_by
  • name: order_by
  • resource_id: order_by
  • tenant_id: order_by
  • value: order_by

cloud_resource_attributes_pk_columns_input

primary key columns input for table: cloud_resource_attributes

Fields:

  • id: uuid!

cloud_resource_attributes_select_column

select columns of table "cloud_resource_attributes"

Values:

  • account_id - column name
  • created_at - column name
  • id - column name
  • labels - column name
  • last_seen_at - column name
  • name - column name
  • resource_id - column name
  • tenant_id - column name
  • value - column name

cloud_resource_attributes_set_input

input type for updating data in table "cloud_resource_attributes"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • labels: json
  • last_seen_at: timestamp
  • name: String
  • resource_id: uuid
  • tenant_id: uuid
  • value: String

cloud_resource_attributes_stream_cursor_input

Streaming cursor of the table "cloud_resource_attributes"

Fields:

  • initial_value: cloud_resource_attributes_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_resource_attributes_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • labels: json
  • last_seen_at: timestamp
  • name: String
  • resource_id: uuid
  • tenant_id: uuid
  • value: String

cloud_resource_attributes_update_column

update columns of table "cloud_resource_attributes"

Values:

  • account_id - column name
  • created_at - column name
  • id - column name
  • labels - column name
  • last_seen_at - column name
  • name - column name
  • resource_id - column name
  • tenant_id - column name
  • value - column name

cloud_resource_details_aggregate_fields

aggregate fields of "cloud_resource_details"

Fields:

  • avg: cloud_resource_details_avg_fields
  • count: Int!
  • max: cloud_resource_details_max_fields
  • min: cloud_resource_details_min_fields
  • stddev: cloud_resource_details_stddev_fields
  • stddev_pop: cloud_resource_details_stddev_pop_fields
  • stddev_samp: cloud_resource_details_stddev_samp_fields
  • sum: cloud_resource_details_sum_fields
  • var_pop: cloud_resource_details_var_pop_fields
  • var_samp: cloud_resource_details_var_samp_fields
  • variance: cloud_resource_details_variance_fields

cloud_resource_details_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • resource_capacity: jsonb
  • spot_pricing: jsonb

cloud_resource_details_avg_fields

aggregate avg on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_details_bool_exp

Boolean expression to filter rows from the table "cloud_resource_details". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_resource_details_bool_exp!]
  • _not: cloud_resource_details_bool_exp
  • _or: [cloud_resource_details_bool_exp!]
  • architecture: String_comparison_exp
  • attributes: jsonb_comparison_exp
  • cloud_provider: String_comparison_exp
  • created_at: timestamptz_comparison_exp
  • current_generation: Boolean_comparison_exp
  • database_engine: String_comparison_exp
  • deployment_option: String_comparison_exp
  • gpu_count: Int_comparison_exp
  • id: uuid_comparison_exp
  • network_performance: String_comparison_exp
  • operating_system: String_comparison_exp
  • price_unit: String_comparison_exp
  • pricing_model: String_comparison_exp
  • resource_capacity: jsonb_comparison_exp
  • resource_cost: float8_comparison_exp
  • resource_region: String_comparison_exp
  • resource_type: String_comparison_exp
  • service_name: String_comparison_exp
  • service_type: String_comparison_exp
  • spot_pricing: jsonb_comparison_exp
  • storage_type: String_comparison_exp
  • tenancy: String_comparison_exp
  • updated_at: timestamptz_comparison_exp

cloud_resource_details_constraint

unique or primary key constraints on table "cloud_resource_details"

Values:

  • cloud_resource_details_unique_key - unique or primary key constraint on columns "service_name", "resource_region", "deployment_option", "pricing_model", "cloud_provider", "resource_type", "database_engine", "service_type"
  • cloud_resource_metrics_capacity_pkey - unique or primary key constraint on columns "id"

cloud_resource_details_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]
  • resource_capacity: [String!]
  • spot_pricing: [String!]

cloud_resource_details_delete_elem_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

Fields:

  • attributes: Int
  • resource_capacity: Int
  • spot_pricing: Int

cloud_resource_details_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String
  • resource_capacity: String
  • spot_pricing: String

cloud_resource_details_inc_input

input type for incrementing numeric columns in table "cloud_resource_details"

Fields:

  • gpu_count: Int
  • resource_cost: float8

cloud_resource_details_insert_input

input type for inserting data into table "cloud_resource_details"

Fields:

  • architecture: String
  • attributes: jsonb
  • cloud_provider: String
  • created_at: timestamptz
  • current_generation: Boolean
  • database_engine: String
  • deployment_option: String
  • gpu_count: Int
  • id: uuid
  • network_performance: String
  • operating_system: String
  • price_unit: String
  • pricing_model: String
  • resource_capacity: jsonb
  • resource_cost: float8
  • resource_region: String
  • resource_type: String
  • service_name: String
  • service_type: String
  • spot_pricing: jsonb
  • storage_type: String
  • tenancy: String
  • updated_at: timestamptz

cloud_resource_details_max_fields

aggregate max on columns

Fields:

  • architecture: String
  • cloud_provider: String
  • created_at: timestamptz
  • database_engine: String
  • deployment_option: String
  • gpu_count: Int
  • id: uuid
  • network_performance: String
  • operating_system: String
  • price_unit: String
  • pricing_model: String
  • resource_cost: float8
  • resource_region: String
  • resource_type: String
  • service_name: String
  • service_type: String
  • storage_type: String
  • tenancy: String
  • updated_at: timestamptz

cloud_resource_details_min_fields

aggregate min on columns

Fields:

  • architecture: String
  • cloud_provider: String
  • created_at: timestamptz
  • database_engine: String
  • deployment_option: String
  • gpu_count: Int
  • id: uuid
  • network_performance: String
  • operating_system: String
  • price_unit: String
  • pricing_model: String
  • resource_cost: float8
  • resource_region: String
  • resource_type: String
  • service_name: String
  • service_type: String
  • storage_type: String
  • tenancy: String
  • updated_at: timestamptz

cloud_resource_details_mutation_response

response of any mutation on the table "cloud_resource_details"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_resource_details!]! - data from the rows affected by the mutation

cloud_resource_details_on_conflict

on_conflict condition type for table "cloud_resource_details"

Fields:

  • constraint: cloud_resource_details_constraint!
  • update_columns: [cloud_resource_details_update_column!]!
  • where: cloud_resource_details_bool_exp

cloud_resource_details_order_by

Ordering options when selecting data from "cloud_resource_details".

Fields:

  • architecture: order_by
  • attributes: order_by
  • cloud_provider: order_by
  • created_at: order_by
  • current_generation: order_by
  • database_engine: order_by
  • deployment_option: order_by
  • gpu_count: order_by
  • id: order_by
  • network_performance: order_by
  • operating_system: order_by
  • price_unit: order_by
  • pricing_model: order_by
  • resource_capacity: order_by
  • resource_cost: order_by
  • resource_region: order_by
  • resource_type: order_by
  • service_name: order_by
  • service_type: order_by
  • spot_pricing: order_by
  • storage_type: order_by
  • tenancy: order_by
  • updated_at: order_by

cloud_resource_details_pk_columns_input

primary key columns input for table: cloud_resource_details

Fields:

  • id: uuid!

cloud_resource_details_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • resource_capacity: jsonb
  • spot_pricing: jsonb

cloud_resource_details_select_column

select columns of table "cloud_resource_details"

Values:

  • architecture - column name
  • attributes - column name
  • cloud_provider - column name
  • created_at - column name
  • current_generation - column name
  • database_engine - column name
  • deployment_option - column name
  • gpu_count - column name
  • id - column name
  • network_performance - column name
  • operating_system - column name
  • price_unit - column name
  • pricing_model - column name
  • resource_capacity - column name
  • resource_cost - column name
  • resource_region - column name
  • resource_type - column name
  • service_name - column name
  • service_type - column name
  • spot_pricing - column name
  • storage_type - column name
  • tenancy - column name
  • updated_at - column name

cloud_resource_details_set_input

input type for updating data in table "cloud_resource_details"

Fields:

  • architecture: String
  • attributes: jsonb
  • cloud_provider: String
  • created_at: timestamptz
  • current_generation: Boolean
  • database_engine: String
  • deployment_option: String
  • gpu_count: Int
  • id: uuid
  • network_performance: String
  • operating_system: String
  • price_unit: String
  • pricing_model: String
  • resource_capacity: jsonb
  • resource_cost: float8
  • resource_region: String
  • resource_type: String
  • service_name: String
  • service_type: String
  • spot_pricing: jsonb
  • storage_type: String
  • tenancy: String
  • updated_at: timestamptz

cloud_resource_details_stddev_fields

aggregate stddev on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_details_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_details_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_details_stream_cursor_input

Streaming cursor of the table "cloud_resource_details"

Fields:

  • initial_value: cloud_resource_details_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_resource_details_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • architecture: String
  • attributes: jsonb
  • cloud_provider: String
  • created_at: timestamptz
  • current_generation: Boolean
  • database_engine: String
  • deployment_option: String
  • gpu_count: Int
  • id: uuid
  • network_performance: String
  • operating_system: String
  • price_unit: String
  • pricing_model: String
  • resource_capacity: jsonb
  • resource_cost: float8
  • resource_region: String
  • resource_type: String
  • service_name: String
  • service_type: String
  • spot_pricing: jsonb
  • storage_type: String
  • tenancy: String
  • updated_at: timestamptz

cloud_resource_details_sum_fields

aggregate sum on columns

Fields:

  • gpu_count: Int
  • resource_cost: float8

cloud_resource_details_update_column

update columns of table "cloud_resource_details"

Values:

  • architecture - column name
  • attributes - column name
  • cloud_provider - column name
  • created_at - column name
  • current_generation - column name
  • database_engine - column name
  • deployment_option - column name
  • gpu_count - column name
  • id - column name
  • network_performance - column name
  • operating_system - column name
  • price_unit - column name
  • pricing_model - column name
  • resource_capacity - column name
  • resource_cost - column name
  • resource_region - column name
  • resource_type - column name
  • service_name - column name
  • service_type - column name
  • spot_pricing - column name
  • storage_type - column name
  • tenancy - column name
  • updated_at - column name

cloud_resource_details_var_pop_fields

aggregate var_pop on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_details_var_samp_fields

aggregate var_samp on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_details_variance_fields

aggregate variance on columns

Fields:

  • gpu_count: Float
  • resource_cost: Float

cloud_resource_metrics_aggregate_bool_exp

Fields:

  • avg: cloud_resource_metrics_aggregate_bool_exp_avg
  • corr: cloud_resource_metrics_aggregate_bool_exp_corr
  • count: cloud_resource_metrics_aggregate_bool_exp_count
  • covar_samp: cloud_resource_metrics_aggregate_bool_exp_covar_samp
  • max: cloud_resource_metrics_aggregate_bool_exp_max
  • min: cloud_resource_metrics_aggregate_bool_exp_min
  • stddev_samp: cloud_resource_metrics_aggregate_bool_exp_stddev_samp
  • sum: cloud_resource_metrics_aggregate_bool_exp_sum
  • var_samp: cloud_resource_metrics_aggregate_bool_exp_var_samp

cloud_resource_metrics_aggregate_bool_exp_count

Fields:

  • arguments: [cloud_resource_metrics_select_column!]
  • distinct: Boolean
  • filter: cloud_resource_metrics_bool_exp
  • predicate: Int_comparison_exp!

cloud_resource_metrics_aggregate_fields

aggregate fields of "cloud_resource_metrics"

Fields:

  • avg: cloud_resource_metrics_avg_fields
  • count: Int!
  • max: cloud_resource_metrics_max_fields
  • min: cloud_resource_metrics_min_fields
  • stddev: cloud_resource_metrics_stddev_fields
  • stddev_pop: cloud_resource_metrics_stddev_pop_fields
  • stddev_samp: cloud_resource_metrics_stddev_samp_fields
  • sum: cloud_resource_metrics_sum_fields
  • var_pop: cloud_resource_metrics_var_pop_fields
  • var_samp: cloud_resource_metrics_var_samp_fields
  • variance: cloud_resource_metrics_variance_fields

cloud_resource_metrics_aggregate_order_by

order by aggregate values of table "cloud_resource_metrics"

Fields:

  • avg: cloud_resource_metrics_avg_order_by
  • count: order_by
  • max: cloud_resource_metrics_max_order_by
  • min: cloud_resource_metrics_min_order_by
  • stddev: cloud_resource_metrics_stddev_order_by
  • stddev_pop: cloud_resource_metrics_stddev_pop_order_by
  • stddev_samp: cloud_resource_metrics_stddev_samp_order_by
  • sum: cloud_resource_metrics_sum_order_by
  • var_pop: cloud_resource_metrics_var_pop_order_by
  • var_samp: cloud_resource_metrics_var_samp_order_by
  • variance: cloud_resource_metrics_variance_order_by

cloud_resource_metrics_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • tags: jsonb

cloud_resource_metrics_arr_rel_insert_input

input type for inserting array relation for remote table "cloud_resource_metrics"

Fields:

  • data: [cloud_resource_metrics_insert_input!]!
  • on_conflict: cloud_resource_metrics_on_conflict - upsert condition

cloud_resource_metrics_avg_fields

aggregate avg on columns

Fields:

  • value: Float

cloud_resource_metrics_avg_order_by

order by avg() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_bool_exp

Boolean expression to filter rows from the table "cloud_resource_metrics". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_resource_metrics_bool_exp!]
  • _not: cloud_resource_metrics_bool_exp
  • _or: [cloud_resource_metrics_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • cloud_resourse: cloud_resourses_bool_exp
  • id: uuid_comparison_exp
  • metric: String_comparison_exp
  • metric_type: String_comparison_exp
  • tags: jsonb_comparison_exp
  • tenant_id: uuid_comparison_exp
  • timestamp: timestamp_comparison_exp
  • value: float8_comparison_exp

cloud_resource_metrics_constraint

unique or primary key constraints on table "cloud_resource_metrics"

Values:

  • cloud_resource_metrics_cloud_resource_id_metric_timestamp_key - unique or primary key constraint on columns "cloud_resource_id", "metric", "timestamp"
  • cloud_resource_metrics_pkey - unique or primary key constraint on columns "id"

cloud_resource_metrics_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • tags: [String!]

cloud_resource_metrics_delete_elem_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

Fields:

  • tags: Int

cloud_resource_metrics_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • tags: String

cloud_resource_metrics_inc_input

input type for incrementing numeric columns in table "cloud_resource_metrics"

Fields:

  • value: float8

cloud_resource_metrics_insert_input

input type for inserting data into table "cloud_resource_metrics"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • cloud_resourse: cloud_resourses_obj_rel_insert_input
  • id: uuid
  • metric: String
  • metric_type: String
  • tags: jsonb
  • tenant_id: uuid
  • timestamp: timestamp
  • value: float8

cloud_resource_metrics_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • id: uuid
  • metric: String
  • metric_type: String
  • tenant_id: uuid
  • timestamp: timestamp
  • value: float8

cloud_resource_metrics_max_order_by

order by max() on columns of table "cloud_resource_metrics"

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • id: order_by
  • metric: order_by
  • metric_type: order_by
  • tenant_id: order_by
  • timestamp: order_by
  • value: order_by

cloud_resource_metrics_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • id: uuid
  • metric: String
  • metric_type: String
  • tenant_id: uuid
  • timestamp: timestamp
  • value: float8

cloud_resource_metrics_min_order_by

order by min() on columns of table "cloud_resource_metrics"

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • id: order_by
  • metric: order_by
  • metric_type: order_by
  • tenant_id: order_by
  • timestamp: order_by
  • value: order_by

cloud_resource_metrics_mutation_response

response of any mutation on the table "cloud_resource_metrics"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_resource_metrics!]! - data from the rows affected by the mutation

cloud_resource_metrics_on_conflict

on_conflict condition type for table "cloud_resource_metrics"

Fields:

  • constraint: cloud_resource_metrics_constraint!
  • update_columns: [cloud_resource_metrics_update_column!]!
  • where: cloud_resource_metrics_bool_exp

cloud_resource_metrics_order_by

Ordering options when selecting data from "cloud_resource_metrics".

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • cloud_resourse: cloud_resourses_order_by
  • id: order_by
  • metric: order_by
  • metric_type: order_by
  • tags: order_by
  • tenant_id: order_by
  • timestamp: order_by
  • value: order_by

cloud_resource_metrics_pk_columns_input

primary key columns input for table: cloud_resource_metrics

Fields:

  • id: uuid!

cloud_resource_metrics_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • tags: jsonb

cloud_resource_metrics_select_column

select columns of table "cloud_resource_metrics"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • id - column name
  • metric - column name
  • metric_type - column name
  • tags - column name
  • tenant_id - column name
  • timestamp - column name
  • value - column name

cloud_resource_metrics_set_input

input type for updating data in table "cloud_resource_metrics"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • id: uuid
  • metric: String
  • metric_type: String
  • tags: jsonb
  • tenant_id: uuid
  • timestamp: timestamp
  • value: float8

cloud_resource_metrics_stddev_fields

aggregate stddev on columns

Fields:

  • value: Float

cloud_resource_metrics_stddev_order_by

order by stddev() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • value: Float

cloud_resource_metrics_stddev_pop_order_by

order by stddev_pop() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • value: Float

cloud_resource_metrics_stddev_samp_order_by

order by stddev_samp() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_stream_cursor_input

Streaming cursor of the table "cloud_resource_metrics"

Fields:

  • initial_value: cloud_resource_metrics_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_resource_metrics_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • id: uuid
  • metric: String
  • metric_type: String
  • tags: jsonb
  • tenant_id: uuid
  • timestamp: timestamp
  • value: float8

cloud_resource_metrics_sum_fields

aggregate sum on columns

Fields:

  • value: float8

cloud_resource_metrics_sum_order_by

order by sum() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_update_column

update columns of table "cloud_resource_metrics"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • id - column name
  • metric - column name
  • metric_type - column name
  • tags - column name
  • tenant_id - column name
  • timestamp - column name
  • value - column name

cloud_resource_metrics_var_pop_fields

aggregate var_pop on columns

Fields:

  • value: Float

cloud_resource_metrics_var_pop_order_by

order by var_pop() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_var_samp_fields

aggregate var_samp on columns

Fields:

  • value: Float

cloud_resource_metrics_var_samp_order_by

order by var_samp() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_metrics_variance_fields

aggregate variance on columns

Fields:

  • value: Float

cloud_resource_metrics_variance_order_by

order by variance() on columns of table "cloud_resource_metrics"

Fields:

  • value: order_by

cloud_resource_status_type_aggregate_fields

aggregate fields of "cloud_resource_status_type"

Fields:

  • count: Int!
  • max: cloud_resource_status_type_max_fields
  • min: cloud_resource_status_type_min_fields

cloud_resource_status_type_bool_exp

Boolean expression to filter rows from the table "cloud_resource_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_resource_status_type_bool_exp!]
  • _not: cloud_resource_status_type_bool_exp
  • _or: [cloud_resource_status_type_bool_exp!]
  • cloud_resourses: cloud_resourses_bool_exp
  • cloud_resourses_aggregate: cloud_resourses_aggregate_bool_exp
  • value: String_comparison_exp

cloud_resource_status_type_constraint

unique or primary key constraints on table "cloud_resource_status_type"

Values:

  • cloud_resource_status_type_pkey - unique or primary key constraint on columns "value"

cloud_resource_status_type_insert_input

input type for inserting data into table "cloud_resource_status_type"

Fields:

  • cloud_resourses: cloud_resourses_arr_rel_insert_input
  • value: String

cloud_resource_status_type_max_fields

aggregate max on columns

Fields:

  • value: String

cloud_resource_status_type_min_fields

aggregate min on columns

Fields:

  • value: String

cloud_resource_status_type_mutation_response

response of any mutation on the table "cloud_resource_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_resource_status_type!]! - data from the rows affected by the mutation

cloud_resource_status_type_obj_rel_insert_input

input type for inserting object relation for remote table "cloud_resource_status_type"

Fields:

  • data: cloud_resource_status_type_insert_input!
  • on_conflict: cloud_resource_status_type_on_conflict - upsert condition

cloud_resource_status_type_on_conflict

on_conflict condition type for table "cloud_resource_status_type"

Fields:

  • constraint: cloud_resource_status_type_constraint!
  • update_columns: [cloud_resource_status_type_update_column!]!
  • where: cloud_resource_status_type_bool_exp

cloud_resource_status_type_order_by

Ordering options when selecting data from "cloud_resource_status_type".

Fields:

  • cloud_resourses_aggregate: cloud_resourses_aggregate_order_by
  • value: order_by

cloud_resource_status_type_pk_columns_input

primary key columns input for table: cloud_resource_status_type

Fields:

  • value: String!

cloud_resource_status_type_select_column

select columns of table "cloud_resource_status_type"

Values:

  • value - column name

cloud_resource_status_type_set_input

input type for updating data in table "cloud_resource_status_type"

Fields:

  • value: String

cloud_resource_status_type_stream_cursor_input

Streaming cursor of the table "cloud_resource_status_type"

Fields:

  • initial_value: cloud_resource_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_resource_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

cloud_resource_status_type_update_column

update columns of table "cloud_resource_status_type"

Values:

  • value - column name

cloud_resource_v2_bool_exp_bool_exp

Boolean expression to filter rows from the logical model for "cloud_resource_v2". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_resource_v2_bool_exp_bool_exp!]
  • _not: cloud_resource_v2_bool_exp_bool_exp
  • _or: [cloud_resource_v2_bool_exp_bool_exp!]
  • account: uuid_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • recommendations: json_comparison_exp
  • region: String_comparison_exp
  • resourse_created_on: timestamp_comparison_exp
  • resourse_id: String_comparison_exp
  • service_name: String_comparison_exp
  • spend_amount: float8_comparison_exp
  • status: String_comparison_exp
  • tenant: uuid_comparison_exp
  • type: String_comparison_exp

cloud_resource_v2_order_by

Ordering options when selecting data from "cloud_resource_v2".

Fields:

  • account: order_by
  • id: order_by
  • name: order_by
  • recommendations: order_by
  • region: order_by
  • resourse_created_on: order_by
  • resourse_id: order_by
  • service_name: order_by
  • spend_amount: order_by
  • status: order_by
  • tenant: order_by
  • type: order_by

cloud_resourses_aggregate_bool_exp

Fields:

  • bool_and: cloud_resourses_aggregate_bool_exp_bool_and
  • bool_or: cloud_resourses_aggregate_bool_exp_bool_or
  • count: cloud_resourses_aggregate_bool_exp_count

cloud_resourses_aggregate_bool_exp_count

Fields:

  • arguments: [cloud_resourses_select_column!]
  • distinct: Boolean
  • filter: cloud_resourses_bool_exp
  • predicate: Int_comparison_exp!

cloud_resourses_aggregate_fields

aggregate fields of "cloud_resourses"

Fields:

  • count: Int!
  • max: cloud_resourses_max_fields
  • min: cloud_resourses_min_fields

cloud_resourses_aggregate_order_by

order by aggregate values of table "cloud_resourses"

Fields:

  • count: order_by
  • max: cloud_resourses_max_order_by
  • min: cloud_resourses_min_order_by

cloud_resourses_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • meta: jsonb
  • tags: jsonb

cloud_resourses_arr_rel_insert_input

input type for inserting array relation for remote table "cloud_resourses"

Fields:

  • data: [cloud_resourses_insert_input!]!
  • on_conflict: cloud_resourses_on_conflict - upsert condition

cloud_resourses_bool_exp

Boolean expression to filter rows from the table "cloud_resourses". All fields are combined with a logical 'AND'.

Fields:

  • _and: [cloud_resourses_bool_exp!]
  • _not: cloud_resourses_bool_exp
  • _or: [cloud_resourses_bool_exp!]
  • account: uuid_comparison_exp
  • arn: String_comparison_exp
  • cloudProviderByCloudProvider: cloud_provider_type_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • cloud_provider: cloud_provider_type_enum_comparison_exp
  • cloud_resource_attributes: cloud_resource_attributes_bool_exp
  • cloud_resource_attributes_aggregate: cloud_resource_attributes_aggregate_bool_exp
  • cloud_resource_metrics: cloud_resource_metrics_bool_exp
  • cloud_resource_metrics_aggregate: cloud_resource_metrics_aggregate_bool_exp
  • cloud_resource_status_type: cloud_resource_status_type_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • external_resource_id: String_comparison_exp
  • first_seen: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • is_active: Boolean_comparison_exp
  • last_seen: timestamp_comparison_exp
  • meta: jsonb_comparison_exp
  • name: String_comparison_exp
  • project_cloud_resources: project_cloud_resources_bool_exp
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate_bool_exp
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • region: String_comparison_exp
  • resourse_created_on: timestamp_comparison_exp
  • resourse_id: String_comparison_exp
  • service_name: String_comparison_exp
  • spends: spends_bool_exp
  • spends_aggregate: spends_aggregate_bool_exp
  • status: cloud_resource_status_type_enum_comparison_exp
  • tags: jsonb_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • type: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp

cloud_resourses_constraint

unique or primary key constraints on table "cloud_resourses"

Values:

  • cloud_resourses_account_external_resource_id_key - unique or primary key constraint on columns "account", "external_resource_id"
  • cloud_resourses_account_resourse_service_type_region_key - unique or primary key constraint on columns "region", "service_name", "account", "type", "resourse_id"
  • cloud_resourses_pkey - unique or primary key constraint on columns "id"

cloud_resourses_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • meta: [String!]
  • tags: [String!]

cloud_resourses_delete_elem_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

Fields:

  • meta: Int
  • tags: Int

cloud_resourses_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • meta: String
  • tags: String

cloud_resourses_insert_input

input type for inserting data into table "cloud_resourses"

Fields:

  • account: uuid
  • arn: String
  • cloudProviderByCloudProvider: cloud_provider_type_obj_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_provider: cloud_provider_type_enum
  • cloud_resource_attributes: cloud_resource_attributes_arr_rel_insert_input
  • cloud_resource_metrics: cloud_resource_metrics_arr_rel_insert_input
  • cloud_resource_status_type: cloud_resource_status_type_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • external_resource_id: String
  • first_seen: timestamp
  • id: uuid
  • is_active: Boolean
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • project_cloud_resources: project_cloud_resources_arr_rel_insert_input
  • recommendations: recommendation_arr_rel_insert_input
  • region: String
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • spends: spends_arr_rel_insert_input
  • status: cloud_resource_status_type_enum
  • tags: jsonb
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input

cloud_resourses_max_fields

aggregate max on columns

Fields:

  • account: uuid
  • arn: String
  • created_at: timestamp
  • created_by: uuid
  • external_resource_id: String
  • first_seen: timestamp
  • id: uuid
  • last_seen: timestamp
  • name: String
  • region: String
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

cloud_resourses_max_order_by

order by max() on columns of table "cloud_resourses"

Fields:

  • account: order_by
  • arn: order_by
  • created_at: order_by
  • created_by: order_by
  • external_resource_id: order_by
  • first_seen: order_by
  • id: order_by
  • last_seen: order_by
  • name: order_by
  • region: order_by
  • resourse_created_on: order_by
  • resourse_id: order_by
  • service_name: order_by
  • tenant: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by

cloud_resourses_min_fields

aggregate min on columns

Fields:

  • account: uuid
  • arn: String
  • created_at: timestamp
  • created_by: uuid
  • external_resource_id: String
  • first_seen: timestamp
  • id: uuid
  • last_seen: timestamp
  • name: String
  • region: String
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

cloud_resourses_min_order_by

order by min() on columns of table "cloud_resourses"

Fields:

  • account: order_by
  • arn: order_by
  • created_at: order_by
  • created_by: order_by
  • external_resource_id: order_by
  • first_seen: order_by
  • id: order_by
  • last_seen: order_by
  • name: order_by
  • region: order_by
  • resourse_created_on: order_by
  • resourse_id: order_by
  • service_name: order_by
  • tenant: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by

cloud_resourses_mutation_response

response of any mutation on the table "cloud_resourses"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [cloud_resourses!]! - data from the rows affected by the mutation

cloud_resourses_obj_rel_insert_input

input type for inserting object relation for remote table "cloud_resourses"

Fields:

  • data: cloud_resourses_insert_input!
  • on_conflict: cloud_resourses_on_conflict - upsert condition

cloud_resourses_on_conflict

on_conflict condition type for table "cloud_resourses"

Fields:

  • constraint: cloud_resourses_constraint!
  • update_columns: [cloud_resourses_update_column!]!
  • where: cloud_resourses_bool_exp

cloud_resourses_order_by

Ordering options when selecting data from "cloud_resourses".

Fields:

  • account: order_by
  • arn: order_by
  • cloudProviderByCloudProvider: cloud_provider_type_order_by
  • cloud_account: cloud_accounts_order_by
  • cloud_provider: order_by
  • cloud_resource_attributes_aggregate: cloud_resource_attributes_aggregate_order_by
  • cloud_resource_metrics_aggregate: cloud_resource_metrics_aggregate_order_by
  • cloud_resource_status_type: cloud_resource_status_type_order_by
  • created_at: order_by
  • created_by: order_by
  • external_resource_id: order_by
  • first_seen: order_by
  • id: order_by
  • is_active: order_by
  • last_seen: order_by
  • meta: order_by
  • name: order_by
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate_order_by
  • recommendations_aggregate: recommendation_aggregate_order_by
  • region: order_by
  • resourse_created_on: order_by
  • resourse_id: order_by
  • service_name: order_by
  • spends_aggregate: spends_aggregate_order_by
  • status: order_by
  • tags: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by

cloud_resourses_pk_columns_input

primary key columns input for table: cloud_resourses

Fields:

  • id: uuid!

cloud_resourses_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • meta: jsonb
  • tags: jsonb

cloud_resourses_select_column

select columns of table "cloud_resourses"

Values:

  • account - column name
  • arn - column name
  • cloud_provider - column name
  • created_at - column name
  • created_by - column name
  • external_resource_id - column name
  • first_seen - column name
  • id - column name
  • is_active - column name
  • last_seen - column name
  • meta - column name
  • name - column name
  • region - column name
  • resourse_created_on - column name
  • resourse_id - column name
  • service_name - column name
  • status - column name
  • tags - column name
  • tenant - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

cloud_resourses_set_input

input type for updating data in table "cloud_resourses"

Fields:

  • account: uuid
  • arn: String
  • cloud_provider: cloud_provider_type_enum
  • created_at: timestamp
  • created_by: uuid
  • external_resource_id: String
  • first_seen: timestamp
  • id: uuid
  • is_active: Boolean
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • region: String
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • status: cloud_resource_status_type_enum
  • tags: jsonb
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

cloud_resourses_stream_cursor_input

Streaming cursor of the table "cloud_resourses"

Fields:

  • initial_value: cloud_resourses_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

cloud_resourses_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account: uuid
  • arn: String
  • cloud_provider: cloud_provider_type_enum
  • created_at: timestamp
  • created_by: uuid
  • external_resource_id: String
  • first_seen: timestamp
  • id: uuid
  • is_active: Boolean
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • region: String
  • resourse_created_on: timestamp
  • resourse_id: String
  • service_name: String
  • status: cloud_resource_status_type_enum
  • tags: jsonb
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

cloud_resourses_update_column

update columns of table "cloud_resourses"

Values:

  • account - column name
  • arn - column name
  • cloud_provider - column name
  • created_at - column name
  • created_by - column name
  • external_resource_id - column name
  • first_seen - column name
  • id - column name
  • is_active - column name
  • last_seen - column name
  • meta - column name
  • name - column name
  • region - column name
  • resourse_created_on - column name
  • resourse_id - column name
  • service_name - column name
  • status - column name
  • tags - column name
  • tenant - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name
Kubernetes (139 types)

k8s_account_resource_usage_aggregate_fields

aggregate fields of "k8s_account_resource_usage"

Fields:

  • avg: k8s_account_resource_usage_avg_fields
  • count: Int!
  • max: k8s_account_resource_usage_max_fields
  • min: k8s_account_resource_usage_min_fields
  • stddev: k8s_account_resource_usage_stddev_fields
  • stddev_pop: k8s_account_resource_usage_stddev_pop_fields
  • stddev_samp: k8s_account_resource_usage_stddev_samp_fields
  • sum: k8s_account_resource_usage_sum_fields
  • var_pop: k8s_account_resource_usage_var_pop_fields
  • var_samp: k8s_account_resource_usage_var_samp_fields
  • variance: k8s_account_resource_usage_variance_fields

k8s_account_resource_usage_avg_fields

aggregate avg on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_account_resource_usage_bool_exp

Boolean expression to filter rows from the table "k8s_account_resource_usage". All fields are combined with a logical 'AND'.

Fields:

  • _and: [k8s_account_resource_usage_bool_exp!]
  • _not: k8s_account_resource_usage_bool_exp
  • _or: [k8s_account_resource_usage_bool_exp!]
  • avg_cpu_request: float8_comparison_exp
  • avg_cpu_usage: float8_comparison_exp
  • avg_egress: float8_comparison_exp
  • avg_ingress: float8_comparison_exp
  • avg_mem_request: float8_comparison_exp
  • avg_mem_usage: float8_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp

k8s_account_resource_usage_max_fields

aggregate max on columns

Fields:

  • avg_cpu_request: float8
  • avg_cpu_usage: float8
  • avg_egress: float8
  • avg_ingress: float8
  • avg_mem_request: float8
  • avg_mem_usage: float8
  • cloud_account_id: uuid
  • tenant_id: uuid

k8s_account_resource_usage_min_fields

aggregate min on columns

Fields:

  • avg_cpu_request: float8
  • avg_cpu_usage: float8
  • avg_egress: float8
  • avg_ingress: float8
  • avg_mem_request: float8
  • avg_mem_usage: float8
  • cloud_account_id: uuid
  • tenant_id: uuid

k8s_account_resource_usage_order_by

Ordering options when selecting data from "k8s_account_resource_usage".

Fields:

  • avg_cpu_request: order_by
  • avg_cpu_usage: order_by
  • avg_egress: order_by
  • avg_ingress: order_by
  • avg_mem_request: order_by
  • avg_mem_usage: order_by
  • cloud_account_id: order_by
  • tenant_id: order_by

k8s_account_resource_usage_select_column

select columns of table "k8s_account_resource_usage"

Values:

  • avg_cpu_request - column name
  • avg_cpu_usage - column name
  • avg_egress - column name
  • avg_ingress - column name
  • avg_mem_request - column name
  • avg_mem_usage - column name
  • cloud_account_id - column name
  • tenant_id - column name

k8s_account_resource_usage_stddev_fields

aggregate stddev on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_account_resource_usage_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_account_resource_usage_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_account_resource_usage_stream_cursor_input

Streaming cursor of the table "k8s_account_resource_usage"

Fields:

  • initial_value: k8s_account_resource_usage_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

k8s_account_resource_usage_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • avg_cpu_request: float8
  • avg_cpu_usage: float8
  • avg_egress: float8
  • avg_ingress: float8
  • avg_mem_request: float8
  • avg_mem_usage: float8
  • cloud_account_id: uuid
  • tenant_id: uuid

k8s_account_resource_usage_sum_fields

aggregate sum on columns

Fields:

  • avg_cpu_request: float8
  • avg_cpu_usage: float8
  • avg_egress: float8
  • avg_ingress: float8
  • avg_mem_request: float8
  • avg_mem_usage: float8

k8s_account_resource_usage_var_pop_fields

aggregate var_pop on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_account_resource_usage_var_samp_fields

aggregate var_samp on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_account_resource_usage_variance_fields

aggregate variance on columns

Fields:

  • avg_cpu_request: Float
  • avg_cpu_usage: Float
  • avg_egress: Float
  • avg_ingress: Float
  • avg_mem_request: Float
  • avg_mem_usage: Float

k8s_namespaces_aggregate_fields

aggregate fields of "k8s_namespaces"

Fields:

  • avg: k8s_namespaces_avg_fields
  • count: Int!
  • max: k8s_namespaces_max_fields
  • min: k8s_namespaces_min_fields
  • stddev: k8s_namespaces_stddev_fields
  • stddev_pop: k8s_namespaces_stddev_pop_fields
  • stddev_samp: k8s_namespaces_stddev_samp_fields
  • sum: k8s_namespaces_sum_fields
  • var_pop: k8s_namespaces_var_pop_fields
  • var_samp: k8s_namespaces_var_samp_fields
  • variance: k8s_namespaces_variance_fields

k8s_namespaces_avg_fields

aggregate avg on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_namespaces_bool_exp

Boolean expression to filter rows from the table "k8s_namespaces". All fields are combined with a logical 'AND'.

Fields:

  • _and: [k8s_namespaces_bool_exp!]
  • _not: k8s_namespaces_bool_exp
  • _or: [k8s_namespaces_bool_exp!]
  • cloud_account_id: String_comparison_exp
  • creation_time: timestamp_comparison_exp
  • is_active: Boolean_comparison_exp
  • name: String_comparison_exp
  • pod_count: Int_comparison_exp
  • tenant_id: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • workload_count: Int_comparison_exp

k8s_namespaces_constraint

unique or primary key constraints on table "k8s_namespaces"

Values:

  • k8s_namespace_pkey - unique or primary key constraint on columns "tenant_id", "cloud_account_id", "name"

k8s_namespaces_inc_input

input type for incrementing numeric columns in table "k8s_namespaces"

Fields:

  • pod_count: Int
  • workload_count: Int

k8s_namespaces_insert_input

input type for inserting data into table "k8s_namespaces"

Fields:

  • cloud_account_id: String
  • creation_time: timestamp
  • is_active: Boolean
  • name: String
  • pod_count: Int
  • tenant_id: String
  • updated_at: timestamp
  • workload_count: Int

k8s_namespaces_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: String
  • creation_time: timestamp
  • name: String
  • pod_count: Int
  • tenant_id: String
  • updated_at: timestamp
  • workload_count: Int

k8s_namespaces_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: String
  • creation_time: timestamp
  • name: String
  • pod_count: Int
  • tenant_id: String
  • updated_at: timestamp
  • workload_count: Int

k8s_namespaces_mutation_response

response of any mutation on the table "k8s_namespaces"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [k8s_namespaces!]! - data from the rows affected by the mutation

k8s_namespaces_on_conflict

on_conflict condition type for table "k8s_namespaces"

Fields:

  • constraint: k8s_namespaces_constraint!
  • update_columns: [k8s_namespaces_update_column!]!
  • where: k8s_namespaces_bool_exp

k8s_namespaces_order_by

Ordering options when selecting data from "k8s_namespaces".

Fields:

  • cloud_account_id: order_by
  • creation_time: order_by
  • is_active: order_by
  • name: order_by
  • pod_count: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • workload_count: order_by

k8s_namespaces_pk_columns_input

primary key columns input for table: k8s_namespaces

Fields:

  • cloud_account_id: String!
  • name: String!
  • tenant_id: String!

k8s_namespaces_select_column

select columns of table "k8s_namespaces"

Values:

  • cloud_account_id - column name
  • creation_time - column name
  • is_active - column name
  • name - column name
  • pod_count - column name
  • tenant_id - column name
  • updated_at - column name
  • workload_count - column name

k8s_namespaces_set_input

input type for updating data in table "k8s_namespaces"

Fields:

  • cloud_account_id: String
  • creation_time: timestamp
  • is_active: Boolean
  • name: String
  • pod_count: Int
  • tenant_id: String
  • updated_at: timestamp
  • workload_count: Int

k8s_namespaces_stddev_fields

aggregate stddev on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_namespaces_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_namespaces_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_namespaces_stream_cursor_input

Streaming cursor of the table "k8s_namespaces"

Fields:

  • initial_value: k8s_namespaces_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

k8s_namespaces_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: String
  • creation_time: timestamp
  • is_active: Boolean
  • name: String
  • pod_count: Int
  • tenant_id: String
  • updated_at: timestamp
  • workload_count: Int

k8s_namespaces_sum_fields

aggregate sum on columns

Fields:

  • pod_count: Int
  • workload_count: Int

k8s_namespaces_update_column

update columns of table "k8s_namespaces"

Values:

  • cloud_account_id - column name
  • creation_time - column name
  • is_active - column name
  • name - column name
  • pod_count - column name
  • tenant_id - column name
  • updated_at - column name
  • workload_count - column name

k8s_namespaces_var_pop_fields

aggregate var_pop on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_namespaces_var_samp_fields

aggregate var_samp on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_namespaces_variance_fields

aggregate variance on columns

Fields:

  • pod_count: Float
  • workload_count: Float

k8s_nodes_aggregate_bool_exp

Fields:

  • avg: k8s_nodes_aggregate_bool_exp_avg
  • bool_and: k8s_nodes_aggregate_bool_exp_bool_and
  • bool_or: k8s_nodes_aggregate_bool_exp_bool_or
  • corr: k8s_nodes_aggregate_bool_exp_corr
  • count: k8s_nodes_aggregate_bool_exp_count
  • covar_samp: k8s_nodes_aggregate_bool_exp_covar_samp
  • max: k8s_nodes_aggregate_bool_exp_max
  • min: k8s_nodes_aggregate_bool_exp_min
  • stddev_samp: k8s_nodes_aggregate_bool_exp_stddev_samp
  • sum: k8s_nodes_aggregate_bool_exp_sum
  • var_samp: k8s_nodes_aggregate_bool_exp_var_samp

k8s_nodes_aggregate_bool_exp_count

Fields:

  • arguments: [k8s_nodes_select_column!]
  • distinct: Boolean
  • filter: k8s_nodes_bool_exp
  • predicate: Int_comparison_exp!

k8s_nodes_aggregate_fields

aggregate fields of "k8s_nodes"

Fields:

  • avg: k8s_nodes_avg_fields
  • count: Int!
  • max: k8s_nodes_max_fields
  • min: k8s_nodes_min_fields
  • stddev: k8s_nodes_stddev_fields
  • stddev_pop: k8s_nodes_stddev_pop_fields
  • stddev_samp: k8s_nodes_stddev_samp_fields
  • sum: k8s_nodes_sum_fields
  • var_pop: k8s_nodes_var_pop_fields
  • var_samp: k8s_nodes_var_samp_fields
  • variance: k8s_nodes_variance_fields

k8s_nodes_aggregate_order_by

order by aggregate values of table "k8s_nodes"

Fields:

  • avg: k8s_nodes_avg_order_by
  • count: order_by
  • max: k8s_nodes_max_order_by
  • min: k8s_nodes_min_order_by
  • stddev: k8s_nodes_stddev_order_by
  • stddev_pop: k8s_nodes_stddev_pop_order_by
  • stddev_samp: k8s_nodes_stddev_samp_order_by
  • sum: k8s_nodes_sum_order_by
  • var_pop: k8s_nodes_var_pop_order_by
  • var_samp: k8s_nodes_var_samp_order_by
  • variance: k8s_nodes_variance_order_by

k8s_nodes_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • meta: jsonb

k8s_nodes_arr_rel_insert_input

input type for inserting array relation for remote table "k8s_nodes"

Fields:

  • data: [k8s_nodes_insert_input!]!
  • on_conflict: k8s_nodes_on_conflict - upsert condition

k8s_nodes_avg_fields

aggregate avg on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_avg_order_by

order by avg() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_bool_exp

Boolean expression to filter rows from the table "k8s_nodes". All fields are combined with a logical 'AND'.

Fields:

  • _and: [k8s_nodes_bool_exp!]
  • _not: k8s_nodes_bool_exp
  • _or: [k8s_nodes_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • conditions: String_comparison_exp
  • cost: float8_comparison_exp
  • cpu_allocatable: float8_comparison_exp
  • cpu_capacity: float8_comparison_exp
  • cpu_limits: float8_comparison_exp
  • external_ip: String_comparison_exp
  • internal_ip: String_comparison_exp
  • is_active: Boolean_comparison_exp
  • labels: jsonb_comparison_exp
  • memory_allocatable: Int_comparison_exp
  • memory_capacity: Int_comparison_exp
  • memory_limits: Int_comparison_exp
  • meta: jsonb_comparison_exp
  • name: String_comparison_exp
  • node_creation_time: timestamp_comparison_exp
  • node_flavor: String_comparison_exp
  • node_region: String_comparison_exp
  • node_type: String_comparison_exp
  • node_zone: String_comparison_exp
  • taints: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

k8s_nodes_constraint

unique or primary key constraints on table "k8s_nodes"

Values:

  • k8s_nodes_pkey - unique or primary key constraint on columns "tenant_id", "cloud_account_id", "cloud_resource_id"

k8s_nodes_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • labels: [String!]
  • meta: [String!]

k8s_nodes_delete_elem_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

Fields:

  • labels: Int
  • meta: Int

k8s_nodes_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • labels: String
  • meta: String

k8s_nodes_inc_input

input type for incrementing numeric columns in table "k8s_nodes"

Fields:

  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int

k8s_nodes_insert_input

input type for inserting data into table "k8s_nodes"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • conditions: String
  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • external_ip: String
  • internal_ip: String
  • is_active: Boolean
  • labels: jsonb
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int
  • meta: jsonb
  • name: String
  • node_creation_time: timestamp
  • node_flavor: String
  • node_region: String
  • node_type: String
  • node_zone: String
  • taints: String
  • tenant_id: uuid
  • updated_at: timestamp

k8s_nodes_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • conditions: String
  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • external_ip: String
  • internal_ip: String
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int
  • name: String
  • node_creation_time: timestamp
  • node_flavor: String
  • node_region: String
  • node_type: String
  • node_zone: String
  • taints: String
  • tenant_id: uuid
  • updated_at: timestamp

k8s_nodes_max_order_by

order by max() on columns of table "k8s_nodes"

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • conditions: order_by
  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • external_ip: order_by
  • internal_ip: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by
  • name: order_by
  • node_creation_time: order_by
  • node_flavor: order_by
  • node_region: order_by
  • node_type: order_by
  • node_zone: order_by
  • taints: order_by
  • tenant_id: order_by
  • updated_at: order_by

k8s_nodes_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • conditions: String
  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • external_ip: String
  • internal_ip: String
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int
  • name: String
  • node_creation_time: timestamp
  • node_flavor: String
  • node_region: String
  • node_type: String
  • node_zone: String
  • taints: String
  • tenant_id: uuid
  • updated_at: timestamp

k8s_nodes_min_order_by

order by min() on columns of table "k8s_nodes"

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • conditions: order_by
  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • external_ip: order_by
  • internal_ip: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by
  • name: order_by
  • node_creation_time: order_by
  • node_flavor: order_by
  • node_region: order_by
  • node_type: order_by
  • node_zone: order_by
  • taints: order_by
  • tenant_id: order_by
  • updated_at: order_by

k8s_nodes_mutation_response

response of any mutation on the table "k8s_nodes"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [k8s_nodes!]! - data from the rows affected by the mutation

k8s_nodes_on_conflict

on_conflict condition type for table "k8s_nodes"

Fields:

  • constraint: k8s_nodes_constraint!
  • update_columns: [k8s_nodes_update_column!]!
  • where: k8s_nodes_bool_exp

k8s_nodes_order_by

Ordering options when selecting data from "k8s_nodes".

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • conditions: order_by
  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • external_ip: order_by
  • internal_ip: order_by
  • is_active: order_by
  • labels: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by
  • meta: order_by
  • name: order_by
  • node_creation_time: order_by
  • node_flavor: order_by
  • node_region: order_by
  • node_type: order_by
  • node_zone: order_by
  • taints: order_by
  • tenant_id: order_by
  • updated_at: order_by

k8s_nodes_pk_columns_input

primary key columns input for table: k8s_nodes

Fields:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

k8s_nodes_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • meta: jsonb

k8s_nodes_select_column

select columns of table "k8s_nodes"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • conditions - column name
  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
  • external_ip - column name
  • internal_ip - column name
  • is_active - column name
  • labels - column name
  • memory_allocatable - column name
  • memory_capacity - column name
  • memory_limits - column name
  • meta - column name
  • name - column name
  • node_creation_time - column name
  • node_flavor - column name
  • node_region - column name
  • node_type - column name
  • node_zone - column name
  • taints - column name
  • tenant_id - column name
  • updated_at - column name

k8s_nodes_set_input

input type for updating data in table "k8s_nodes"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • conditions: String
  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • external_ip: String
  • internal_ip: String
  • is_active: Boolean
  • labels: jsonb
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int
  • meta: jsonb
  • name: String
  • node_creation_time: timestamp
  • node_flavor: String
  • node_region: String
  • node_type: String
  • node_zone: String
  • taints: String
  • tenant_id: uuid
  • updated_at: timestamp

k8s_nodes_stddev_fields

aggregate stddev on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_stddev_order_by

order by stddev() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_stddev_pop_order_by

order by stddev_pop() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_stddev_samp_order_by

order by stddev_samp() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_stream_cursor_input

Streaming cursor of the table "k8s_nodes"

Fields:

  • initial_value: k8s_nodes_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

k8s_nodes_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • conditions: String
  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • external_ip: String
  • internal_ip: String
  • is_active: Boolean
  • labels: jsonb
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int
  • meta: jsonb
  • name: String
  • node_creation_time: timestamp
  • node_flavor: String
  • node_region: String
  • node_type: String
  • node_zone: String
  • taints: String
  • tenant_id: uuid
  • updated_at: timestamp

k8s_nodes_sum_fields

aggregate sum on columns

Fields:

  • cost: float8
  • cpu_allocatable: float8
  • cpu_capacity: float8
  • cpu_limits: float8
  • memory_allocatable: Int
  • memory_capacity: Int
  • memory_limits: Int

k8s_nodes_sum_order_by

order by sum() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_update_column

update columns of table "k8s_nodes"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • conditions - column name
  • cost - column name
  • cpu_allocatable - column name
  • cpu_capacity - column name
  • cpu_limits - column name
  • external_ip - column name
  • internal_ip - column name
  • is_active - column name
  • labels - column name
  • memory_allocatable - column name
  • memory_capacity - column name
  • memory_limits - column name
  • meta - column name
  • name - column name
  • node_creation_time - column name
  • node_flavor - column name
  • node_region - column name
  • node_type - column name
  • node_zone - column name
  • taints - column name
  • tenant_id - column name
  • updated_at - column name

k8s_nodes_var_pop_fields

aggregate var_pop on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_var_pop_order_by

order by var_pop() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_var_samp_fields

aggregate var_samp on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_var_samp_order_by

order by var_samp() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_nodes_variance_fields

aggregate variance on columns

Fields:

  • cost: Float
  • cpu_allocatable: Float
  • cpu_capacity: Float
  • cpu_limits: Float
  • memory_allocatable: Float
  • memory_capacity: Float
  • memory_limits: Float

k8s_nodes_variance_order_by

order by variance() on columns of table "k8s_nodes"

Fields:

  • cost: order_by
  • cpu_allocatable: order_by
  • cpu_capacity: order_by
  • cpu_limits: order_by
  • memory_allocatable: order_by
  • memory_capacity: order_by
  • memory_limits: order_by

k8s_pods_aggregate_bool_exp

Fields:

  • bool_and: k8s_pods_aggregate_bool_exp_bool_and
  • bool_or: k8s_pods_aggregate_bool_exp_bool_or
  • count: k8s_pods_aggregate_bool_exp_count

k8s_pods_aggregate_bool_exp_count

Fields:

  • arguments: [k8s_pods_select_column!]
  • distinct: Boolean
  • filter: k8s_pods_bool_exp
  • predicate: Int_comparison_exp!

k8s_pods_aggregate_fields

aggregate fields of "k8s_pods"

Fields:

  • count: Int!
  • max: k8s_pods_max_fields
  • min: k8s_pods_min_fields

k8s_pods_aggregate_order_by

order by aggregate values of table "k8s_pods"

Fields:

  • count: order_by
  • max: k8s_pods_max_order_by
  • min: k8s_pods_min_order_by

k8s_pods_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • meta: jsonb
  • restart_count: jsonb

k8s_pods_arr_rel_insert_input

input type for inserting array relation for remote table "k8s_pods"

Fields:

  • data: [k8s_pods_insert_input!]!
  • on_conflict: k8s_pods_on_conflict - upsert condition

k8s_pods_bool_exp

Boolean expression to filter rows from the table "k8s_pods". All fields are combined with a logical 'AND'.

Fields:

  • _and: [k8s_pods_bool_exp!]
  • _not: k8s_pods_bool_exp
  • _or: [k8s_pods_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • creation_time: timestamp_comparison_exp
  • external_id: String_comparison_exp
  • is_active: Boolean_comparison_exp
  • labels: jsonb_comparison_exp
  • last_seen: timestamp_comparison_exp
  • meta: jsonb_comparison_exp
  • name: String_comparison_exp
  • namespace: String_comparison_exp
  • node_name: String_comparison_exp
  • restart_count: jsonb_comparison_exp
  • status: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • workload_name: String_comparison_exp
  • workload_type: String_comparison_exp

k8s_pods_constraint

unique or primary key constraints on table "k8s_pods"

Values:

  • k8s_pods_pkey - unique or primary key constraint on columns "tenant_id", "cloud_account_id", "cloud_resource_id"
  • k8s_pods_tenant_id_cloud_resource_id_cloud_account_id_key - unique or primary key constraint on columns "tenant_id", "cloud_account_id", "cloud_resource_id"

k8s_pods_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • labels: [String!]
  • meta: [String!]
  • restart_count: [String!]

k8s_pods_delete_elem_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

Fields:

  • labels: Int
  • meta: Int
  • restart_count: Int

k8s_pods_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • labels: String
  • meta: String
  • restart_count: String

k8s_pods_insert_input

input type for inserting data into table "k8s_pods"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • is_active: Boolean
  • labels: jsonb
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • namespace: String
  • node_name: String
  • restart_count: jsonb
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • workload_name: String
  • workload_type: String

k8s_pods_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • last_seen: timestamp
  • name: String
  • namespace: String
  • node_name: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • workload_name: String
  • workload_type: String

k8s_pods_max_order_by

order by max() on columns of table "k8s_pods"

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • creation_time: order_by
  • external_id: order_by
  • last_seen: order_by
  • name: order_by
  • namespace: order_by
  • node_name: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • workload_name: order_by
  • workload_type: order_by

k8s_pods_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • last_seen: timestamp
  • name: String
  • namespace: String
  • node_name: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • workload_name: String
  • workload_type: String

k8s_pods_min_order_by

order by min() on columns of table "k8s_pods"

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • creation_time: order_by
  • external_id: order_by
  • last_seen: order_by
  • name: order_by
  • namespace: order_by
  • node_name: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • workload_name: order_by
  • workload_type: order_by

k8s_pods_mutation_response

response of any mutation on the table "k8s_pods"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [k8s_pods!]! - data from the rows affected by the mutation

k8s_pods_on_conflict

on_conflict condition type for table "k8s_pods"

Fields:

  • constraint: k8s_pods_constraint!
  • update_columns: [k8s_pods_update_column!]!
  • where: k8s_pods_bool_exp

k8s_pods_order_by

Ordering options when selecting data from "k8s_pods".

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • creation_time: order_by
  • external_id: order_by
  • is_active: order_by
  • labels: order_by
  • last_seen: order_by
  • meta: order_by
  • name: order_by
  • namespace: order_by
  • node_name: order_by
  • restart_count: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • workload_name: order_by
  • workload_type: order_by

k8s_pods_pk_columns_input

primary key columns input for table: k8s_pods

Fields:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

k8s_pods_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • meta: jsonb
  • restart_count: jsonb

k8s_pods_select_column

select columns of table "k8s_pods"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • creation_time - column name
  • external_id - column name
  • is_active - column name
  • labels - column name
  • last_seen - column name
  • meta - column name
  • name - column name
  • namespace - column name
  • node_name - column name
  • restart_count - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • workload_name - column name
  • workload_type - column name

k8s_pods_set_input

input type for updating data in table "k8s_pods"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • is_active: Boolean
  • labels: jsonb
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • namespace: String
  • node_name: String
  • restart_count: jsonb
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • workload_name: String
  • workload_type: String

k8s_pods_stream_cursor_input

Streaming cursor of the table "k8s_pods"

Fields:

  • initial_value: k8s_pods_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

k8s_pods_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • is_active: Boolean
  • labels: jsonb
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • namespace: String
  • node_name: String
  • restart_count: jsonb
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • workload_name: String
  • workload_type: String

k8s_pods_update_column

update columns of table "k8s_pods"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • creation_time - column name
  • external_id - column name
  • is_active - column name
  • labels - column name
  • last_seen - column name
  • meta - column name
  • name - column name
  • namespace - column name
  • node_name - column name
  • restart_count - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • workload_name - column name
  • workload_type - column name

k8s_workloads_aggregate_fields

aggregate fields of "k8s_workloads"

Fields:

  • avg: k8s_workloads_avg_fields
  • count: Int!
  • max: k8s_workloads_max_fields
  • min: k8s_workloads_min_fields
  • stddev: k8s_workloads_stddev_fields
  • stddev_pop: k8s_workloads_stddev_pop_fields
  • stddev_samp: k8s_workloads_stddev_samp_fields
  • sum: k8s_workloads_sum_fields
  • var_pop: k8s_workloads_var_pop_fields
  • var_samp: k8s_workloads_var_samp_fields
  • variance: k8s_workloads_variance_fields

k8s_workloads_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • meta: jsonb

k8s_workloads_avg_fields

aggregate avg on columns

Fields:

  • ready_pods: Float
  • total_pods: Float

k8s_workloads_bool_exp

Boolean expression to filter rows from the table "k8s_workloads". All fields are combined with a logical 'AND'.

Fields:

  • _and: [k8s_workloads_bool_exp!]
  • _not: k8s_workloads_bool_exp
  • _or: [k8s_workloads_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • creation_time: timestamp_comparison_exp
  • external_id: String_comparison_exp
  • is_active: Boolean_comparison_exp
  • kind: String_comparison_exp
  • labels: jsonb_comparison_exp
  • last_seen: timestamp_comparison_exp
  • meta: jsonb_comparison_exp
  • name: String_comparison_exp
  • namespace: String_comparison_exp
  • ready_pods: Int_comparison_exp
  • tenant_id: uuid_comparison_exp
  • total_pods: Int_comparison_exp
  • updated_at: timestamp_comparison_exp

k8s_workloads_constraint

unique or primary key constraints on table "k8s_workloads"

Values:

  • k8s_workloads_cloud_account_id_namespace_name_kind_key - unique or primary key constraint on columns "namespace", "kind", "cloud_account_id", "name"
  • k8s_workloads_pkey - unique or primary key constraint on columns "tenant_id", "cloud_account_id", "cloud_resource_id"

k8s_workloads_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • labels: [String!]
  • meta: [String!]

k8s_workloads_delete_elem_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

Fields:

  • labels: Int
  • meta: Int

k8s_workloads_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • labels: String
  • meta: String

k8s_workloads_inc_input

input type for incrementing numeric columns in table "k8s_workloads"

Fields:

  • ready_pods: Int
  • total_pods: Int

k8s_workloads_insert_input

input type for inserting data into table "k8s_workloads"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • is_active: Boolean
  • kind: String
  • labels: jsonb
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • namespace: String
  • ready_pods: Int
  • tenant_id: uuid
  • total_pods: Int
  • updated_at: timestamp

k8s_workloads_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • kind: String
  • last_seen: timestamp
  • name: String
  • namespace: String
  • ready_pods: Int
  • tenant_id: uuid
  • total_pods: Int
  • updated_at: timestamp

k8s_workloads_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • kind: String
  • last_seen: timestamp
  • name: String
  • namespace: String
  • ready_pods: Int
  • tenant_id: uuid
  • total_pods: Int
  • updated_at: timestamp

k8s_workloads_mutation_response

response of any mutation on the table "k8s_workloads"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [k8s_workloads!]! - data from the rows affected by the mutation

k8s_workloads_obj_rel_insert_input

input type for inserting object relation for remote table "k8s_workloads"

Fields:

  • data: k8s_workloads_insert_input!
  • on_conflict: k8s_workloads_on_conflict - upsert condition

k8s_workloads_on_conflict

on_conflict condition type for table "k8s_workloads"

Fields:

  • constraint: k8s_workloads_constraint!
  • update_columns: [k8s_workloads_update_column!]!
  • where: k8s_workloads_bool_exp

k8s_workloads_order_by

Ordering options when selecting data from "k8s_workloads".

Fields:

  • cloud_account_id: order_by
  • cloud_resource_id: order_by
  • creation_time: order_by
  • external_id: order_by
  • is_active: order_by
  • kind: order_by
  • labels: order_by
  • last_seen: order_by
  • meta: order_by
  • name: order_by
  • namespace: order_by
  • ready_pods: order_by
  • tenant_id: order_by
  • total_pods: order_by
  • updated_at: order_by

k8s_workloads_pk_columns_input

primary key columns input for table: k8s_workloads

Fields:

  • cloud_account_id: uuid!
  • cloud_resource_id: uuid!
  • tenant_id: uuid!

k8s_workloads_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • meta: jsonb

k8s_workloads_select_column

select columns of table "k8s_workloads"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • creation_time - column name
  • external_id - column name
  • is_active - column name
  • kind - column name
  • labels - column name
  • last_seen - column name
  • meta - column name
  • name - column name
  • namespace - column name
  • ready_pods - column name
  • tenant_id - column name
  • total_pods - column name
  • updated_at - column name

k8s_workloads_set_input

input type for updating data in table "k8s_workloads"

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • is_active: Boolean
  • kind: String
  • labels: jsonb
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • namespace: String
  • ready_pods: Int
  • tenant_id: uuid
  • total_pods: Int
  • updated_at: timestamp

k8s_workloads_stddev_fields

aggregate stddev on columns

Fields:

  • ready_pods: Float
  • total_pods: Float

k8s_workloads_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • ready_pods: Float
  • total_pods: Float

k8s_workloads_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • ready_pods: Float
  • total_pods: Float

k8s_workloads_stream_cursor_input

Streaming cursor of the table "k8s_workloads"

Fields:

  • initial_value: k8s_workloads_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

k8s_workloads_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • cloud_resource_id: uuid
  • creation_time: timestamp
  • external_id: String
  • is_active: Boolean
  • kind: String
  • labels: jsonb
  • last_seen: timestamp
  • meta: jsonb
  • name: String
  • namespace: String
  • ready_pods: Int
  • tenant_id: uuid
  • total_pods: Int
  • updated_at: timestamp

k8s_workloads_sum_fields

aggregate sum on columns

Fields:

  • ready_pods: Int
  • total_pods: Int

k8s_workloads_update_column

update columns of table "k8s_workloads"

Values:

  • cloud_account_id - column name
  • cloud_resource_id - column name
  • creation_time - column name
  • external_id - column name
  • is_active - column name
  • kind - column name
  • labels - column name
  • last_seen - column name
  • meta - column name
  • name - column name
  • namespace - column name
  • ready_pods - column name
  • tenant_id - column name
  • total_pods - column name
  • updated_at - column name

k8s_workloads_var_pop_fields

aggregate var_pop on columns

Fields:

  • ready_pods: Float
  • total_pods: Float

k8s_workloads_var_samp_fields

aggregate var_samp on columns

Fields:

  • ready_pods: Float
  • total_pods: Float

k8s_workloads_variance_fields

aggregate variance on columns

Fields:

  • ready_pods: Float
  • total_pods: Float
Automation (404 types)

auto_optimize_resource_map_aggregate_bool_exp

Fields:

  • count: auto_optimize_resource_map_aggregate_bool_exp_count

auto_optimize_resource_map_aggregate_bool_exp_count

Fields:

  • arguments: [auto_optimize_resource_map_select_column!]
  • distinct: Boolean
  • filter: auto_optimize_resource_map_bool_exp
  • predicate: Int_comparison_exp!

auto_optimize_resource_map_aggregate_fields

aggregate fields of "auto_optimize_resource_map"

Fields:

  • count: Int!
  • max: auto_optimize_resource_map_max_fields
  • min: auto_optimize_resource_map_min_fields

auto_optimize_resource_map_aggregate_order_by

order by aggregate values of table "auto_optimize_resource_map"

Fields:

  • count: order_by
  • max: auto_optimize_resource_map_max_order_by
  • min: auto_optimize_resource_map_min_order_by

auto_optimize_resource_map_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • resource_identifier: jsonb

auto_optimize_resource_map_arr_rel_insert_input

input type for inserting array relation for remote table "auto_optimize_resource_map"

Fields:

  • data: [auto_optimize_resource_map_insert_input!]!
  • on_conflict: auto_optimize_resource_map_on_conflict - upsert condition

auto_optimize_resource_map_bool_exp

Boolean expression to filter rows from the table "auto_optimize_resource_map". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_optimize_resource_map_bool_exp!]
  • _not: auto_optimize_resource_map_bool_exp
  • _or: [auto_optimize_resource_map_bool_exp!]
  • account_id: uuid_comparison_exp
  • auto_optimize_id: uuid_comparison_exp
  • auto_optimize_type: String_comparison_exp
  • auto_pilot: auto_pilot_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • id: uuid_comparison_exp
  • resource_identifier: jsonb_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp

auto_optimize_resource_map_constraint

unique or primary key constraints on table "auto_optimize_resource_map"

Values:

  • auto_optimize_resource_map_pkey - unique or primary key constraint on columns "id"

auto_optimize_resource_map_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • resource_identifier: [String!]

auto_optimize_resource_map_delete_elem_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

Fields:

  • resource_identifier: Int

auto_optimize_resource_map_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • resource_identifier: String

auto_optimize_resource_map_insert_input

input type for inserting data into table "auto_optimize_resource_map"

Fields:

  • account_id: uuid
  • auto_optimize_id: uuid
  • auto_optimize_type: String
  • auto_pilot: auto_pilot_obj_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • id: uuid
  • resource_identifier: jsonb
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid

auto_optimize_resource_map_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • auto_optimize_id: uuid
  • auto_optimize_type: String
  • id: uuid
  • tenant_id: uuid

auto_optimize_resource_map_max_order_by

order by max() on columns of table "auto_optimize_resource_map"

Fields:

  • account_id: order_by
  • auto_optimize_id: order_by
  • auto_optimize_type: order_by
  • id: order_by
  • tenant_id: order_by

auto_optimize_resource_map_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • auto_optimize_id: uuid
  • auto_optimize_type: String
  • id: uuid
  • tenant_id: uuid

auto_optimize_resource_map_min_order_by

order by min() on columns of table "auto_optimize_resource_map"

Fields:

  • account_id: order_by
  • auto_optimize_id: order_by
  • auto_optimize_type: order_by
  • id: order_by
  • tenant_id: order_by

auto_optimize_resource_map_mutation_response

response of any mutation on the table "auto_optimize_resource_map"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_optimize_resource_map!]! - data from the rows affected by the mutation

auto_optimize_resource_map_on_conflict

on_conflict condition type for table "auto_optimize_resource_map"

Fields:

  • constraint: auto_optimize_resource_map_constraint!
  • update_columns: [auto_optimize_resource_map_update_column!]!
  • where: auto_optimize_resource_map_bool_exp

auto_optimize_resource_map_order_by

Ordering options when selecting data from "auto_optimize_resource_map".

Fields:

  • account_id: order_by
  • auto_optimize_id: order_by
  • auto_optimize_type: order_by
  • auto_pilot: auto_pilot_order_by
  • cloud_account: cloud_accounts_order_by
  • id: order_by
  • resource_identifier: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by

auto_optimize_resource_map_pk_columns_input

primary key columns input for table: auto_optimize_resource_map

Fields:

  • id: uuid!

auto_optimize_resource_map_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • resource_identifier: jsonb

auto_optimize_resource_map_select_column

select columns of table "auto_optimize_resource_map"

Values:

  • account_id - column name
  • auto_optimize_id - column name
  • auto_optimize_type - column name
  • id - column name
  • resource_identifier - column name
  • tenant_id - column name

auto_optimize_resource_map_set_input

input type for updating data in table "auto_optimize_resource_map"

Fields:

  • account_id: uuid
  • auto_optimize_id: uuid
  • auto_optimize_type: String
  • id: uuid
  • resource_identifier: jsonb
  • tenant_id: uuid

auto_optimize_resource_map_stream_cursor_input

Streaming cursor of the table "auto_optimize_resource_map"

Fields:

  • initial_value: auto_optimize_resource_map_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_optimize_resource_map_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • auto_optimize_id: uuid
  • auto_optimize_type: String
  • id: uuid
  • resource_identifier: jsonb
  • tenant_id: uuid

auto_optimize_resource_map_update_column

update columns of table "auto_optimize_resource_map"

Values:

  • account_id - column name
  • auto_optimize_id - column name
  • auto_optimize_type - column name
  • id - column name
  • resource_identifier - column name
  • tenant_id - column name

auto_pilot_aggregate_fields

aggregate fields of "auto_pilot"

Fields:

  • count: Int!
  • max: auto_pilot_max_fields
  • min: auto_pilot_min_fields

auto_pilot_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • notification: jsonb
  • rule: jsonb

auto_pilot_approval_policy_aggregate_fields

aggregate fields of "auto_pilot_approval_policy"

Fields:

  • count: Int!
  • max: auto_pilot_approval_policy_max_fields
  • min: auto_pilot_approval_policy_min_fields

auto_pilot_approval_policy_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • policy_attributes: jsonb

auto_pilot_approval_policy_bool_exp

Boolean expression to filter rows from the table "auto_pilot_approval_policy". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_approval_policy_bool_exp!]
  • _not: auto_pilot_approval_policy_bool_exp
  • _or: [auto_pilot_approval_policy_bool_exp!]
  • account_id: uuid_comparison_exp
  • auto_pilot_approvals: auto_pilot_approvals_bool_exp
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate_bool_exp
  • auto_pilot_reviewees: auto_pilot_reviewee_bool_exp
  • auto_pilot_reviewees_aggregate: auto_pilot_reviewee_aggregate_bool_exp
  • auto_pilot_reviewers: auto_pilot_reviewers_bool_exp
  • auto_pilot_reviewers_aggregate: auto_pilot_reviewers_aggregate_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • create_by_user: users_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • policy_attributes: jsonb_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp

auto_pilot_approval_policy_constraint

unique or primary key constraints on table "auto_pilot_approval_policy"

Values:

  • auto_pilot_approval_policy_tenant_id_account_id_key - unique or primary key constraint on columns "account_id", "tenant_id"
  • autopilot_approval_policy_id_key - unique or primary key constraint on columns "id"
  • autopilot_approval_policy_pkey - unique or primary key constraint on columns "id"

auto_pilot_approval_policy_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • policy_attributes: [String!]

auto_pilot_approval_policy_delete_elem_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

Fields:

  • policy_attributes: Int

auto_pilot_approval_policy_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • policy_attributes: String

auto_pilot_approval_policy_insert_input

input type for inserting data into table "auto_pilot_approval_policy"

Fields:

  • account_id: uuid
  • auto_pilot_approvals: auto_pilot_approvals_arr_rel_insert_input
  • auto_pilot_reviewees: auto_pilot_reviewee_arr_rel_insert_input
  • auto_pilot_reviewers: auto_pilot_reviewers_arr_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • create_by_user: users_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • policy_attributes: jsonb
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input

auto_pilot_approval_policy_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

auto_pilot_approval_policy_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

auto_pilot_approval_policy_mutation_response

response of any mutation on the table "auto_pilot_approval_policy"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_approval_policy!]! - data from the rows affected by the mutation

auto_pilot_approval_policy_obj_rel_insert_input

input type for inserting object relation for remote table "auto_pilot_approval_policy"

Fields:

  • data: auto_pilot_approval_policy_insert_input!
  • on_conflict: auto_pilot_approval_policy_on_conflict - upsert condition

auto_pilot_approval_policy_on_conflict

on_conflict condition type for table "auto_pilot_approval_policy"

Fields:

  • constraint: auto_pilot_approval_policy_constraint!
  • update_columns: [auto_pilot_approval_policy_update_column!]!
  • where: auto_pilot_approval_policy_bool_exp

auto_pilot_approval_policy_order_by

Ordering options when selecting data from "auto_pilot_approval_policy".

Fields:

  • account_id: order_by
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate_order_by
  • auto_pilot_reviewees_aggregate: auto_pilot_reviewee_aggregate_order_by
  • auto_pilot_reviewers_aggregate: auto_pilot_reviewers_aggregate_order_by
  • cloud_account: cloud_accounts_order_by
  • create_by_user: users_order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • policy_attributes: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by

auto_pilot_approval_policy_pk_columns_input

primary key columns input for table: auto_pilot_approval_policy

Fields:

  • id: uuid!

auto_pilot_approval_policy_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • policy_attributes: jsonb

auto_pilot_approval_policy_select_column

select columns of table "auto_pilot_approval_policy"

Values:

  • account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • policy_attributes - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

auto_pilot_approval_policy_set_input

input type for updating data in table "auto_pilot_approval_policy"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • policy_attributes: jsonb
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

auto_pilot_approval_policy_stream_cursor_input

Streaming cursor of the table "auto_pilot_approval_policy"

Fields:

  • initial_value: auto_pilot_approval_policy_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_approval_policy_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • policy_attributes: jsonb
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

auto_pilot_approval_policy_update_column

update columns of table "auto_pilot_approval_policy"

Values:

  • account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • policy_attributes - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

auto_pilot_approval_status_aggregate_fields

aggregate fields of "auto_pilot_approval_status"

Fields:

  • count: Int!
  • max: auto_pilot_approval_status_max_fields
  • min: auto_pilot_approval_status_min_fields

auto_pilot_approval_status_bool_exp

Boolean expression to filter rows from the table "auto_pilot_approval_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_approval_status_bool_exp!]
  • _not: auto_pilot_approval_status_bool_exp
  • _or: [auto_pilot_approval_status_bool_exp!]
  • auto_pilot_approvals: auto_pilot_approvals_bool_exp
  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate_bool_exp
  • description: String_comparison_exp
  • status: String_comparison_exp

auto_pilot_approval_status_constraint

unique or primary key constraints on table "auto_pilot_approval_status"

Values:

  • auto_pilot_approval_status_pkey - unique or primary key constraint on columns "status"

auto_pilot_approval_status_insert_input

input type for inserting data into table "auto_pilot_approval_status"

Fields:

  • auto_pilot_approvals: auto_pilot_approvals_arr_rel_insert_input
  • description: String
  • status: String

auto_pilot_approval_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • status: String

auto_pilot_approval_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • status: String

auto_pilot_approval_status_mutation_response

response of any mutation on the table "auto_pilot_approval_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_approval_status!]! - data from the rows affected by the mutation

auto_pilot_approval_status_obj_rel_insert_input

input type for inserting object relation for remote table "auto_pilot_approval_status"

Fields:

  • data: auto_pilot_approval_status_insert_input!
  • on_conflict: auto_pilot_approval_status_on_conflict - upsert condition

auto_pilot_approval_status_on_conflict

on_conflict condition type for table "auto_pilot_approval_status"

Fields:

  • constraint: auto_pilot_approval_status_constraint!
  • update_columns: [auto_pilot_approval_status_update_column!]!
  • where: auto_pilot_approval_status_bool_exp

auto_pilot_approval_status_order_by

Ordering options when selecting data from "auto_pilot_approval_status".

Fields:

  • auto_pilot_approvals_aggregate: auto_pilot_approvals_aggregate_order_by
  • description: order_by
  • status: order_by

auto_pilot_approval_status_pk_columns_input

primary key columns input for table: auto_pilot_approval_status

Fields:

  • status: String!

auto_pilot_approval_status_select_column

select columns of table "auto_pilot_approval_status"

Values:

  • description - column name
  • status - column name

auto_pilot_approval_status_set_input

input type for updating data in table "auto_pilot_approval_status"

Fields:

  • description: String
  • status: String

auto_pilot_approval_status_stream_cursor_input

Streaming cursor of the table "auto_pilot_approval_status"

Fields:

  • initial_value: auto_pilot_approval_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_approval_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • status: String

auto_pilot_approval_status_update_column

update columns of table "auto_pilot_approval_status"

Values:

  • description - column name
  • status - column name

auto_pilot_approvals_aggregate_bool_exp

Fields:

  • count: auto_pilot_approvals_aggregate_bool_exp_count

auto_pilot_approvals_aggregate_bool_exp_count

Fields:

  • arguments: [auto_pilot_approvals_select_column!]
  • distinct: Boolean
  • filter: auto_pilot_approvals_bool_exp
  • predicate: Int_comparison_exp!

auto_pilot_approvals_aggregate_fields

aggregate fields of "auto_pilot_approvals"

Fields:

  • count: Int!
  • max: auto_pilot_approvals_max_fields
  • min: auto_pilot_approvals_min_fields

auto_pilot_approvals_aggregate_order_by

order by aggregate values of table "auto_pilot_approvals"

Fields:

  • count: order_by
  • max: auto_pilot_approvals_max_order_by
  • min: auto_pilot_approvals_min_order_by

auto_pilot_approvals_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb

auto_pilot_approvals_arr_rel_insert_input

input type for inserting array relation for remote table "auto_pilot_approvals"

Fields:

  • data: [auto_pilot_approvals_insert_input!]!
  • on_conflict: auto_pilot_approvals_on_conflict - upsert condition

auto_pilot_approvals_bool_exp

Boolean expression to filter rows from the table "auto_pilot_approvals". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_approvals_bool_exp!]
  • _not: auto_pilot_approvals_bool_exp
  • _or: [auto_pilot_approvals_bool_exp!]
  • account_id: uuid_comparison_exp
  • attributes: jsonb_comparison_exp
  • auto_pilot_approval_policy: auto_pilot_approval_policy_bool_exp
  • auto_pilot_approval_status: auto_pilot_approval_status_bool_exp
  • auto_pilot_type: String_comparison_exp
  • autopilot_id: uuid_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • policy_id: uuid_comparison_exp
  • reviewer_comments: String_comparison_exp
  • reviewer_id: uuid_comparison_exp
  • status: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user_reviwer_id: users_bool_exp

auto_pilot_approvals_constraint

unique or primary key constraints on table "auto_pilot_approvals"

Values:

  • auto_pilot_approvals_autopilot_id_reviewer_id_account_id_tenant - unique or primary key constraint on columns "account_id", "reviewer_id", "autopilot_id", "tenant_id"
  • auto_pilot_approvals_pkey - unique or primary key constraint on columns "id"

auto_pilot_approvals_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]

auto_pilot_approvals_delete_elem_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

Fields:

  • attributes: Int

auto_pilot_approvals_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String

auto_pilot_approvals_insert_input

input type for inserting data into table "auto_pilot_approvals"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_pilot_approval_policy: auto_pilot_approval_policy_obj_rel_insert_input
  • auto_pilot_approval_status: auto_pilot_approval_status_obj_rel_insert_input
  • auto_pilot_type: String
  • autopilot_id: uuid
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • reviewer_comments: String
  • reviewer_id: uuid
  • status: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • user_reviwer_id: users_obj_rel_insert_input

auto_pilot_approvals_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • auto_pilot_type: String
  • autopilot_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • reviewer_comments: String
  • reviewer_id: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_approvals_max_order_by

order by max() on columns of table "auto_pilot_approvals"

Fields:

  • account_id: order_by
  • auto_pilot_type: order_by
  • autopilot_id: order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • reviewer_comments: order_by
  • reviewer_id: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_pilot_approvals_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • auto_pilot_type: String
  • autopilot_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • reviewer_comments: String
  • reviewer_id: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_approvals_min_order_by

order by min() on columns of table "auto_pilot_approvals"

Fields:

  • account_id: order_by
  • auto_pilot_type: order_by
  • autopilot_id: order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • reviewer_comments: order_by
  • reviewer_id: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_pilot_approvals_mutation_response

response of any mutation on the table "auto_pilot_approvals"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_approvals!]! - data from the rows affected by the mutation

auto_pilot_approvals_on_conflict

on_conflict condition type for table "auto_pilot_approvals"

Fields:

  • constraint: auto_pilot_approvals_constraint!
  • update_columns: [auto_pilot_approvals_update_column!]!
  • where: auto_pilot_approvals_bool_exp

auto_pilot_approvals_order_by

Ordering options when selecting data from "auto_pilot_approvals".

Fields:

  • account_id: order_by
  • attributes: order_by
  • auto_pilot_approval_policy: auto_pilot_approval_policy_order_by
  • auto_pilot_approval_status: auto_pilot_approval_status_order_by
  • auto_pilot_type: order_by
  • autopilot_id: order_by
  • cloud_account: cloud_accounts_order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • reviewer_comments: order_by
  • reviewer_id: order_by
  • status: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user_reviwer_id: users_order_by

auto_pilot_approvals_pk_columns_input

primary key columns input for table: auto_pilot_approvals

Fields:

  • id: uuid!

auto_pilot_approvals_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb

auto_pilot_approvals_select_column

select columns of table "auto_pilot_approvals"

Values:

  • account_id - column name
  • attributes - column name
  • auto_pilot_type - column name
  • autopilot_id - column name
  • created_at - column name
  • id - column name
  • policy_id - column name
  • reviewer_comments - column name
  • reviewer_id - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name

auto_pilot_approvals_set_input

input type for updating data in table "auto_pilot_approvals"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_pilot_type: String
  • autopilot_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • reviewer_comments: String
  • reviewer_id: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_approvals_stream_cursor_input

Streaming cursor of the table "auto_pilot_approvals"

Fields:

  • initial_value: auto_pilot_approvals_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_approvals_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_pilot_type: String
  • autopilot_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • reviewer_comments: String
  • reviewer_id: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_approvals_update_column

update columns of table "auto_pilot_approvals"

Values:

  • account_id - column name
  • attributes - column name
  • auto_pilot_type - column name
  • autopilot_id - column name
  • created_at - column name
  • id - column name
  • policy_id - column name
  • reviewer_comments - column name
  • reviewer_id - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name

auto_pilot_bool_exp

Boolean expression to filter rows from the table "auto_pilot". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_bool_exp!]
  • _not: auto_pilot_bool_exp
  • _or: [auto_pilot_bool_exp!]
  • account_id: uuid_comparison_exp
  • attributes: jsonb_comparison_exp
  • auto_optimize_resource_maps: auto_optimize_resource_map_bool_exp
  • auto_optimize_resource_maps_aggregate: auto_optimize_resource_map_aggregate_bool_exp
  • auto_pilot_status: auto_pilot_status_bool_exp
  • auto_pilot_tasks: auto_pilot_task_bool_exp
  • auto_pilot_tasks_aggregate: auto_pilot_task_aggregate_bool_exp
  • category: String_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_by: uuid_comparison_exp
  • creation_date: timestamp_comparison_exp
  • end_at: timestamp_comparison_exp
  • execution_status: String_comparison_exp
  • id: uuid_comparison_exp
  • last_executed_time: timestamp_comparison_exp
  • last_schedule_time: timestamp_comparison_exp
  • name: String_comparison_exp
  • next_schedule_time: timestamp_comparison_exp
  • notification: jsonb_comparison_exp
  • rule: jsonb_comparison_exp
  • schedule_time: String_comparison_exp
  • source: String_comparison_exp
  • start_at: timestamp_comparison_exp
  • status: auto_pilot_status_enum_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • update_by: uuid_comparison_exp
  • update_date: timestamp_comparison_exp
  • user: users_bool_exp
  • user_updated_by: users_bool_exp

auto_pilot_category_aggregate_fields

aggregate fields of "auto_pilot_category"

Fields:

  • count: Int!
  • max: auto_pilot_category_max_fields
  • min: auto_pilot_category_min_fields

auto_pilot_category_bool_exp

Boolean expression to filter rows from the table "auto_pilot_category". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_category_bool_exp!]
  • _not: auto_pilot_category_bool_exp
  • _or: [auto_pilot_category_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

auto_pilot_category_constraint

unique or primary key constraints on table "auto_pilot_category"

Values:

  • auto_pilot_category_pkey - unique or primary key constraint on columns "value"

auto_pilot_category_insert_input

input type for inserting data into table "auto_pilot_category"

Fields:

  • description: String
  • value: String

auto_pilot_category_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

auto_pilot_category_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

auto_pilot_category_mutation_response

response of any mutation on the table "auto_pilot_category"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_category!]! - data from the rows affected by the mutation

auto_pilot_category_on_conflict

on_conflict condition type for table "auto_pilot_category"

Fields:

  • constraint: auto_pilot_category_constraint!
  • update_columns: [auto_pilot_category_update_column!]!
  • where: auto_pilot_category_bool_exp

auto_pilot_category_order_by

Ordering options when selecting data from "auto_pilot_category".

Fields:

  • description: order_by
  • value: order_by

auto_pilot_category_pk_columns_input

primary key columns input for table: auto_pilot_category

Fields:

  • value: String!

auto_pilot_category_select_column

select columns of table "auto_pilot_category"

Values:

  • description - column name
  • value - column name

auto_pilot_category_set_input

input type for updating data in table "auto_pilot_category"

Fields:

  • description: String
  • value: String

auto_pilot_category_stream_cursor_input

Streaming cursor of the table "auto_pilot_category"

Fields:

  • initial_value: auto_pilot_category_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_category_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

auto_pilot_category_update_column

update columns of table "auto_pilot_category"

Values:

  • description - column name
  • value - column name

auto_pilot_constraint

unique or primary key constraints on table "auto_pilot"

Values:

  • schedules_pkey - unique or primary key constraint on columns "id"

auto_pilot_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]
  • notification: [String!]
  • rule: [String!]

auto_pilot_delete_elem_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

Fields:

  • attributes: Int
  • notification: Int
  • rule: Int

auto_pilot_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String
  • notification: String
  • rule: String

auto_pilot_execution_status_aggregate_fields

aggregate fields of "auto_pilot_execution_status"

Fields:

  • count: Int!
  • max: auto_pilot_execution_status_max_fields
  • min: auto_pilot_execution_status_min_fields

auto_pilot_execution_status_bool_exp

Boolean expression to filter rows from the table "auto_pilot_execution_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_execution_status_bool_exp!]
  • _not: auto_pilot_execution_status_bool_exp
  • _or: [auto_pilot_execution_status_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

auto_pilot_execution_status_constraint

unique or primary key constraints on table "auto_pilot_execution_status"

Values:

  • autopilot_execution_status_pkey - unique or primary key constraint on columns "value"

auto_pilot_execution_status_insert_input

input type for inserting data into table "auto_pilot_execution_status"

Fields:

  • description: String
  • value: String

auto_pilot_execution_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

auto_pilot_execution_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

auto_pilot_execution_status_mutation_response

response of any mutation on the table "auto_pilot_execution_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_execution_status!]! - data from the rows affected by the mutation

auto_pilot_execution_status_obj_rel_insert_input

input type for inserting object relation for remote table "auto_pilot_execution_status"

Fields:

  • data: auto_pilot_execution_status_insert_input!
  • on_conflict: auto_pilot_execution_status_on_conflict - upsert condition

auto_pilot_execution_status_on_conflict

on_conflict condition type for table "auto_pilot_execution_status"

Fields:

  • constraint: auto_pilot_execution_status_constraint!
  • update_columns: [auto_pilot_execution_status_update_column!]!
  • where: auto_pilot_execution_status_bool_exp

auto_pilot_execution_status_order_by

Ordering options when selecting data from "auto_pilot_execution_status".

Fields:

  • description: order_by
  • value: order_by

auto_pilot_execution_status_pk_columns_input

primary key columns input for table: auto_pilot_execution_status

Fields:

  • value: String!

auto_pilot_execution_status_select_column

select columns of table "auto_pilot_execution_status"

Values:

  • description - column name
  • value - column name

auto_pilot_execution_status_set_input

input type for updating data in table "auto_pilot_execution_status"

Fields:

  • description: String
  • value: String

auto_pilot_execution_status_stream_cursor_input

Streaming cursor of the table "auto_pilot_execution_status"

Fields:

  • initial_value: auto_pilot_execution_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_execution_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

auto_pilot_execution_status_update_column

update columns of table "auto_pilot_execution_status"

Values:

  • description - column name
  • value - column name

auto_pilot_insert_input

input type for inserting data into table "auto_pilot"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_optimize_resource_maps: auto_optimize_resource_map_arr_rel_insert_input
  • auto_pilot_status: auto_pilot_status_obj_rel_insert_input
  • auto_pilot_tasks: auto_pilot_task_arr_rel_insert_input
  • category: String
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_by: uuid
  • creation_date: timestamp
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • next_schedule_time: timestamp
  • notification: jsonb
  • rule: jsonb
  • schedule_time: String
  • source: String
  • start_at: timestamp
  • status: auto_pilot_status_enum
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • update_by: uuid
  • update_date: timestamp
  • user: users_obj_rel_insert_input
  • user_updated_by: users_obj_rel_insert_input

auto_pilot_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • category: String
  • created_by: uuid
  • creation_date: timestamp
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • next_schedule_time: timestamp
  • schedule_time: String
  • source: String
  • start_at: timestamp
  • tenant_id: uuid
  • update_by: uuid
  • update_date: timestamp

auto_pilot_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • category: String
  • created_by: uuid
  • creation_date: timestamp
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • next_schedule_time: timestamp
  • schedule_time: String
  • source: String
  • start_at: timestamp
  • tenant_id: uuid
  • update_by: uuid
  • update_date: timestamp

auto_pilot_mutation_response

response of any mutation on the table "auto_pilot"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot!]! - data from the rows affected by the mutation

auto_pilot_obj_rel_insert_input

input type for inserting object relation for remote table "auto_pilot"

Fields:

  • data: auto_pilot_insert_input!
  • on_conflict: auto_pilot_on_conflict - upsert condition

auto_pilot_on_conflict

on_conflict condition type for table "auto_pilot"

Fields:

  • constraint: auto_pilot_constraint!
  • update_columns: [auto_pilot_update_column!]!
  • where: auto_pilot_bool_exp

auto_pilot_order_by

Ordering options when selecting data from "auto_pilot".

Fields:

  • account_id: order_by
  • attributes: order_by
  • auto_optimize_resource_maps_aggregate: auto_optimize_resource_map_aggregate_order_by
  • auto_pilot_status: auto_pilot_status_order_by
  • auto_pilot_tasks_aggregate: auto_pilot_task_aggregate_order_by
  • category: order_by
  • cloud_account: cloud_accounts_order_by
  • created_by: order_by
  • creation_date: order_by
  • end_at: order_by
  • execution_status: order_by
  • id: order_by
  • last_executed_time: order_by
  • last_schedule_time: order_by
  • name: order_by
  • next_schedule_time: order_by
  • notification: order_by
  • rule: order_by
  • schedule_time: order_by
  • source: order_by
  • start_at: order_by
  • status: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • update_by: order_by
  • update_date: order_by
  • user: users_order_by
  • user_updated_by: users_order_by

auto_pilot_pk_columns_input

primary key columns input for table: auto_pilot

Fields:

  • id: uuid!

auto_pilot_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • notification: jsonb
  • rule: jsonb

auto_pilot_reviewee_aggregate_bool_exp

Fields:

  • count: auto_pilot_reviewee_aggregate_bool_exp_count

auto_pilot_reviewee_aggregate_bool_exp_count

Fields:

  • arguments: [auto_pilot_reviewee_select_column!]
  • distinct: Boolean
  • filter: auto_pilot_reviewee_bool_exp
  • predicate: Int_comparison_exp!

auto_pilot_reviewee_aggregate_fields

aggregate fields of "auto_pilot_reviewee"

Fields:

  • count: Int!
  • max: auto_pilot_reviewee_max_fields
  • min: auto_pilot_reviewee_min_fields

auto_pilot_reviewee_aggregate_order_by

order by aggregate values of table "auto_pilot_reviewee"

Fields:

  • count: order_by
  • max: auto_pilot_reviewee_max_order_by
  • min: auto_pilot_reviewee_min_order_by

auto_pilot_reviewee_arr_rel_insert_input

input type for inserting array relation for remote table "auto_pilot_reviewee"

Fields:

  • data: [auto_pilot_reviewee_insert_input!]!
  • on_conflict: auto_pilot_reviewee_on_conflict - upsert condition

auto_pilot_reviewee_bool_exp

Boolean expression to filter rows from the table "auto_pilot_reviewee". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_reviewee_bool_exp!]
  • _not: auto_pilot_reviewee_bool_exp
  • _or: [auto_pilot_reviewee_bool_exp!]
  • account_id: uuid_comparison_exp
  • auto_pilot_approval_policy: auto_pilot_approval_policy_bool_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • policy_id: uuid_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • user: users_bool_exp
  • user_id: uuid_comparison_exp

auto_pilot_reviewee_constraint

unique or primary key constraints on table "auto_pilot_reviewee"

Values:

  • auto_pilot_reviewee_pkey - unique or primary key constraint on columns "id"
  • auto_pilot_reviewee_policy_id_user_id_key - unique or primary key constraint on columns "user_id", "policy_id"

auto_pilot_reviewee_insert_input

input type for inserting data into table "auto_pilot_reviewee"

Fields:

  • account_id: uuid
  • auto_pilot_approval_policy: auto_pilot_approval_policy_obj_rel_insert_input
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • user: users_obj_rel_insert_input
  • user_id: uuid

auto_pilot_reviewee_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewee_max_order_by

order by max() on columns of table "auto_pilot_reviewee"

Fields:

  • account_id: order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • tenant_id: order_by
  • user_id: order_by

auto_pilot_reviewee_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewee_min_order_by

order by min() on columns of table "auto_pilot_reviewee"

Fields:

  • account_id: order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • tenant_id: order_by
  • user_id: order_by

auto_pilot_reviewee_mutation_response

response of any mutation on the table "auto_pilot_reviewee"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_reviewee!]! - data from the rows affected by the mutation

auto_pilot_reviewee_on_conflict

on_conflict condition type for table "auto_pilot_reviewee"

Fields:

  • constraint: auto_pilot_reviewee_constraint!
  • update_columns: [auto_pilot_reviewee_update_column!]!
  • where: auto_pilot_reviewee_bool_exp

auto_pilot_reviewee_order_by

Ordering options when selecting data from "auto_pilot_reviewee".

Fields:

  • account_id: order_by
  • auto_pilot_approval_policy: auto_pilot_approval_policy_order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • user: users_order_by
  • user_id: order_by

auto_pilot_reviewee_pk_columns_input

primary key columns input for table: auto_pilot_reviewee

Fields:

  • id: uuid!

auto_pilot_reviewee_select_column

select columns of table "auto_pilot_reviewee"

Values:

  • account_id - column name
  • created_at - column name
  • id - column name
  • policy_id - column name
  • tenant_id - column name
  • user_id - column name

auto_pilot_reviewee_set_input

input type for updating data in table "auto_pilot_reviewee"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewee_stream_cursor_input

Streaming cursor of the table "auto_pilot_reviewee"

Fields:

  • initial_value: auto_pilot_reviewee_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_reviewee_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewee_update_column

update columns of table "auto_pilot_reviewee"

Values:

  • account_id - column name
  • created_at - column name
  • id - column name
  • policy_id - column name
  • tenant_id - column name
  • user_id - column name

auto_pilot_reviewers_aggregate_bool_exp

Fields:

  • count: auto_pilot_reviewers_aggregate_bool_exp_count

auto_pilot_reviewers_aggregate_bool_exp_count

Fields:

  • arguments: [auto_pilot_reviewers_select_column!]
  • distinct: Boolean
  • filter: auto_pilot_reviewers_bool_exp
  • predicate: Int_comparison_exp!

auto_pilot_reviewers_aggregate_fields

aggregate fields of "auto_pilot_reviewers"

Fields:

  • count: Int!
  • max: auto_pilot_reviewers_max_fields
  • min: auto_pilot_reviewers_min_fields

auto_pilot_reviewers_aggregate_order_by

order by aggregate values of table "auto_pilot_reviewers"

Fields:

  • count: order_by
  • max: auto_pilot_reviewers_max_order_by
  • min: auto_pilot_reviewers_min_order_by

auto_pilot_reviewers_arr_rel_insert_input

input type for inserting array relation for remote table "auto_pilot_reviewers"

Fields:

  • data: [auto_pilot_reviewers_insert_input!]!
  • on_conflict: auto_pilot_reviewers_on_conflict - upsert condition

auto_pilot_reviewers_bool_exp

Boolean expression to filter rows from the table "auto_pilot_reviewers". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_reviewers_bool_exp!]
  • _not: auto_pilot_reviewers_bool_exp
  • _or: [auto_pilot_reviewers_bool_exp!]
  • account_id: uuid_comparison_exp
  • auto_pilot_approval_policy: auto_pilot_approval_policy_bool_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • policy_id: uuid_comparison_exp
  • reviwer_user: users_bool_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • user_id: uuid_comparison_exp

auto_pilot_reviewers_constraint

unique or primary key constraints on table "auto_pilot_reviewers"

Values:

  • auto_pilot_reviewers_pkey - unique or primary key constraint on columns "id"
  • auto_pilot_reviewers_policy_id_user_id_key - unique or primary key constraint on columns "user_id", "policy_id"

auto_pilot_reviewers_insert_input

input type for inserting data into table "auto_pilot_reviewers"

Fields:

  • account_id: uuid
  • auto_pilot_approval_policy: auto_pilot_approval_policy_obj_rel_insert_input
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • reviwer_user: users_obj_rel_insert_input
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewers_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewers_max_order_by

order by max() on columns of table "auto_pilot_reviewers"

Fields:

  • account_id: order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • tenant_id: order_by
  • user_id: order_by

auto_pilot_reviewers_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewers_min_order_by

order by min() on columns of table "auto_pilot_reviewers"

Fields:

  • account_id: order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • tenant_id: order_by
  • user_id: order_by

auto_pilot_reviewers_mutation_response

response of any mutation on the table "auto_pilot_reviewers"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_reviewers!]! - data from the rows affected by the mutation

auto_pilot_reviewers_on_conflict

on_conflict condition type for table "auto_pilot_reviewers"

Fields:

  • constraint: auto_pilot_reviewers_constraint!
  • update_columns: [auto_pilot_reviewers_update_column!]!
  • where: auto_pilot_reviewers_bool_exp

auto_pilot_reviewers_order_by

Ordering options when selecting data from "auto_pilot_reviewers".

Fields:

  • account_id: order_by
  • auto_pilot_approval_policy: auto_pilot_approval_policy_order_by
  • created_at: order_by
  • id: order_by
  • policy_id: order_by
  • reviwer_user: users_order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • user_id: order_by

auto_pilot_reviewers_pk_columns_input

primary key columns input for table: auto_pilot_reviewers

Fields:

  • id: uuid!

auto_pilot_reviewers_select_column

select columns of table "auto_pilot_reviewers"

Values:

  • account_id - column name
  • created_at - column name
  • id - column name
  • policy_id - column name
  • tenant_id - column name
  • user_id - column name

auto_pilot_reviewers_set_input

input type for updating data in table "auto_pilot_reviewers"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewers_stream_cursor_input

Streaming cursor of the table "auto_pilot_reviewers"

Fields:

  • initial_value: auto_pilot_reviewers_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_reviewers_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • id: uuid
  • policy_id: uuid
  • tenant_id: uuid
  • user_id: uuid

auto_pilot_reviewers_update_column

update columns of table "auto_pilot_reviewers"

Values:

  • account_id - column name
  • created_at - column name
  • id - column name
  • policy_id - column name
  • tenant_id - column name
  • user_id - column name

auto_pilot_select_column

select columns of table "auto_pilot"

Values:

  • account_id - column name
  • attributes - column name
  • category - column name
  • created_by - column name
  • creation_date - column name
  • end_at - column name
  • execution_status - column name
  • id - column name
  • last_executed_time - column name
  • last_schedule_time - column name
  • name - column name
  • next_schedule_time - column name
  • notification - column name
  • rule - column name
  • schedule_time - column name
  • source - column name
  • start_at - column name
  • status - column name
  • tenant_id - column name
  • update_by - column name
  • update_date - column name

auto_pilot_set_input

input type for updating data in table "auto_pilot"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • category: String
  • created_by: uuid
  • creation_date: timestamp
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • next_schedule_time: timestamp
  • notification: jsonb
  • rule: jsonb
  • schedule_time: String
  • source: String
  • start_at: timestamp
  • status: auto_pilot_status_enum
  • tenant_id: uuid
  • update_by: uuid
  • update_date: timestamp

auto_pilot_status_aggregate_fields

aggregate fields of "auto_pilot_status"

Fields:

  • count: Int!
  • max: auto_pilot_status_max_fields
  • min: auto_pilot_status_min_fields

auto_pilot_status_bool_exp

Boolean expression to filter rows from the table "auto_pilot_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_status_bool_exp!]
  • _not: auto_pilot_status_bool_exp
  • _or: [auto_pilot_status_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

auto_pilot_status_constraint

unique or primary key constraints on table "auto_pilot_status"

Values:

  • auto_pilot_status_pkey - unique or primary key constraint on columns "value"

auto_pilot_status_insert_input

input type for inserting data into table "auto_pilot_status"

Fields:

  • description: String
  • value: String

auto_pilot_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

auto_pilot_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

auto_pilot_status_mutation_response

response of any mutation on the table "auto_pilot_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_status!]! - data from the rows affected by the mutation

auto_pilot_status_obj_rel_insert_input

input type for inserting object relation for remote table "auto_pilot_status"

Fields:

  • data: auto_pilot_status_insert_input!
  • on_conflict: auto_pilot_status_on_conflict - upsert condition

auto_pilot_status_on_conflict

on_conflict condition type for table "auto_pilot_status"

Fields:

  • constraint: auto_pilot_status_constraint!
  • update_columns: [auto_pilot_status_update_column!]!
  • where: auto_pilot_status_bool_exp

auto_pilot_status_order_by

Ordering options when selecting data from "auto_pilot_status".

Fields:

  • description: order_by
  • value: order_by

auto_pilot_status_pk_columns_input

primary key columns input for table: auto_pilot_status

Fields:

  • value: String!

auto_pilot_status_select_column

select columns of table "auto_pilot_status"

Values:

  • description - column name
  • value - column name

auto_pilot_status_set_input

input type for updating data in table "auto_pilot_status"

Fields:

  • description: String
  • value: String

auto_pilot_status_stream_cursor_input

Streaming cursor of the table "auto_pilot_status"

Fields:

  • initial_value: auto_pilot_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

auto_pilot_status_update_column

update columns of table "auto_pilot_status"

Values:

  • description - column name
  • value - column name

auto_pilot_stream_cursor_input

Streaming cursor of the table "auto_pilot"

Fields:

  • initial_value: auto_pilot_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • attributes: jsonb
  • category: String
  • created_by: uuid
  • creation_date: timestamp
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • next_schedule_time: timestamp
  • notification: jsonb
  • rule: jsonb
  • schedule_time: String
  • source: String
  • start_at: timestamp
  • status: auto_pilot_status_enum
  • tenant_id: uuid
  • update_by: uuid
  • update_date: timestamp

auto_pilot_task_aggregate_bool_exp

Fields:

  • count: auto_pilot_task_aggregate_bool_exp_count

auto_pilot_task_aggregate_bool_exp_count

Fields:

  • arguments: [auto_pilot_task_select_column!]
  • distinct: Boolean
  • filter: auto_pilot_task_bool_exp
  • predicate: Int_comparison_exp!

auto_pilot_task_aggregate_fields

aggregate fields of "auto_pilot_task"

Fields:

  • count: Int!
  • max: auto_pilot_task_max_fields
  • min: auto_pilot_task_min_fields

auto_pilot_task_aggregate_order_by

order by aggregate values of table "auto_pilot_task"

Fields:

  • count: order_by
  • max: auto_pilot_task_max_order_by
  • min: auto_pilot_task_min_order_by

auto_pilot_task_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • meta: jsonb
  • resource_filter: jsonb

auto_pilot_task_arr_rel_insert_input

input type for inserting array relation for remote table "auto_pilot_task"

Fields:

  • data: [auto_pilot_task_insert_input!]!
  • on_conflict: auto_pilot_task_on_conflict - upsert condition

auto_pilot_task_bool_exp

Boolean expression to filter rows from the table "auto_pilot_task". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_task_bool_exp!]
  • _not: auto_pilot_task_bool_exp
  • _or: [auto_pilot_task_bool_exp!]
  • account_id: uuid_comparison_exp
  • attributes: jsonb_comparison_exp
  • auto_pilot: auto_pilot_bool_exp
  • auto_pilot_id: uuid_comparison_exp
  • auto_pilot_task_status: auto_pilot_task_status_bool_exp
  • command: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • error: String_comparison_exp
  • id: uuid_comparison_exp
  • meta: jsonb_comparison_exp
  • name: String_comparison_exp
  • reason: String_comparison_exp
  • recommendation_id: uuid_comparison_exp
  • resource_filter: jsonb_comparison_exp
  • scheduled_time: timestamp_comparison_exp
  • skipped_by: uuid_comparison_exp
  • status: auto_pilot_task_status_enum_comparison_exp
  • task_id: uuid_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

auto_pilot_task_constraint

unique or primary key constraints on table "auto_pilot_task"

Values:

  • scheduled_task_pkey - unique or primary key constraint on columns "id"
  • scheduled_task_task_id_schedule_id_key - unique or primary key constraint on columns "auto_pilot_id", "task_id"

auto_pilot_task_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]
  • meta: [String!]
  • resource_filter: [String!]

auto_pilot_task_delete_elem_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

Fields:

  • attributes: Int
  • meta: Int
  • resource_filter: Int

auto_pilot_task_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String
  • meta: String
  • resource_filter: String

auto_pilot_task_insert_input

input type for inserting data into table "auto_pilot_task"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_pilot: auto_pilot_obj_rel_insert_input
  • auto_pilot_id: uuid
  • auto_pilot_task_status: auto_pilot_task_status_obj_rel_insert_input
  • command: String
  • created_at: timestamp
  • error: String
  • id: uuid
  • meta: jsonb
  • name: String
  • reason: String
  • recommendation_id: uuid
  • resource_filter: jsonb
  • scheduled_time: timestamp
  • skipped_by: uuid
  • status: auto_pilot_task_status_enum
  • task_id: uuid
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_task_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • auto_pilot_id: uuid
  • command: String
  • created_at: timestamp
  • error: String
  • id: uuid
  • name: String
  • reason: String
  • recommendation_id: uuid
  • scheduled_time: timestamp
  • skipped_by: uuid
  • task_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_task_max_order_by

order by max() on columns of table "auto_pilot_task"

Fields:

  • account_id: order_by
  • auto_pilot_id: order_by
  • command: order_by
  • created_at: order_by
  • error: order_by
  • id: order_by
  • name: order_by
  • reason: order_by
  • recommendation_id: order_by
  • scheduled_time: order_by
  • skipped_by: order_by
  • task_id: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_pilot_task_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • auto_pilot_id: uuid
  • command: String
  • created_at: timestamp
  • error: String
  • id: uuid
  • name: String
  • reason: String
  • recommendation_id: uuid
  • scheduled_time: timestamp
  • skipped_by: uuid
  • task_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_task_min_order_by

order by min() on columns of table "auto_pilot_task"

Fields:

  • account_id: order_by
  • auto_pilot_id: order_by
  • command: order_by
  • created_at: order_by
  • error: order_by
  • id: order_by
  • name: order_by
  • reason: order_by
  • recommendation_id: order_by
  • scheduled_time: order_by
  • skipped_by: order_by
  • task_id: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_pilot_task_mutation_response

response of any mutation on the table "auto_pilot_task"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_task!]! - data from the rows affected by the mutation

auto_pilot_task_on_conflict

on_conflict condition type for table "auto_pilot_task"

Fields:

  • constraint: auto_pilot_task_constraint!
  • update_columns: [auto_pilot_task_update_column!]!
  • where: auto_pilot_task_bool_exp

auto_pilot_task_order_by

Ordering options when selecting data from "auto_pilot_task".

Fields:

  • account_id: order_by
  • attributes: order_by
  • auto_pilot: auto_pilot_order_by
  • auto_pilot_id: order_by
  • auto_pilot_task_status: auto_pilot_task_status_order_by
  • command: order_by
  • created_at: order_by
  • error: order_by
  • id: order_by
  • meta: order_by
  • name: order_by
  • reason: order_by
  • recommendation_id: order_by
  • resource_filter: order_by
  • scheduled_time: order_by
  • skipped_by: order_by
  • status: order_by
  • task_id: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_pilot_task_pk_columns_input

primary key columns input for table: auto_pilot_task

Fields:

  • id: uuid!

auto_pilot_task_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • meta: jsonb
  • resource_filter: jsonb

auto_pilot_task_select_column

select columns of table "auto_pilot_task"

Values:

  • account_id - column name
  • attributes - column name
  • auto_pilot_id - column name
  • command - column name
  • created_at - column name
  • error - column name
  • id - column name
  • meta - column name
  • name - column name
  • reason - column name
  • recommendation_id - column name
  • resource_filter - column name
  • scheduled_time - column name
  • skipped_by - column name
  • status - column name
  • task_id - column name
  • tenant_id - column name
  • updated_at - column name

auto_pilot_task_set_input

input type for updating data in table "auto_pilot_task"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_pilot_id: uuid
  • command: String
  • created_at: timestamp
  • error: String
  • id: uuid
  • meta: jsonb
  • name: String
  • reason: String
  • recommendation_id: uuid
  • resource_filter: jsonb
  • scheduled_time: timestamp
  • skipped_by: uuid
  • status: auto_pilot_task_status_enum
  • task_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_task_status_aggregate_fields

aggregate fields of "auto_pilot_task_status"

Fields:

  • count: Int!
  • max: auto_pilot_task_status_max_fields
  • min: auto_pilot_task_status_min_fields

auto_pilot_task_status_bool_exp

Boolean expression to filter rows from the table "auto_pilot_task_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_pilot_task_status_bool_exp!]
  • _not: auto_pilot_task_status_bool_exp
  • _or: [auto_pilot_task_status_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

auto_pilot_task_status_constraint

unique or primary key constraints on table "auto_pilot_task_status"

Values:

  • auto_pilot_task_status_pkey - unique or primary key constraint on columns "value"

auto_pilot_task_status_insert_input

input type for inserting data into table "auto_pilot_task_status"

Fields:

  • description: String
  • value: String

auto_pilot_task_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

auto_pilot_task_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

auto_pilot_task_status_mutation_response

response of any mutation on the table "auto_pilot_task_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_pilot_task_status!]! - data from the rows affected by the mutation

auto_pilot_task_status_obj_rel_insert_input

input type for inserting object relation for remote table "auto_pilot_task_status"

Fields:

  • data: auto_pilot_task_status_insert_input!
  • on_conflict: auto_pilot_task_status_on_conflict - upsert condition

auto_pilot_task_status_on_conflict

on_conflict condition type for table "auto_pilot_task_status"

Fields:

  • constraint: auto_pilot_task_status_constraint!
  • update_columns: [auto_pilot_task_status_update_column!]!
  • where: auto_pilot_task_status_bool_exp

auto_pilot_task_status_order_by

Ordering options when selecting data from "auto_pilot_task_status".

Fields:

  • description: order_by
  • value: order_by

auto_pilot_task_status_pk_columns_input

primary key columns input for table: auto_pilot_task_status

Fields:

  • value: String!

auto_pilot_task_status_select_column

select columns of table "auto_pilot_task_status"

Values:

  • description - column name
  • value - column name

auto_pilot_task_status_set_input

input type for updating data in table "auto_pilot_task_status"

Fields:

  • description: String
  • value: String

auto_pilot_task_status_stream_cursor_input

Streaming cursor of the table "auto_pilot_task_status"

Fields:

  • initial_value: auto_pilot_task_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_task_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

auto_pilot_task_status_update_column

update columns of table "auto_pilot_task_status"

Values:

  • description - column name
  • value - column name

auto_pilot_task_stream_cursor_input

Streaming cursor of the table "auto_pilot_task"

Fields:

  • initial_value: auto_pilot_task_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_pilot_task_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_pilot_id: uuid
  • command: String
  • created_at: timestamp
  • error: String
  • id: uuid
  • meta: jsonb
  • name: String
  • reason: String
  • recommendation_id: uuid
  • resource_filter: jsonb
  • scheduled_time: timestamp
  • skipped_by: uuid
  • status: auto_pilot_task_status_enum
  • task_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

auto_pilot_task_update_column

update columns of table "auto_pilot_task"

Values:

  • account_id - column name
  • attributes - column name
  • auto_pilot_id - column name
  • command - column name
  • created_at - column name
  • error - column name
  • id - column name
  • meta - column name
  • name - column name
  • reason - column name
  • recommendation_id - column name
  • resource_filter - column name
  • scheduled_time - column name
  • skipped_by - column name
  • status - column name
  • task_id - column name
  • tenant_id - column name
  • updated_at - column name

auto_pilot_update_column

update columns of table "auto_pilot"

Values:

  • account_id - column name
  • attributes - column name
  • category - column name
  • created_by - column name
  • creation_date - column name
  • end_at - column name
  • execution_status - column name
  • id - column name
  • last_executed_time - column name
  • last_schedule_time - column name
  • name - column name
  • next_schedule_time - column name
  • notification - column name
  • rule - column name
  • schedule_time - column name
  • source - column name
  • start_at - column name
  • status - column name
  • tenant_id - column name
  • update_by - column name
  • update_date - column name

auto_playbook_actions_aggregate_fields

aggregate fields of "auto_playbook_actions"

Fields:

  • count: Int!
  • max: auto_playbook_actions_max_fields
  • min: auto_playbook_actions_min_fields

auto_playbook_actions_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • config: jsonb

auto_playbook_actions_bool_exp

Boolean expression to filter rows from the table "auto_playbook_actions". All fields are combined with a logical 'AND'.

Fields:

  • Source: String_comparison_exp
  • _and: [auto_playbook_actions_bool_exp!]
  • _not: auto_playbook_actions_bool_exp
  • _or: [auto_playbook_actions_bool_exp!]
  • category: String_comparison_exp
  • config: jsonb_comparison_exp
  • created_at: timestamp_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • updated_at: timestamp_comparison_exp

auto_playbook_actions_constraint

unique or primary key constraints on table "auto_playbook_actions"

Values:

  • auto_playbook_actions_name_key - unique or primary key constraint on columns "name"
  • auto_playbook_actions_pkey - unique or primary key constraint on columns "id"

auto_playbook_actions_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • config: [String!]

auto_playbook_actions_delete_elem_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

Fields:

  • config: Int

auto_playbook_actions_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • config: String

auto_playbook_actions_insert_input

input type for inserting data into table "auto_playbook_actions"

Fields:

  • Source: String
  • category: String
  • config: jsonb
  • created_at: timestamp
  • description: String
  • id: uuid
  • name: String
  • updated_at: timestamp

auto_playbook_actions_max_fields

aggregate max on columns

Fields:

  • Source: String
  • category: String
  • created_at: timestamp
  • description: String
  • id: uuid
  • name: String
  • updated_at: timestamp

auto_playbook_actions_min_fields

aggregate min on columns

Fields:

  • Source: String
  • category: String
  • created_at: timestamp
  • description: String
  • id: uuid
  • name: String
  • updated_at: timestamp

auto_playbook_actions_mutation_response

response of any mutation on the table "auto_playbook_actions"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook_actions!]! - data from the rows affected by the mutation

auto_playbook_actions_on_conflict

on_conflict condition type for table "auto_playbook_actions"

Fields:

  • constraint: auto_playbook_actions_constraint!
  • update_columns: [auto_playbook_actions_update_column!]!
  • where: auto_playbook_actions_bool_exp

auto_playbook_actions_order_by

Ordering options when selecting data from "auto_playbook_actions".

Fields:

  • Source: order_by
  • category: order_by
  • config: order_by
  • created_at: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by

auto_playbook_actions_pk_columns_input

primary key columns input for table: auto_playbook_actions

Fields:

  • id: uuid!

auto_playbook_actions_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • config: jsonb

auto_playbook_actions_select_column

select columns of table "auto_playbook_actions"

Values:

  • Source - column name
  • category - column name
  • config - column name
  • created_at - column name
  • description - column name
  • id - column name
  • name - column name
  • updated_at - column name

auto_playbook_actions_set_input

input type for updating data in table "auto_playbook_actions"

Fields:

  • Source: String
  • category: String
  • config: jsonb
  • created_at: timestamp
  • description: String
  • id: uuid
  • name: String
  • updated_at: timestamp

auto_playbook_actions_stream_cursor_input

Streaming cursor of the table "auto_playbook_actions"

Fields:

  • initial_value: auto_playbook_actions_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_actions_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • Source: String
  • category: String
  • config: jsonb
  • created_at: timestamp
  • description: String
  • id: uuid
  • name: String
  • updated_at: timestamp

auto_playbook_actions_update_column

update columns of table "auto_playbook_actions"

Values:

  • Source - column name
  • category - column name
  • config - column name
  • created_at - column name
  • description - column name
  • id - column name
  • name - column name
  • updated_at - column name

auto_playbook_aggregate_bool_exp

Fields:

  • count: auto_playbook_aggregate_bool_exp_count

auto_playbook_aggregate_bool_exp_count

Fields:

  • arguments: [auto_playbook_select_column!]
  • distinct: Boolean
  • filter: auto_playbook_bool_exp
  • predicate: Int_comparison_exp!

auto_playbook_aggregate_fields

aggregate fields of "auto_playbook"

Fields:

  • count: Int!
  • max: auto_playbook_max_fields
  • min: auto_playbook_min_fields

auto_playbook_aggregate_order_by

order by aggregate values of table "auto_playbook"

Fields:

  • count: order_by
  • max: auto_playbook_max_order_by
  • min: auto_playbook_min_order_by

auto_playbook_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • notification: jsonb
  • resource_filter: jsonb
  • tasks: jsonb
  • trigger: jsonb

auto_playbook_arr_rel_insert_input

input type for inserting array relation for remote table "auto_playbook"

Fields:

  • data: [auto_playbook_insert_input!]!
  • on_conflict: auto_playbook_on_conflict - upsert condition

auto_playbook_bool_exp

Boolean expression to filter rows from the table "auto_playbook". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_playbook_bool_exp!]
  • _not: auto_playbook_bool_exp
  • _or: [auto_playbook_bool_exp!]
  • account_id: uuid_comparison_exp
  • attributes: jsonb_comparison_exp
  • auto_playbook_executions: auto_playbook_executions_bool_exp
  • auto_playbook_executions_aggregate: auto_playbook_executions_aggregate_bool_exp
  • auto_playbook_status: auto_playbook_status_bool_exp
  • auto_playbook_tasks: auto_playbook_task_bool_exp
  • auto_playbook_tasks_aggregate: auto_playbook_task_aggregate_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • end_at: timestamp_comparison_exp
  • execution_status: String_comparison_exp
  • id: uuid_comparison_exp
  • last_executed_time: timestamp_comparison_exp
  • last_schedule_time: timestamp_comparison_exp
  • name: String_comparison_exp
  • notification: jsonb_comparison_exp
  • resource_filter: jsonb_comparison_exp
  • start_at: timestamp_comparison_exp
  • status: auto_playbook_status_enum_comparison_exp
  • tasks: jsonb_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • trigger: jsonb_comparison_exp
  • update_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • updated_by_user: users_bool_exp
  • user: users_bool_exp

auto_playbook_constraint

unique or primary key constraints on table "auto_playbook"

Values:

  • auto_playbook_pkey - unique or primary key constraint on columns "id"
  • auto_playbook_tenant_id_account_id_name_key - unique or primary key constraint on columns "account_id", "tenant_id", "name"

auto_playbook_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]
  • notification: [String!]
  • resource_filter: [String!]
  • tasks: [String!]
  • trigger: [String!]

auto_playbook_delete_elem_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

Fields:

  • attributes: Int
  • notification: Int
  • resource_filter: Int
  • tasks: Int
  • trigger: Int

auto_playbook_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String
  • notification: String
  • resource_filter: String
  • tasks: String
  • trigger: String

auto_playbook_execution_status_aggregate_fields

aggregate fields of "auto_playbook_execution_status"

Fields:

  • count: Int!
  • max: auto_playbook_execution_status_max_fields
  • min: auto_playbook_execution_status_min_fields

auto_playbook_execution_status_bool_exp

Boolean expression to filter rows from the table "auto_playbook_execution_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_playbook_execution_status_bool_exp!]
  • _not: auto_playbook_execution_status_bool_exp
  • _or: [auto_playbook_execution_status_bool_exp!]
  • description: String_comparison_exp
  • values: String_comparison_exp

auto_playbook_execution_status_constraint

unique or primary key constraints on table "auto_playbook_execution_status"

Values:

  • auto_playbook_execution_status_pkey - unique or primary key constraint on columns "values"

auto_playbook_execution_status_insert_input

input type for inserting data into table "auto_playbook_execution_status"

Fields:

  • description: String
  • values: String

auto_playbook_execution_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • values: String

auto_playbook_execution_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • values: String

auto_playbook_execution_status_mutation_response

response of any mutation on the table "auto_playbook_execution_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook_execution_status!]! - data from the rows affected by the mutation

auto_playbook_execution_status_on_conflict

on_conflict condition type for table "auto_playbook_execution_status"

Fields:

  • constraint: auto_playbook_execution_status_constraint!
  • update_columns: [auto_playbook_execution_status_update_column!]!
  • where: auto_playbook_execution_status_bool_exp

auto_playbook_execution_status_order_by

Ordering options when selecting data from "auto_playbook_execution_status".

Fields:

  • description: order_by
  • values: order_by

auto_playbook_execution_status_pk_columns_input

primary key columns input for table: auto_playbook_execution_status

Fields:

  • values: String!

auto_playbook_execution_status_select_column

select columns of table "auto_playbook_execution_status"

Values:

  • description - column name
  • values - column name

auto_playbook_execution_status_set_input

input type for updating data in table "auto_playbook_execution_status"

Fields:

  • description: String
  • values: String

auto_playbook_execution_status_stream_cursor_input

Streaming cursor of the table "auto_playbook_execution_status"

Fields:

  • initial_value: auto_playbook_execution_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_execution_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • values: String

auto_playbook_execution_status_update_column

update columns of table "auto_playbook_execution_status"

Values:

  • description - column name
  • values - column name

auto_playbook_executions_aggregate_bool_exp

Fields:

  • count: auto_playbook_executions_aggregate_bool_exp_count

auto_playbook_executions_aggregate_bool_exp_count

Fields:

  • arguments: [auto_playbook_executions_select_column!]
  • distinct: Boolean
  • filter: auto_playbook_executions_bool_exp
  • predicate: Int_comparison_exp!

auto_playbook_executions_aggregate_fields

aggregate fields of "auto_playbook_executions"

Fields:

  • count: Int!
  • max: auto_playbook_executions_max_fields
  • min: auto_playbook_executions_min_fields

auto_playbook_executions_aggregate_order_by

order by aggregate values of table "auto_playbook_executions"

Fields:

  • count: order_by
  • max: auto_playbook_executions_max_order_by
  • min: auto_playbook_executions_min_order_by

auto_playbook_executions_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attribute: jsonb
  • meta: jsonb

auto_playbook_executions_arr_rel_insert_input

input type for inserting array relation for remote table "auto_playbook_executions"

Fields:

  • data: [auto_playbook_executions_insert_input!]!
  • on_conflict: auto_playbook_executions_on_conflict - upsert condition

auto_playbook_executions_bool_exp

Boolean expression to filter rows from the table "auto_playbook_executions". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_playbook_executions_bool_exp!]
  • _not: auto_playbook_executions_bool_exp
  • _or: [auto_playbook_executions_bool_exp!]
  • account_id: uuid_comparison_exp
  • attribute: jsonb_comparison_exp
  • auto_playbook: auto_playbook_bool_exp
  • auto_playbook_execution_status_fkey: auto_pilot_execution_status_bool_exp
  • auto_playbook_id: uuid_comparison_exp
  • auto_playbook_tasks: auto_playbook_task_bool_exp
  • auto_playbook_tasks_aggregate: auto_playbook_task_aggregate_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • meta: jsonb_comparison_exp
  • scheduled_at: timestamp_comparison_exp
  • skipeed_by_user: users_bool_exp
  • skipped_by: uuid_comparison_exp
  • status: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

auto_playbook_executions_constraint

unique or primary key constraints on table "auto_playbook_executions"

Values:

  • auto_playbook_executions_pkey - unique or primary key constraint on columns "id"

auto_playbook_executions_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attribute: [String!]
  • meta: [String!]

auto_playbook_executions_delete_elem_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

Fields:

  • attribute: Int
  • meta: Int

auto_playbook_executions_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attribute: String
  • meta: String

auto_playbook_executions_insert_input

input type for inserting data into table "auto_playbook_executions"

Fields:

  • account_id: uuid
  • attribute: jsonb
  • auto_playbook: auto_playbook_obj_rel_insert_input
  • auto_playbook_execution_status_fkey: auto_pilot_execution_status_obj_rel_insert_input
  • auto_playbook_id: uuid
  • auto_playbook_tasks: auto_playbook_task_arr_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • id: uuid
  • meta: jsonb
  • scheduled_at: timestamp
  • skipeed_by_user: users_obj_rel_insert_input
  • skipped_by: uuid
  • status: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_executions_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • auto_playbook_id: uuid
  • created_at: timestamp
  • id: uuid
  • scheduled_at: timestamp
  • skipped_by: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_executions_max_order_by

order by max() on columns of table "auto_playbook_executions"

Fields:

  • account_id: order_by
  • auto_playbook_id: order_by
  • created_at: order_by
  • id: order_by
  • scheduled_at: order_by
  • skipped_by: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_playbook_executions_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • auto_playbook_id: uuid
  • created_at: timestamp
  • id: uuid
  • scheduled_at: timestamp
  • skipped_by: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_executions_min_order_by

order by min() on columns of table "auto_playbook_executions"

Fields:

  • account_id: order_by
  • auto_playbook_id: order_by
  • created_at: order_by
  • id: order_by
  • scheduled_at: order_by
  • skipped_by: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_playbook_executions_mutation_response

response of any mutation on the table "auto_playbook_executions"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook_executions!]! - data from the rows affected by the mutation

auto_playbook_executions_obj_rel_insert_input

input type for inserting object relation for remote table "auto_playbook_executions"

Fields:

  • data: auto_playbook_executions_insert_input!
  • on_conflict: auto_playbook_executions_on_conflict - upsert condition

auto_playbook_executions_on_conflict

on_conflict condition type for table "auto_playbook_executions"

Fields:

  • constraint: auto_playbook_executions_constraint!
  • update_columns: [auto_playbook_executions_update_column!]!
  • where: auto_playbook_executions_bool_exp

auto_playbook_executions_order_by

Ordering options when selecting data from "auto_playbook_executions".

Fields:

  • account_id: order_by
  • attribute: order_by
  • auto_playbook: auto_playbook_order_by
  • auto_playbook_execution_status_fkey: auto_pilot_execution_status_order_by
  • auto_playbook_id: order_by
  • auto_playbook_tasks_aggregate: auto_playbook_task_aggregate_order_by
  • cloud_account: cloud_accounts_order_by
  • created_at: order_by
  • id: order_by
  • meta: order_by
  • scheduled_at: order_by
  • skipeed_by_user: users_order_by
  • skipped_by: order_by
  • status: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_playbook_executions_pk_columns_input

primary key columns input for table: auto_playbook_executions

Fields:

  • id: uuid!

auto_playbook_executions_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attribute: jsonb
  • meta: jsonb

auto_playbook_executions_select_column

select columns of table "auto_playbook_executions"

Values:

  • account_id - column name
  • attribute - column name
  • auto_playbook_id - column name
  • created_at - column name
  • id - column name
  • meta - column name
  • scheduled_at - column name
  • skipped_by - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name

auto_playbook_executions_set_input

input type for updating data in table "auto_playbook_executions"

Fields:

  • account_id: uuid
  • attribute: jsonb
  • auto_playbook_id: uuid
  • created_at: timestamp
  • id: uuid
  • meta: jsonb
  • scheduled_at: timestamp
  • skipped_by: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_executions_stream_cursor_input

Streaming cursor of the table "auto_playbook_executions"

Fields:

  • initial_value: auto_playbook_executions_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_executions_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • attribute: jsonb
  • auto_playbook_id: uuid
  • created_at: timestamp
  • id: uuid
  • meta: jsonb
  • scheduled_at: timestamp
  • skipped_by: uuid
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_executions_update_column

update columns of table "auto_playbook_executions"

Values:

  • account_id - column name
  • attribute - column name
  • auto_playbook_id - column name
  • created_at - column name
  • id - column name
  • meta - column name
  • scheduled_at - column name
  • skipped_by - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name

auto_playbook_insert_input

input type for inserting data into table "auto_playbook"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • auto_playbook_executions: auto_playbook_executions_arr_rel_insert_input
  • auto_playbook_status: auto_playbook_status_obj_rel_insert_input
  • auto_playbook_tasks: auto_playbook_task_arr_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • notification: jsonb
  • resource_filter: jsonb
  • start_at: timestamp
  • status: auto_playbook_status_enum
  • tasks: jsonb
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • trigger: jsonb
  • update_at: timestamp
  • updated_by: uuid
  • updated_by_user: users_obj_rel_insert_input
  • user: users_obj_rel_insert_input

auto_playbook_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • start_at: timestamp
  • tenant_id: uuid
  • update_at: timestamp
  • updated_by: uuid

auto_playbook_max_order_by

order by max() on columns of table "auto_playbook"

Fields:

  • account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • end_at: order_by
  • execution_status: order_by
  • id: order_by
  • last_executed_time: order_by
  • last_schedule_time: order_by
  • name: order_by
  • start_at: order_by
  • tenant_id: order_by
  • update_at: order_by
  • updated_by: order_by

auto_playbook_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • start_at: timestamp
  • tenant_id: uuid
  • update_at: timestamp
  • updated_by: uuid

auto_playbook_min_order_by

order by min() on columns of table "auto_playbook"

Fields:

  • account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • end_at: order_by
  • execution_status: order_by
  • id: order_by
  • last_executed_time: order_by
  • last_schedule_time: order_by
  • name: order_by
  • start_at: order_by
  • tenant_id: order_by
  • update_at: order_by
  • updated_by: order_by

auto_playbook_mutation_response

response of any mutation on the table "auto_playbook"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook!]! - data from the rows affected by the mutation

auto_playbook_obj_rel_insert_input

input type for inserting object relation for remote table "auto_playbook"

Fields:

  • data: auto_playbook_insert_input!
  • on_conflict: auto_playbook_on_conflict - upsert condition

auto_playbook_on_conflict

on_conflict condition type for table "auto_playbook"

Fields:

  • constraint: auto_playbook_constraint!
  • update_columns: [auto_playbook_update_column!]!
  • where: auto_playbook_bool_exp

auto_playbook_order_by

Ordering options when selecting data from "auto_playbook".

Fields:

  • account_id: order_by
  • attributes: order_by
  • auto_playbook_executions_aggregate: auto_playbook_executions_aggregate_order_by
  • auto_playbook_status: auto_playbook_status_order_by
  • auto_playbook_tasks_aggregate: auto_playbook_task_aggregate_order_by
  • cloud_account: cloud_accounts_order_by
  • created_at: order_by
  • created_by: order_by
  • end_at: order_by
  • execution_status: order_by
  • id: order_by
  • last_executed_time: order_by
  • last_schedule_time: order_by
  • name: order_by
  • notification: order_by
  • resource_filter: order_by
  • start_at: order_by
  • status: order_by
  • tasks: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • trigger: order_by
  • update_at: order_by
  • updated_by: order_by
  • updated_by_user: users_order_by
  • user: users_order_by

auto_playbook_pk_columns_input

primary key columns input for table: auto_playbook

Fields:

  • id: uuid!

auto_playbook_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • notification: jsonb
  • resource_filter: jsonb
  • tasks: jsonb
  • trigger: jsonb

auto_playbook_select_column

select columns of table "auto_playbook"

Values:

  • account_id - column name
  • attributes - column name
  • created_at - column name
  • created_by - column name
  • end_at - column name
  • execution_status - column name
  • id - column name
  • last_executed_time - column name
  • last_schedule_time - column name
  • name - column name
  • notification - column name
  • resource_filter - column name
  • start_at - column name
  • status - column name
  • tasks - column name
  • tenant_id - column name
  • trigger - column name
  • update_at - column name
  • updated_by - column name

auto_playbook_set_input

input type for updating data in table "auto_playbook"

Fields:

  • account_id: uuid
  • attributes: jsonb
  • created_at: timestamp
  • created_by: uuid
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • notification: jsonb
  • resource_filter: jsonb
  • start_at: timestamp
  • status: auto_playbook_status_enum
  • tasks: jsonb
  • tenant_id: uuid
  • trigger: jsonb
  • update_at: timestamp
  • updated_by: uuid

auto_playbook_status_aggregate_fields

aggregate fields of "auto_playbook_status"

Fields:

  • count: Int!
  • max: auto_playbook_status_max_fields
  • min: auto_playbook_status_min_fields

auto_playbook_status_bool_exp

Boolean expression to filter rows from the table "auto_playbook_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_playbook_status_bool_exp!]
  • _not: auto_playbook_status_bool_exp
  • _or: [auto_playbook_status_bool_exp!]
  • auto_playbooks: auto_playbook_bool_exp
  • auto_playbooks_aggregate: auto_playbook_aggregate_bool_exp
  • description: String_comparison_exp
  • value: String_comparison_exp

auto_playbook_status_constraint

unique or primary key constraints on table "auto_playbook_status"

Values:

  • auto_playbook_status_pkey - unique or primary key constraint on columns "value"

auto_playbook_status_insert_input

input type for inserting data into table "auto_playbook_status"

Fields:

  • auto_playbooks: auto_playbook_arr_rel_insert_input
  • description: String
  • value: String

auto_playbook_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

auto_playbook_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

auto_playbook_status_mutation_response

response of any mutation on the table "auto_playbook_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook_status!]! - data from the rows affected by the mutation

auto_playbook_status_obj_rel_insert_input

input type for inserting object relation for remote table "auto_playbook_status"

Fields:

  • data: auto_playbook_status_insert_input!
  • on_conflict: auto_playbook_status_on_conflict - upsert condition

auto_playbook_status_on_conflict

on_conflict condition type for table "auto_playbook_status"

Fields:

  • constraint: auto_playbook_status_constraint!
  • update_columns: [auto_playbook_status_update_column!]!
  • where: auto_playbook_status_bool_exp

auto_playbook_status_order_by

Ordering options when selecting data from "auto_playbook_status".

Fields:

  • auto_playbooks_aggregate: auto_playbook_aggregate_order_by
  • description: order_by
  • value: order_by

auto_playbook_status_pk_columns_input

primary key columns input for table: auto_playbook_status

Fields:

  • value: String!

auto_playbook_status_select_column

select columns of table "auto_playbook_status"

Values:

  • description - column name
  • value - column name

auto_playbook_status_set_input

input type for updating data in table "auto_playbook_status"

Fields:

  • description: String
  • value: String

auto_playbook_status_stream_cursor_input

Streaming cursor of the table "auto_playbook_status"

Fields:

  • initial_value: auto_playbook_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

auto_playbook_status_update_column

update columns of table "auto_playbook_status"

Values:

  • description - column name
  • value - column name

auto_playbook_stream_cursor_input

Streaming cursor of the table "auto_playbook"

Fields:

  • initial_value: auto_playbook_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • attributes: jsonb
  • created_at: timestamp
  • created_by: uuid
  • end_at: timestamp
  • execution_status: String
  • id: uuid
  • last_executed_time: timestamp
  • last_schedule_time: timestamp
  • name: String
  • notification: jsonb
  • resource_filter: jsonb
  • start_at: timestamp
  • status: auto_playbook_status_enum
  • tasks: jsonb
  • tenant_id: uuid
  • trigger: jsonb
  • update_at: timestamp
  • updated_by: uuid

auto_playbook_task_aggregate_bool_exp

Fields:

  • count: auto_playbook_task_aggregate_bool_exp_count

auto_playbook_task_aggregate_bool_exp_count

Fields:

  • arguments: [auto_playbook_task_select_column!]
  • distinct: Boolean
  • filter: auto_playbook_task_bool_exp
  • predicate: Int_comparison_exp!

auto_playbook_task_aggregate_fields

aggregate fields of "auto_playbook_task"

Fields:

  • count: Int!
  • max: auto_playbook_task_max_fields
  • min: auto_playbook_task_min_fields

auto_playbook_task_aggregate_order_by

order by aggregate values of table "auto_playbook_task"

Fields:

  • count: order_by
  • max: auto_playbook_task_max_order_by
  • min: auto_playbook_task_min_order_by

auto_playbook_task_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • meta_data: jsonb
  • resource: jsonb

auto_playbook_task_arr_rel_insert_input

input type for inserting array relation for remote table "auto_playbook_task"

Fields:

  • data: [auto_playbook_task_insert_input!]!
  • on_conflict: auto_playbook_task_on_conflict - upsert condition

auto_playbook_task_bool_exp

Boolean expression to filter rows from the table "auto_playbook_task". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_playbook_task_bool_exp!]
  • _not: auto_playbook_task_bool_exp
  • _or: [auto_playbook_task_bool_exp!]
  • account_id: uuid_comparison_exp
  • action_id: uuid_comparison_exp
  • action_type: String_comparison_exp
  • attributes: jsonb_comparison_exp
  • auto_playbook: auto_playbook_bool_exp
  • auto_playbook_execution: auto_playbook_executions_bool_exp
  • auto_playbook_id: uuid_comparison_exp
  • auto_playbook_task_status: auto_playbook_task_status_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • error: String_comparison_exp
  • execution_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • meta_data: jsonb_comparison_exp
  • name: String_comparison_exp
  • reason: String_comparison_exp
  • resource: jsonb_comparison_exp
  • result: String_comparison_exp
  • runbook_task_outputs: runbook_task_output_bool_exp
  • runbook_task_outputs_aggregate: runbook_task_output_aggregate_bool_exp
  • scheduled_time: timestamp_comparison_exp
  • status: String_comparison_exp
  • task_type: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

auto_playbook_task_constraint

unique or primary key constraints on table "auto_playbook_task"

Values:

  • auto_playbook_task_pkey - unique or primary key constraint on columns "id"

auto_playbook_task_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]
  • meta_data: [String!]
  • resource: [String!]

auto_playbook_task_delete_elem_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

Fields:

  • attributes: Int
  • meta_data: Int
  • resource: Int

auto_playbook_task_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String
  • meta_data: String
  • resource: String

auto_playbook_task_insert_input

input type for inserting data into table "auto_playbook_task"

Fields:

  • account_id: uuid
  • action_id: uuid
  • action_type: String
  • attributes: jsonb
  • auto_playbook: auto_playbook_obj_rel_insert_input
  • auto_playbook_execution: auto_playbook_executions_obj_rel_insert_input
  • auto_playbook_id: uuid
  • auto_playbook_task_status: auto_playbook_task_status_obj_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • error: String
  • execution_id: uuid
  • id: uuid
  • meta_data: jsonb
  • name: String
  • reason: String
  • resource: jsonb
  • result: String
  • runbook_task_outputs: runbook_task_output_arr_rel_insert_input
  • scheduled_time: timestamp
  • status: String
  • task_type: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_task_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • action_id: uuid
  • action_type: String
  • auto_playbook_id: uuid
  • created_at: timestamp
  • error: String
  • execution_id: uuid
  • id: uuid
  • name: String
  • reason: String
  • result: String
  • scheduled_time: timestamp
  • status: String
  • task_type: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_task_max_order_by

order by max() on columns of table "auto_playbook_task"

Fields:

  • account_id: order_by
  • action_id: order_by
  • action_type: order_by
  • auto_playbook_id: order_by
  • created_at: order_by
  • error: order_by
  • execution_id: order_by
  • id: order_by
  • name: order_by
  • reason: order_by
  • result: order_by
  • scheduled_time: order_by
  • status: order_by
  • task_type: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_playbook_task_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • action_id: uuid
  • action_type: String
  • auto_playbook_id: uuid
  • created_at: timestamp
  • error: String
  • execution_id: uuid
  • id: uuid
  • name: String
  • reason: String
  • result: String
  • scheduled_time: timestamp
  • status: String
  • task_type: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_task_min_order_by

order by min() on columns of table "auto_playbook_task"

Fields:

  • account_id: order_by
  • action_id: order_by
  • action_type: order_by
  • auto_playbook_id: order_by
  • created_at: order_by
  • error: order_by
  • execution_id: order_by
  • id: order_by
  • name: order_by
  • reason: order_by
  • result: order_by
  • scheduled_time: order_by
  • status: order_by
  • task_type: order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_playbook_task_mutation_response

response of any mutation on the table "auto_playbook_task"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook_task!]! - data from the rows affected by the mutation

auto_playbook_task_obj_rel_insert_input

input type for inserting object relation for remote table "auto_playbook_task"

Fields:

  • data: auto_playbook_task_insert_input!
  • on_conflict: auto_playbook_task_on_conflict - upsert condition

auto_playbook_task_on_conflict

on_conflict condition type for table "auto_playbook_task"

Fields:

  • constraint: auto_playbook_task_constraint!
  • update_columns: [auto_playbook_task_update_column!]!
  • where: auto_playbook_task_bool_exp

auto_playbook_task_order_by

Ordering options when selecting data from "auto_playbook_task".

Fields:

  • account_id: order_by
  • action_id: order_by
  • action_type: order_by
  • attributes: order_by
  • auto_playbook: auto_playbook_order_by
  • auto_playbook_execution: auto_playbook_executions_order_by
  • auto_playbook_id: order_by
  • auto_playbook_task_status: auto_playbook_task_status_order_by
  • cloud_account: cloud_accounts_order_by
  • created_at: order_by
  • error: order_by
  • execution_id: order_by
  • id: order_by
  • meta_data: order_by
  • name: order_by
  • reason: order_by
  • resource: order_by
  • result: order_by
  • runbook_task_outputs_aggregate: runbook_task_output_aggregate_order_by
  • scheduled_time: order_by
  • status: order_by
  • task_type: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by

auto_playbook_task_pk_columns_input

primary key columns input for table: auto_playbook_task

Fields:

  • id: uuid!

auto_playbook_task_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • meta_data: jsonb
  • resource: jsonb

auto_playbook_task_select_column

select columns of table "auto_playbook_task"

Values:

  • account_id - column name
  • action_id - column name
  • action_type - column name
  • attributes - column name
  • auto_playbook_id - column name
  • created_at - column name
  • error - column name
  • execution_id - column name
  • id - column name
  • meta_data - column name
  • name - column name
  • reason - column name
  • resource - column name
  • result - column name
  • scheduled_time - column name
  • status - column name
  • task_type - column name
  • tenant_id - column name
  • updated_at - column name

auto_playbook_task_set_input

input type for updating data in table "auto_playbook_task"

Fields:

  • account_id: uuid
  • action_id: uuid
  • action_type: String
  • attributes: jsonb
  • auto_playbook_id: uuid
  • created_at: timestamp
  • error: String
  • execution_id: uuid
  • id: uuid
  • meta_data: jsonb
  • name: String
  • reason: String
  • resource: jsonb
  • result: String
  • scheduled_time: timestamp
  • status: String
  • task_type: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_task_status_aggregate_fields

aggregate fields of "auto_playbook_task_status"

Fields:

  • count: Int!
  • max: auto_playbook_task_status_max_fields
  • min: auto_playbook_task_status_min_fields

auto_playbook_task_status_bool_exp

Boolean expression to filter rows from the table "auto_playbook_task_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auto_playbook_task_status_bool_exp!]
  • _not: auto_playbook_task_status_bool_exp
  • _or: [auto_playbook_task_status_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

auto_playbook_task_status_constraint

unique or primary key constraints on table "auto_playbook_task_status"

Values:

  • auto_playbook_task_status_pkey - unique or primary key constraint on columns "value"

auto_playbook_task_status_insert_input

input type for inserting data into table "auto_playbook_task_status"

Fields:

  • description: String
  • value: String

auto_playbook_task_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

auto_playbook_task_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

auto_playbook_task_status_mutation_response

response of any mutation on the table "auto_playbook_task_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auto_playbook_task_status!]! - data from the rows affected by the mutation

auto_playbook_task_status_obj_rel_insert_input

input type for inserting object relation for remote table "auto_playbook_task_status"

Fields:

  • data: auto_playbook_task_status_insert_input!
  • on_conflict: auto_playbook_task_status_on_conflict - upsert condition

auto_playbook_task_status_on_conflict

on_conflict condition type for table "auto_playbook_task_status"

Fields:

  • constraint: auto_playbook_task_status_constraint!
  • update_columns: [auto_playbook_task_status_update_column!]!
  • where: auto_playbook_task_status_bool_exp

auto_playbook_task_status_order_by

Ordering options when selecting data from "auto_playbook_task_status".

Fields:

  • description: order_by
  • value: order_by

auto_playbook_task_status_pk_columns_input

primary key columns input for table: auto_playbook_task_status

Fields:

  • value: String!

auto_playbook_task_status_select_column

select columns of table "auto_playbook_task_status"

Values:

  • description - column name
  • value - column name

auto_playbook_task_status_set_input

input type for updating data in table "auto_playbook_task_status"

Fields:

  • description: String
  • value: String

auto_playbook_task_status_stream_cursor_input

Streaming cursor of the table "auto_playbook_task_status"

Fields:

  • initial_value: auto_playbook_task_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_task_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

auto_playbook_task_status_update_column

update columns of table "auto_playbook_task_status"

Values:

  • description - column name
  • value - column name

auto_playbook_task_stream_cursor_input

Streaming cursor of the table "auto_playbook_task"

Fields:

  • initial_value: auto_playbook_task_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auto_playbook_task_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • action_id: uuid
  • action_type: String
  • attributes: jsonb
  • auto_playbook_id: uuid
  • created_at: timestamp
  • error: String
  • execution_id: uuid
  • id: uuid
  • meta_data: jsonb
  • name: String
  • reason: String
  • resource: jsonb
  • result: String
  • scheduled_time: timestamp
  • status: String
  • task_type: String
  • tenant_id: uuid
  • updated_at: timestamp

auto_playbook_task_update_column

update columns of table "auto_playbook_task"

Values:

  • account_id - column name
  • action_id - column name
  • action_type - column name
  • attributes - column name
  • auto_playbook_id - column name
  • created_at - column name
  • error - column name
  • execution_id - column name
  • id - column name
  • meta_data - column name
  • name - column name
  • reason - column name
  • resource - column name
  • result - column name
  • scheduled_time - column name
  • status - column name
  • task_type - column name
  • tenant_id - column name
  • updated_at - column name

auto_playbook_update_column

update columns of table "auto_playbook"

Values:

  • account_id - column name
  • attributes - column name
  • created_at - column name
  • created_by - column name
  • end_at - column name
  • execution_status - column name
  • id - column name
  • last_executed_time - column name
  • last_schedule_time - column name
  • name - column name
  • notification - column name
  • resource_filter - column name
  • start_at - column name
  • status - column name
  • tasks - column name
  • tenant_id - column name
  • trigger - column name
  • update_at - column name
  • updated_by - column name

autopilot_attributes_aggregate_fields

aggregate fields of "autopilot_attributes"

Fields:

  • count: Int!
  • max: autopilot_attributes_max_fields
  • min: autopilot_attributes_min_fields

autopilot_attributes_bool_exp

Boolean expression to filter rows from the table "autopilot_attributes". All fields are combined with a logical 'AND'.

Fields:

  • _and: [autopilot_attributes_bool_exp!]
  • _not: autopilot_attributes_bool_exp
  • _or: [autopilot_attributes_bool_exp!]
  • id: uuid_comparison_exp
  • key: String_comparison_exp
  • value: String_comparison_exp

autopilot_attributes_constraint

unique or primary key constraints on table "autopilot_attributes"

Values:

  • autopilot_attributes_key_key - unique or primary key constraint on columns "key"
  • autopilot_attributes_pkey - unique or primary key constraint on columns "id"

autopilot_attributes_insert_input

input type for inserting data into table "autopilot_attributes"

Fields:

  • id: uuid
  • key: String
  • value: String

autopilot_attributes_max_fields

aggregate max on columns

Fields:

  • id: uuid
  • key: String
  • value: String

autopilot_attributes_min_fields

aggregate min on columns

Fields:

  • id: uuid
  • key: String
  • value: String

autopilot_attributes_mutation_response

response of any mutation on the table "autopilot_attributes"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [autopilot_attributes!]! - data from the rows affected by the mutation

autopilot_attributes_on_conflict

on_conflict condition type for table "autopilot_attributes"

Fields:

  • constraint: autopilot_attributes_constraint!
  • update_columns: [autopilot_attributes_update_column!]!
  • where: autopilot_attributes_bool_exp

autopilot_attributes_order_by

Ordering options when selecting data from "autopilot_attributes".

Fields:

  • id: order_by
  • key: order_by
  • value: order_by

autopilot_attributes_pk_columns_input

primary key columns input for table: autopilot_attributes

Fields:

  • id: uuid!

autopilot_attributes_select_column

select columns of table "autopilot_attributes"

Values:

  • id - column name
  • key - column name
  • value - column name

autopilot_attributes_set_input

input type for updating data in table "autopilot_attributes"

Fields:

  • id: uuid
  • key: String
  • value: String

autopilot_attributes_stream_cursor_input

Streaming cursor of the table "autopilot_attributes"

Fields:

  • initial_value: autopilot_attributes_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

autopilot_attributes_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • id: uuid
  • key: String
  • value: String

autopilot_attributes_update_column

update columns of table "autopilot_attributes"

Values:

  • id - column name
  • key - column name
  • value - column name
Agents (171 types)

agent_aggregate_bool_exp

Fields:

  • count: agent_aggregate_bool_exp_count

agent_aggregate_bool_exp_count

Fields:

  • arguments: [agent_select_column!]
  • distinct: Boolean
  • filter: agent_bool_exp
  • predicate: Int_comparison_exp!

agent_aggregate_fields

aggregate fields of "agent"

Fields:

  • count: Int!
  • max: agent_max_fields
  • min: agent_min_fields

agent_aggregate_order_by

order by aggregate values of table "agent"

Fields:

  • count: order_by
  • max: agent_max_order_by
  • min: agent_min_order_by

agent_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • connection_status: jsonb

agent_arr_rel_insert_input

input type for inserting array relation for remote table "agent"

Fields:

  • data: [agent_insert_input!]!
  • on_conflict: agent_on_conflict - upsert condition

agent_audit_log_aggregate_fields

aggregate fields of "agent_audit_log"

Fields:

  • avg: agent_audit_log_avg_fields
  • count: Int!
  • max: agent_audit_log_max_fields
  • min: agent_audit_log_min_fields
  • stddev: agent_audit_log_stddev_fields
  • stddev_pop: agent_audit_log_stddev_pop_fields
  • stddev_samp: agent_audit_log_stddev_samp_fields
  • sum: agent_audit_log_sum_fields
  • var_pop: agent_audit_log_var_pop_fields
  • var_samp: agent_audit_log_var_samp_fields
  • variance: agent_audit_log_variance_fields

agent_audit_log_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • headers: jsonb

agent_audit_log_avg_fields

aggregate avg on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_audit_log_bool_exp

Boolean expression to filter rows from the table "agent_audit_log". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_audit_log_bool_exp!]
  • _not: agent_audit_log_bool_exp
  • _or: [agent_audit_log_bool_exp!]
  • agent_id: uuid_comparison_exp
  • client_ip: String_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • headers: jsonb_comparison_exp
  • id: uuid_comparison_exp
  • method: String_comparison_exp
  • status_code: Int_comparison_exp
  • tenant_id: uuid_comparison_exp
  • time_taken: Int_comparison_exp
  • updated_at: timestamp_comparison_exp
  • url: String_comparison_exp

agent_audit_log_constraint

unique or primary key constraints on table "agent_audit_log"

Values:

  • agent_audit_log_pkey - unique or primary key constraint on columns "id"

agent_audit_log_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • headers: [String!]

agent_audit_log_delete_elem_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

Fields:

  • headers: Int

agent_audit_log_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • headers: String

agent_audit_log_inc_input

input type for incrementing numeric columns in table "agent_audit_log"

Fields:

  • status_code: Int
  • time_taken: Int

agent_audit_log_insert_input

input type for inserting data into table "agent_audit_log"

Fields:

  • agent_id: uuid
  • client_ip: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • headers: jsonb
  • id: uuid
  • method: String
  • status_code: Int
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp
  • url: String

agent_audit_log_max_fields

aggregate max on columns

Fields:

  • agent_id: uuid
  • client_ip: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • method: String
  • status_code: Int
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp
  • url: String

agent_audit_log_min_fields

aggregate min on columns

Fields:

  • agent_id: uuid
  • client_ip: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • method: String
  • status_code: Int
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp
  • url: String

agent_audit_log_mutation_response

response of any mutation on the table "agent_audit_log"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_audit_log!]! - data from the rows affected by the mutation

agent_audit_log_on_conflict

on_conflict condition type for table "agent_audit_log"

Fields:

  • constraint: agent_audit_log_constraint!
  • update_columns: [agent_audit_log_update_column!]!
  • where: agent_audit_log_bool_exp

agent_audit_log_order_by

Ordering options when selecting data from "agent_audit_log".

Fields:

  • agent_id: order_by
  • client_ip: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • headers: order_by
  • id: order_by
  • method: order_by
  • status_code: order_by
  • tenant_id: order_by
  • time_taken: order_by
  • updated_at: order_by
  • url: order_by

agent_audit_log_pk_columns_input

primary key columns input for table: agent_audit_log

Fields:

  • id: uuid!

agent_audit_log_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • headers: jsonb

agent_audit_log_select_column

select columns of table "agent_audit_log"

Values:

  • agent_id - column name
  • client_ip - column name
  • cloud_account_id - column name
  • created_at - column name
  • headers - column name
  • id - column name
  • method - column name
  • status_code - column name
  • tenant_id - column name
  • time_taken - column name
  • updated_at - column name
  • url - column name

agent_audit_log_set_input

input type for updating data in table "agent_audit_log"

Fields:

  • agent_id: uuid
  • client_ip: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • headers: jsonb
  • id: uuid
  • method: String
  • status_code: Int
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp
  • url: String

agent_audit_log_stddev_fields

aggregate stddev on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_audit_log_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_audit_log_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_audit_log_stream_cursor_input

Streaming cursor of the table "agent_audit_log"

Fields:

  • initial_value: agent_audit_log_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_audit_log_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • agent_id: uuid
  • client_ip: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • headers: jsonb
  • id: uuid
  • method: String
  • status_code: Int
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp
  • url: String

agent_audit_log_sum_fields

aggregate sum on columns

Fields:

  • status_code: Int
  • time_taken: Int

agent_audit_log_update_column

update columns of table "agent_audit_log"

Values:

  • agent_id - column name
  • client_ip - column name
  • cloud_account_id - column name
  • created_at - column name
  • headers - column name
  • id - column name
  • method - column name
  • status_code - column name
  • tenant_id - column name
  • time_taken - column name
  • updated_at - column name
  • url - column name

agent_audit_log_var_pop_fields

aggregate var_pop on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_audit_log_var_samp_fields

aggregate var_samp on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_audit_log_variance_fields

aggregate variance on columns

Fields:

  • status_code: Float
  • time_taken: Float

agent_bool_exp

Boolean expression to filter rows from the table "agent". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_bool_exp!]
  • _not: agent_bool_exp
  • _or: [agent_bool_exp!]
  • access_key: String_comparison_exp
  • access_secret: String_comparison_exp
  • access_secret_v2: String_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • connection_status: jsonb_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • k8s_provider: String_comparison_exp
  • k8s_version: String_comparison_exp
  • last_connected_at: timestamp_comparison_exp
  • last_synced_at: timestamp_comparison_exp
  • status: String_comparison_exp
  • status_message: String_comparison_exp
  • tenant: uuid_comparison_exp
  • type: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • version: String_comparison_exp

agent_constraint

unique or primary key constraints on table "agent"

Values:

  • agent_access_key - unique or primary key constraint on columns "access_key"
  • agent_pkey - unique or primary key constraint on columns "id"
  • agent_tenant_account_type - unique or primary key constraint on columns "tenant", "type", "cloud_account_id"

agent_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • connection_status: [String!]

agent_delete_elem_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

Fields:

  • connection_status: Int

agent_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • connection_status: String

agent_insert_input

input type for inserting data into table "agent"

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • cloud_account_id: uuid
  • connection_status: jsonb
  • created_at: timestamp
  • id: uuid
  • k8s_provider: String
  • k8s_version: String
  • last_connected_at: timestamp
  • last_synced_at: timestamp
  • status: String
  • status_message: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • version: String

agent_max_fields

aggregate max on columns

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • k8s_provider: String
  • k8s_version: String
  • last_connected_at: timestamp
  • last_synced_at: timestamp
  • status: String
  • status_message: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • version: String

agent_max_order_by

order by max() on columns of table "agent"

Fields:

  • access_key: order_by
  • access_secret: order_by
  • access_secret_v2: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • k8s_provider: order_by
  • k8s_version: order_by
  • last_connected_at: order_by
  • last_synced_at: order_by
  • status: order_by
  • status_message: order_by
  • tenant: order_by
  • type: order_by
  • updated_at: order_by
  • version: order_by

agent_min_fields

aggregate min on columns

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • k8s_provider: String
  • k8s_version: String
  • last_connected_at: timestamp
  • last_synced_at: timestamp
  • status: String
  • status_message: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • version: String

agent_min_order_by

order by min() on columns of table "agent"

Fields:

  • access_key: order_by
  • access_secret: order_by
  • access_secret_v2: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • k8s_provider: order_by
  • k8s_version: order_by
  • last_connected_at: order_by
  • last_synced_at: order_by
  • status: order_by
  • status_message: order_by
  • tenant: order_by
  • type: order_by
  • updated_at: order_by
  • version: order_by

agent_mutation_response

response of any mutation on the table "agent"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent!]! - data from the rows affected by the mutation

agent_on_conflict

on_conflict condition type for table "agent"

Fields:

  • constraint: agent_constraint!
  • update_columns: [agent_update_column!]!
  • where: agent_bool_exp

agent_order_by

Ordering options when selecting data from "agent".

Fields:

  • access_key: order_by
  • access_secret: order_by
  • access_secret_v2: order_by
  • cloud_account_id: order_by
  • connection_status: order_by
  • created_at: order_by
  • id: order_by
  • k8s_provider: order_by
  • k8s_version: order_by
  • last_connected_at: order_by
  • last_synced_at: order_by
  • status: order_by
  • status_message: order_by
  • tenant: order_by
  • type: order_by
  • updated_at: order_by
  • version: order_by

agent_pk_columns_input

primary key columns input for table: agent

Fields:

  • id: uuid!

agent_playbook_action_aggregate_fields

aggregate fields of "agent_playbook_action"

Fields:

  • count: Int!
  • max: agent_playbook_action_max_fields
  • min: agent_playbook_action_min_fields

agent_playbook_action_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • params: jsonb

agent_playbook_action_bool_exp

Boolean expression to filter rows from the table "agent_playbook_action". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_playbook_action_bool_exp!]
  • _not: agent_playbook_action_bool_exp
  • _or: [agent_playbook_action_bool_exp!]
  • action_name: String_comparison_exp
  • category: String_comparison_exp
  • description: String_comparison_exp
  • display_name: String_comparison_exp
  • execution_mode: String_comparison_exp
  • name: String_comparison_exp
  • params: jsonb_comparison_exp
  • source: String_comparison_exp

agent_playbook_action_constraint

unique or primary key constraints on table "agent_playbook_action"

Values:

  • agent_playbook_action_pkey - unique or primary key constraint on columns "name"

agent_playbook_action_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • params: [String!]

agent_playbook_action_delete_elem_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

Fields:

  • params: Int

agent_playbook_action_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • params: String

agent_playbook_action_insert_input

input type for inserting data into table "agent_playbook_action"

Fields:

  • action_name: String
  • category: String
  • description: String
  • display_name: String
  • execution_mode: String
  • name: String
  • params: jsonb
  • source: String

agent_playbook_action_max_fields

aggregate max on columns

Fields:

  • action_name: String
  • category: String
  • description: String
  • display_name: String
  • execution_mode: String
  • name: String
  • source: String

agent_playbook_action_min_fields

aggregate min on columns

Fields:

  • action_name: String
  • category: String
  • description: String
  • display_name: String
  • execution_mode: String
  • name: String
  • source: String

agent_playbook_action_mutation_response

response of any mutation on the table "agent_playbook_action"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_playbook_action!]! - data from the rows affected by the mutation

agent_playbook_action_on_conflict

on_conflict condition type for table "agent_playbook_action"

Fields:

  • constraint: agent_playbook_action_constraint!
  • update_columns: [agent_playbook_action_update_column!]!
  • where: agent_playbook_action_bool_exp

agent_playbook_action_order_by

Ordering options when selecting data from "agent_playbook_action".

Fields:

  • action_name: order_by
  • category: order_by
  • description: order_by
  • display_name: order_by
  • execution_mode: order_by
  • name: order_by
  • params: order_by
  • source: order_by

agent_playbook_action_pk_columns_input

primary key columns input for table: agent_playbook_action

Fields:

  • name: String!

agent_playbook_action_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • params: jsonb

agent_playbook_action_select_column

select columns of table "agent_playbook_action"

Values:

  • action_name - column name
  • category - column name
  • description - column name
  • display_name - column name
  • execution_mode - column name
  • name - column name
  • params - column name
  • source - column name

agent_playbook_action_set_input

input type for updating data in table "agent_playbook_action"

Fields:

  • action_name: String
  • category: String
  • description: String
  • display_name: String
  • execution_mode: String
  • name: String
  • params: jsonb
  • source: String

agent_playbook_action_stream_cursor_input

Streaming cursor of the table "agent_playbook_action"

Fields:

  • initial_value: agent_playbook_action_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_playbook_action_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • action_name: String
  • category: String
  • description: String
  • display_name: String
  • execution_mode: String
  • name: String
  • params: jsonb
  • source: String

agent_playbook_action_update_column

update columns of table "agent_playbook_action"

Values:

  • action_name - column name
  • category - column name
  • description - column name
  • display_name - column name
  • execution_mode - column name
  • name - column name
  • params - column name
  • source - column name

agent_playbook_aggregate_fields

aggregate fields of "agent_playbook"

Fields:

  • count: Int!
  • max: agent_playbook_max_fields
  • min: agent_playbook_min_fields

agent_playbook_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • action_params: jsonb
  • trigger_params: jsonb

agent_playbook_bool_exp

Boolean expression to filter rows from the table "agent_playbook". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_playbook_bool_exp!]
  • _not: agent_playbook_bool_exp
  • _or: [agent_playbook_bool_exp!]
  • action_params: jsonb_comparison_exp
  • alert_name: String_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • id: uuid_comparison_exp
  • processor: String_comparison_exp
  • source: agent_playbook_source_enum_comparison_exp
  • tenant_id: uuid_comparison_exp
  • trigger_params: jsonb_comparison_exp
  • updated_at: timestamptz_comparison_exp

agent_playbook_constraint

unique or primary key constraints on table "agent_playbook"

Values:

  • agent_playbook_pkey - unique or primary key constraint on columns "id"
  • agent_playbook_tenant_id_cloud_account_id_alert_name_key - unique or primary key constraint on columns "alert_name", "tenant_id", "cloud_account_id"

agent_playbook_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • action_params: [String!]
  • trigger_params: [String!]

agent_playbook_delete_elem_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

Fields:

  • action_params: Int
  • trigger_params: Int

agent_playbook_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • action_params: String
  • trigger_params: String

agent_playbook_insert_input

input type for inserting data into table "agent_playbook"

Fields:

  • action_params: jsonb
  • alert_name: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • processor: String
  • source: agent_playbook_source_enum
  • tenant_id: uuid
  • trigger_params: jsonb
  • updated_at: timestamptz

agent_playbook_max_fields

aggregate max on columns

Fields:

  • alert_name: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • processor: String
  • tenant_id: uuid
  • updated_at: timestamptz

agent_playbook_min_fields

aggregate min on columns

Fields:

  • alert_name: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • processor: String
  • tenant_id: uuid
  • updated_at: timestamptz

agent_playbook_mutation_response

response of any mutation on the table "agent_playbook"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_playbook!]! - data from the rows affected by the mutation

agent_playbook_on_conflict

on_conflict condition type for table "agent_playbook"

Fields:

  • constraint: agent_playbook_constraint!
  • update_columns: [agent_playbook_update_column!]!
  • where: agent_playbook_bool_exp

agent_playbook_order_by

Ordering options when selecting data from "agent_playbook".

Fields:

  • action_params: order_by
  • alert_name: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • processor: order_by
  • source: order_by
  • tenant_id: order_by
  • trigger_params: order_by
  • updated_at: order_by

agent_playbook_pk_columns_input

primary key columns input for table: agent_playbook

Fields:

  • id: uuid!

agent_playbook_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • action_params: jsonb
  • trigger_params: jsonb

agent_playbook_processor_aggregate_fields

aggregate fields of "agent_playbook_processor"

Fields:

  • count: Int!
  • max: agent_playbook_processor_max_fields
  • min: agent_playbook_processor_min_fields

agent_playbook_processor_bool_exp

Boolean expression to filter rows from the table "agent_playbook_processor". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_playbook_processor_bool_exp!]
  • _not: agent_playbook_processor_bool_exp
  • _or: [agent_playbook_processor_bool_exp!]
  • name: String_comparison_exp
  • value: String_comparison_exp

agent_playbook_processor_constraint

unique or primary key constraints on table "agent_playbook_processor"

Values:

  • agent_playbook_action_processor_pkey - unique or primary key constraint on columns "name"
  • agent_playbook_processor_value_key - unique or primary key constraint on columns "value"

agent_playbook_processor_insert_input

input type for inserting data into table "agent_playbook_processor"

Fields:

  • name: String
  • value: String

agent_playbook_processor_max_fields

aggregate max on columns

Fields:

  • name: String
  • value: String

agent_playbook_processor_min_fields

aggregate min on columns

Fields:

  • name: String
  • value: String

agent_playbook_processor_mutation_response

response of any mutation on the table "agent_playbook_processor"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_playbook_processor!]! - data from the rows affected by the mutation

agent_playbook_processor_on_conflict

on_conflict condition type for table "agent_playbook_processor"

Fields:

  • constraint: agent_playbook_processor_constraint!
  • update_columns: [agent_playbook_processor_update_column!]!
  • where: agent_playbook_processor_bool_exp

agent_playbook_processor_order_by

Ordering options when selecting data from "agent_playbook_processor".

Fields:

  • name: order_by
  • value: order_by

agent_playbook_processor_pk_columns_input

primary key columns input for table: agent_playbook_processor

Fields:

  • name: String!

agent_playbook_processor_select_column

select columns of table "agent_playbook_processor"

Values:

  • name - column name
  • value - column name

agent_playbook_processor_set_input

input type for updating data in table "agent_playbook_processor"

Fields:

  • name: String
  • value: String

agent_playbook_processor_stream_cursor_input

Streaming cursor of the table "agent_playbook_processor"

Fields:

  • initial_value: agent_playbook_processor_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_playbook_processor_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • name: String
  • value: String

agent_playbook_processor_update_column

update columns of table "agent_playbook_processor"

Values:

  • name - column name
  • value - column name

agent_playbook_select_column

select columns of table "agent_playbook"

Values:

  • action_params - column name
  • alert_name - column name
  • cloud_account_id - column name
  • created_at - column name
  • id - column name
  • processor - column name
  • source - column name
  • tenant_id - column name
  • trigger_params - column name
  • updated_at - column name

agent_playbook_set_input

input type for updating data in table "agent_playbook"

Fields:

  • action_params: jsonb
  • alert_name: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • processor: String
  • source: agent_playbook_source_enum
  • tenant_id: uuid
  • trigger_params: jsonb
  • updated_at: timestamptz

agent_playbook_source_aggregate_fields

aggregate fields of "agent_playbook_source"

Fields:

  • count: Int!
  • max: agent_playbook_source_max_fields
  • min: agent_playbook_source_min_fields

agent_playbook_source_bool_exp

Boolean expression to filter rows from the table "agent_playbook_source". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_playbook_source_bool_exp!]
  • _not: agent_playbook_source_bool_exp
  • _or: [agent_playbook_source_bool_exp!]
  • value: String_comparison_exp

agent_playbook_source_constraint

unique or primary key constraints on table "agent_playbook_source"

Values:

  • agent_playbook_source_pkey - unique or primary key constraint on columns "value"

agent_playbook_source_insert_input

input type for inserting data into table "agent_playbook_source"

Fields:

  • value: String

agent_playbook_source_max_fields

aggregate max on columns

Fields:

  • value: String

agent_playbook_source_min_fields

aggregate min on columns

Fields:

  • value: String

agent_playbook_source_mutation_response

response of any mutation on the table "agent_playbook_source"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_playbook_source!]! - data from the rows affected by the mutation

agent_playbook_source_on_conflict

on_conflict condition type for table "agent_playbook_source"

Fields:

  • constraint: agent_playbook_source_constraint!
  • update_columns: [agent_playbook_source_update_column!]!
  • where: agent_playbook_source_bool_exp

agent_playbook_source_order_by

Ordering options when selecting data from "agent_playbook_source".

Fields:

  • value: order_by

agent_playbook_source_pk_columns_input

primary key columns input for table: agent_playbook_source

Fields:

  • value: String!

agent_playbook_source_select_column

select columns of table "agent_playbook_source"

Values:

  • value - column name

agent_playbook_source_set_input

input type for updating data in table "agent_playbook_source"

Fields:

  • value: String

agent_playbook_source_stream_cursor_input

Streaming cursor of the table "agent_playbook_source"

Fields:

  • initial_value: agent_playbook_source_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_playbook_source_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

agent_playbook_source_update_column

update columns of table "agent_playbook_source"

Values:

  • value - column name

agent_playbook_stream_cursor_input

Streaming cursor of the table "agent_playbook"

Fields:

  • initial_value: agent_playbook_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_playbook_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • action_params: jsonb
  • alert_name: String
  • cloud_account_id: uuid
  • created_at: timestamptz
  • id: uuid
  • processor: String
  • source: agent_playbook_source_enum
  • tenant_id: uuid
  • trigger_params: jsonb
  • updated_at: timestamptz

agent_playbook_trigger_aggregate_fields

aggregate fields of "agent_playbook_trigger"

Fields:

  • count: Int!
  • max: agent_playbook_trigger_max_fields
  • min: agent_playbook_trigger_min_fields

agent_playbook_trigger_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • params: jsonb

agent_playbook_trigger_bool_exp

Boolean expression to filter rows from the table "agent_playbook_trigger". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_playbook_trigger_bool_exp!]
  • _not: agent_playbook_trigger_bool_exp
  • _or: [agent_playbook_trigger_bool_exp!]
  • name: String_comparison_exp
  • params: jsonb_comparison_exp

agent_playbook_trigger_constraint

unique or primary key constraints on table "agent_playbook_trigger"

Values:

  • agent_playbook_trigger_pkey - unique or primary key constraint on columns "name"

agent_playbook_trigger_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • params: [String!]

agent_playbook_trigger_delete_elem_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

Fields:

  • params: Int

agent_playbook_trigger_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • params: String

agent_playbook_trigger_insert_input

input type for inserting data into table "agent_playbook_trigger"

Fields:

  • name: String
  • params: jsonb

agent_playbook_trigger_max_fields

aggregate max on columns

Fields:

  • name: String

agent_playbook_trigger_min_fields

aggregate min on columns

Fields:

  • name: String

agent_playbook_trigger_mutation_response

response of any mutation on the table "agent_playbook_trigger"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_playbook_trigger!]! - data from the rows affected by the mutation

agent_playbook_trigger_on_conflict

on_conflict condition type for table "agent_playbook_trigger"

Fields:

  • constraint: agent_playbook_trigger_constraint!
  • update_columns: [agent_playbook_trigger_update_column!]!
  • where: agent_playbook_trigger_bool_exp

agent_playbook_trigger_order_by

Ordering options when selecting data from "agent_playbook_trigger".

Fields:

  • name: order_by
  • params: order_by

agent_playbook_trigger_pk_columns_input

primary key columns input for table: agent_playbook_trigger

Fields:

  • name: String!

agent_playbook_trigger_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • params: jsonb

agent_playbook_trigger_select_column

select columns of table "agent_playbook_trigger"

Values:

  • name - column name
  • params - column name

agent_playbook_trigger_set_input

input type for updating data in table "agent_playbook_trigger"

Fields:

  • name: String
  • params: jsonb

agent_playbook_trigger_stream_cursor_input

Streaming cursor of the table "agent_playbook_trigger"

Fields:

  • initial_value: agent_playbook_trigger_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_playbook_trigger_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • name: String
  • params: jsonb

agent_playbook_trigger_update_column

update columns of table "agent_playbook_trigger"

Values:

  • name - column name
  • params - column name

agent_playbook_update_column

update columns of table "agent_playbook"

Values:

  • action_params - column name
  • alert_name - column name
  • cloud_account_id - column name
  • created_at - column name
  • id - column name
  • processor - column name
  • source - column name
  • tenant_id - column name
  • trigger_params - column name
  • updated_at - column name

agent_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • connection_status: jsonb

agent_select_column

select columns of table "agent"

Values:

  • access_key - column name
  • access_secret - column name
  • access_secret_v2 - column name
  • cloud_account_id - column name
  • connection_status - column name
  • created_at - column name
  • id - column name
  • k8s_provider - column name
  • k8s_version - column name
  • last_connected_at - column name
  • last_synced_at - column name
  • status - column name
  • status_message - column name
  • tenant - column name
  • type - column name
  • updated_at - column name
  • version - column name

agent_set_input

input type for updating data in table "agent"

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • cloud_account_id: uuid
  • connection_status: jsonb
  • created_at: timestamp
  • id: uuid
  • k8s_provider: String
  • k8s_version: String
  • last_connected_at: timestamp
  • last_synced_at: timestamp
  • status: String
  • status_message: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • version: String

agent_stream_cursor_input

Streaming cursor of the table "agent"

Fields:

  • initial_value: agent_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • access_key: String
  • access_secret: String
  • access_secret_v2: String
  • cloud_account_id: uuid
  • connection_status: jsonb
  • created_at: timestamp
  • id: uuid
  • k8s_provider: String
  • k8s_version: String
  • last_connected_at: timestamp
  • last_synced_at: timestamp
  • status: String
  • status_message: String
  • tenant: uuid
  • type: String
  • updated_at: timestamp
  • version: String

agent_task_aggregate_bool_exp

Fields:

  • count: agent_task_aggregate_bool_exp_count

agent_task_aggregate_bool_exp_count

Fields:

  • arguments: [agent_task_select_column!]
  • distinct: Boolean
  • filter: agent_task_bool_exp
  • predicate: Int_comparison_exp!

agent_task_aggregate_fields

aggregate fields of "agent_task"

Fields:

  • count: Int!
  • max: agent_task_max_fields
  • min: agent_task_min_fields

agent_task_aggregate_order_by

order by aggregate values of table "agent_task"

Fields:

  • count: order_by
  • max: agent_task_max_order_by
  • min: agent_task_min_order_by

agent_task_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • payload: jsonb
  • response: jsonb

agent_task_arr_rel_insert_input

input type for inserting array relation for remote table "agent_task"

Fields:

  • data: [agent_task_insert_input!]!
  • on_conflict: agent_task_on_conflict - upsert condition

agent_task_bool_exp

Boolean expression to filter rows from the table "agent_task". All fields are combined with a logical 'AND'.

Fields:

  • _and: [agent_task_bool_exp!]
  • _not: agent_task_bool_exp
  • _or: [agent_task_bool_exp!]
  • action: String_comparison_exp
  • agent_id: uuid_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • payload: jsonb_comparison_exp
  • resoruce_id: uuid_comparison_exp
  • response: jsonb_comparison_exp
  • source: String_comparison_exp
  • source_id: uuid_comparison_exp
  • status: String_comparison_exp
  • tenant: uuid_comparison_exp
  • updated_at: timestamptz_comparison_exp

agent_task_constraint

unique or primary key constraints on table "agent_task"

Values:

  • agent_task_pkey - unique or primary key constraint on columns "id"

agent_task_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • payload: [String!]
  • response: [String!]

agent_task_delete_elem_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

Fields:

  • payload: Int
  • response: Int

agent_task_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • payload: String
  • response: String

agent_task_insert_input

input type for inserting data into table "agent_task"

Fields:

  • action: String
  • agent_id: uuid
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • payload: jsonb
  • resoruce_id: uuid
  • response: jsonb
  • source: String
  • source_id: uuid
  • status: String
  • tenant: uuid
  • updated_at: timestamptz

agent_task_max_fields

aggregate max on columns

Fields:

  • action: String
  • agent_id: uuid
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • resoruce_id: uuid
  • source: String
  • source_id: uuid
  • status: String
  • tenant: uuid
  • updated_at: timestamptz

agent_task_max_order_by

order by max() on columns of table "agent_task"

Fields:

  • action: order_by
  • agent_id: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • resoruce_id: order_by
  • source: order_by
  • source_id: order_by
  • status: order_by
  • tenant: order_by
  • updated_at: order_by

agent_task_min_fields

aggregate min on columns

Fields:

  • action: String
  • agent_id: uuid
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • resoruce_id: uuid
  • source: String
  • source_id: uuid
  • status: String
  • tenant: uuid
  • updated_at: timestamptz

agent_task_min_order_by

order by min() on columns of table "agent_task"

Fields:

  • action: order_by
  • agent_id: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • resoruce_id: order_by
  • source: order_by
  • source_id: order_by
  • status: order_by
  • tenant: order_by
  • updated_at: order_by

agent_task_mutation_response

response of any mutation on the table "agent_task"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [agent_task!]! - data from the rows affected by the mutation

agent_task_on_conflict

on_conflict condition type for table "agent_task"

Fields:

  • constraint: agent_task_constraint!
  • update_columns: [agent_task_update_column!]!
  • where: agent_task_bool_exp

agent_task_order_by

Ordering options when selecting data from "agent_task".

Fields:

  • action: order_by
  • agent_id: order_by
  • cloud_account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • payload: order_by
  • resoruce_id: order_by
  • response: order_by
  • source: order_by
  • source_id: order_by
  • status: order_by
  • tenant: order_by
  • updated_at: order_by

agent_task_pk_columns_input

primary key columns input for table: agent_task

Fields:

  • id: uuid!

agent_task_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • payload: jsonb
  • response: jsonb

agent_task_select_column

select columns of table "agent_task"

Values:

  • action - column name
  • agent_id - column name
  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • payload - column name
  • resoruce_id - column name
  • response - column name
  • source - column name
  • source_id - column name
  • status - column name
  • tenant - column name
  • updated_at - column name

agent_task_set_input

input type for updating data in table "agent_task"

Fields:

  • action: String
  • agent_id: uuid
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • payload: jsonb
  • resoruce_id: uuid
  • response: jsonb
  • source: String
  • source_id: uuid
  • status: String
  • tenant: uuid
  • updated_at: timestamptz

agent_task_stream_cursor_input

Streaming cursor of the table "agent_task"

Fields:

  • initial_value: agent_task_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

agent_task_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • action: String
  • agent_id: uuid
  • cloud_account_id: uuid
  • created_at: timestamptz
  • created_by: uuid
  • id: uuid
  • payload: jsonb
  • resoruce_id: uuid
  • response: jsonb
  • source: String
  • source_id: uuid
  • status: String
  • tenant: uuid
  • updated_at: timestamptz

agent_task_update_column

update columns of table "agent_task"

Values:

  • action - column name
  • agent_id - column name
  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • payload - column name
  • resoruce_id - column name
  • response - column name
  • source - column name
  • source_id - column name
  • status - column name
  • tenant - column name
  • updated_at - column name

agent_update_column

update columns of table "agent"

Values:

  • access_key - column name
  • access_secret - column name
  • access_secret_v2 - column name
  • cloud_account_id - column name
  • connection_status - column name
  • created_at - column name
  • id - column name
  • k8s_provider - column name
  • k8s_version - column name
  • last_connected_at - column name
  • last_synced_at - column name
  • status - column name
  • status_message - column name
  • tenant - column name
  • type - column name
  • updated_at - column name
  • version - column name
AI & LLM (457 types)

knowledge_base_aggregate_fields

aggregate fields of "knowledge_base"

Fields:

  • count: Int!
  • max: knowledge_base_max_fields
  • min: knowledge_base_min_fields

knowledge_base_bool_exp

Boolean expression to filter rows from the table "knowledge_base". All fields are combined with a logical 'AND'.

Fields:

  • _and: [knowledge_base_bool_exp!]
  • _not: knowledge_base_bool_exp
  • _or: [knowledge_base_bool_exp!]
  • created_at: timestamptz_comparison_exp
  • description: String_comparison_exp
  • diagnosis: String_comparison_exp
  • id: uuid_comparison_exp
  • impact: String_comparison_exp
  • mitigation: String_comparison_exp
  • rule_name: String_comparison_exp
  • updated_at: timestamptz_comparison_exp

knowledge_base_constraint

unique or primary key constraints on table "knowledge_base"

Values:

  • knowledge_base_pkey - unique or primary key constraint on columns "id"
  • knowledge_base_rule_name_key - unique or primary key constraint on columns "rule_name"

knowledge_base_insert_input

input type for inserting data into table "knowledge_base"

Fields:

  • created_at: timestamptz
  • description: String
  • diagnosis: String
  • id: uuid
  • impact: String
  • mitigation: String
  • rule_name: String
  • updated_at: timestamptz

knowledge_base_max_fields

aggregate max on columns

Fields:

  • created_at: timestamptz
  • description: String
  • diagnosis: String
  • id: uuid
  • impact: String
  • mitigation: String
  • rule_name: String
  • updated_at: timestamptz

knowledge_base_min_fields

aggregate min on columns

Fields:

  • created_at: timestamptz
  • description: String
  • diagnosis: String
  • id: uuid
  • impact: String
  • mitigation: String
  • rule_name: String
  • updated_at: timestamptz

knowledge_base_mutation_response

response of any mutation on the table "knowledge_base"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [knowledge_base!]! - data from the rows affected by the mutation

knowledge_base_on_conflict

on_conflict condition type for table "knowledge_base"

Fields:

  • constraint: knowledge_base_constraint!
  • update_columns: [knowledge_base_update_column!]!
  • where: knowledge_base_bool_exp

knowledge_base_order_by

Ordering options when selecting data from "knowledge_base".

Fields:

  • created_at: order_by
  • description: order_by
  • diagnosis: order_by
  • id: order_by
  • impact: order_by
  • mitigation: order_by
  • rule_name: order_by
  • updated_at: order_by

knowledge_base_pk_columns_input

primary key columns input for table: knowledge_base

Fields:

  • id: uuid!

knowledge_base_select_column

select columns of table "knowledge_base"

Values:

  • created_at - column name
  • description - column name
  • diagnosis - column name
  • id - column name
  • impact - column name
  • mitigation - column name
  • rule_name - column name
  • updated_at - column name

knowledge_base_set_input

input type for updating data in table "knowledge_base"

Fields:

  • created_at: timestamptz
  • description: String
  • diagnosis: String
  • id: uuid
  • impact: String
  • mitigation: String
  • rule_name: String
  • updated_at: timestamptz

knowledge_base_stream_cursor_input

Streaming cursor of the table "knowledge_base"

Fields:

  • initial_value: knowledge_base_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

knowledge_base_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamptz
  • description: String
  • diagnosis: String
  • id: uuid
  • impact: String
  • mitigation: String
  • rule_name: String
  • updated_at: timestamptz

knowledge_base_update_column

update columns of table "knowledge_base"

Values:

  • created_at - column name
  • description - column name
  • diagnosis - column name
  • id - column name
  • impact - column name
  • mitigation - column name
  • rule_name - column name
  • updated_at - column name

knowledge_graph_edge_aggregate_fields

aggregate fields of "knowledge_graph_edge"

Fields:

  • count: Int!
  • max: knowledge_graph_edge_max_fields
  • min: knowledge_graph_edge_min_fields

knowledge_graph_edge_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • properties: jsonb

knowledge_graph_edge_bool_exp

Boolean expression to filter rows from the table "knowledge_graph_edge". All fields are combined with a logical 'AND'.

Fields:

  • _and: [knowledge_graph_edge_bool_exp!]
  • _not: knowledge_graph_edge_bool_exp
  • _or: [knowledge_graph_edge_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • destination_node_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • level: String_comparison_exp
  • properties: jsonb_comparison_exp
  • relationship_type: String_comparison_exp
  • source_node_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

knowledge_graph_edge_constraint

unique or primary key constraints on table "knowledge_graph_edge"

Values:

  • knowledge_graph_edge_pkey - unique or primary key constraint on columns "id"
  • knowledge_graph_edge_source_node_id_destination_node_id_relatio - unique or primary key constraint on columns "destination_node_id", "tenant_id", "relationship_type", "cloud_account_id", "source_node_id"

knowledge_graph_edge_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • properties: [String!]

knowledge_graph_edge_delete_elem_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

Fields:

  • properties: Int

knowledge_graph_edge_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • properties: String

knowledge_graph_edge_insert_input

input type for inserting data into table "knowledge_graph_edge"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • destination_node_id: uuid
  • id: uuid
  • level: String
  • properties: jsonb
  • relationship_type: String
  • source_node_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

knowledge_graph_edge_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • destination_node_id: uuid
  • id: uuid
  • level: String
  • relationship_type: String
  • source_node_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

knowledge_graph_edge_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • destination_node_id: uuid
  • id: uuid
  • level: String
  • relationship_type: String
  • source_node_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

knowledge_graph_edge_mutation_response

response of any mutation on the table "knowledge_graph_edge"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [knowledge_graph_edge!]! - data from the rows affected by the mutation

knowledge_graph_edge_on_conflict

on_conflict condition type for table "knowledge_graph_edge"

Fields:

  • constraint: knowledge_graph_edge_constraint!
  • update_columns: [knowledge_graph_edge_update_column!]!
  • where: knowledge_graph_edge_bool_exp

knowledge_graph_edge_order_by

Ordering options when selecting data from "knowledge_graph_edge".

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • destination_node_id: order_by
  • id: order_by
  • level: order_by
  • properties: order_by
  • relationship_type: order_by
  • source_node_id: order_by
  • tenant_id: order_by
  • updated_at: order_by

knowledge_graph_edge_pk_columns_input

primary key columns input for table: knowledge_graph_edge

Fields:

  • id: uuid!

knowledge_graph_edge_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • properties: jsonb

knowledge_graph_edge_select_column

select columns of table "knowledge_graph_edge"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • destination_node_id - column name
  • id - column name
  • level - column name
  • properties - column name
  • relationship_type - column name
  • source_node_id - column name
  • tenant_id - column name
  • updated_at - column name

knowledge_graph_edge_set_input

input type for updating data in table "knowledge_graph_edge"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • destination_node_id: uuid
  • id: uuid
  • level: String
  • properties: jsonb
  • relationship_type: String
  • source_node_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

knowledge_graph_edge_stream_cursor_input

Streaming cursor of the table "knowledge_graph_edge"

Fields:

  • initial_value: knowledge_graph_edge_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

knowledge_graph_edge_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • destination_node_id: uuid
  • id: uuid
  • level: String
  • properties: jsonb
  • relationship_type: String
  • source_node_id: uuid
  • tenant_id: uuid
  • updated_at: timestamp

knowledge_graph_edge_update_column

update columns of table "knowledge_graph_edge"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • destination_node_id - column name
  • id - column name
  • level - column name
  • properties - column name
  • relationship_type - column name
  • source_node_id - column name
  • tenant_id - column name
  • updated_at - column name

knowledge_graph_metadata_aggregate_fields

aggregate fields of "knowledge_graph_metadata"

Fields:

  • count: Int!
  • max: knowledge_graph_metadata_max_fields
  • min: knowledge_graph_metadata_min_fields

knowledge_graph_metadata_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • additional_properties: jsonb
  • attribute_value: jsonb

knowledge_graph_metadata_bool_exp

Boolean expression to filter rows from the table "knowledge_graph_metadata". All fields are combined with a logical 'AND'.

Fields:

  • _and: [knowledge_graph_metadata_bool_exp!]
  • _not: knowledge_graph_metadata_bool_exp
  • _or: [knowledge_graph_metadata_bool_exp!]
  • additional_properties: jsonb_comparison_exp
  • attribute_key: String_comparison_exp
  • attribute_type: String_comparison_exp
  • attribute_value: jsonb_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • last_sync_at: timestamp_comparison_exp
  • tenant_id: uuid_comparison_exp

knowledge_graph_metadata_constraint

unique or primary key constraints on table "knowledge_graph_metadata"

Values:

  • knowledge_graph_metadata_pkey - unique or primary key constraint on columns "id"

knowledge_graph_metadata_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • additional_properties: [String!]
  • attribute_value: [String!]

knowledge_graph_metadata_delete_elem_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

Fields:

  • additional_properties: Int
  • attribute_value: Int

knowledge_graph_metadata_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • additional_properties: String
  • attribute_value: String

knowledge_graph_metadata_insert_input

input type for inserting data into table "knowledge_graph_metadata"

Fields:

  • additional_properties: jsonb
  • attribute_key: String
  • attribute_type: String
  • attribute_value: jsonb
  • cloud_account_id: uuid
  • id: uuid
  • last_sync_at: timestamp
  • tenant_id: uuid

knowledge_graph_metadata_max_fields

aggregate max on columns

Fields:

  • attribute_key: String
  • attribute_type: String
  • cloud_account_id: uuid
  • id: uuid
  • last_sync_at: timestamp
  • tenant_id: uuid

knowledge_graph_metadata_min_fields

aggregate min on columns

Fields:

  • attribute_key: String
  • attribute_type: String
  • cloud_account_id: uuid
  • id: uuid
  • last_sync_at: timestamp
  • tenant_id: uuid

knowledge_graph_metadata_mutation_response

response of any mutation on the table "knowledge_graph_metadata"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [knowledge_graph_metadata!]! - data from the rows affected by the mutation

knowledge_graph_metadata_on_conflict

on_conflict condition type for table "knowledge_graph_metadata"

Fields:

  • constraint: knowledge_graph_metadata_constraint!
  • update_columns: [knowledge_graph_metadata_update_column!]!
  • where: knowledge_graph_metadata_bool_exp

knowledge_graph_metadata_order_by

Ordering options when selecting data from "knowledge_graph_metadata".

Fields:

  • additional_properties: order_by
  • attribute_key: order_by
  • attribute_type: order_by
  • attribute_value: order_by
  • cloud_account_id: order_by
  • id: order_by
  • last_sync_at: order_by
  • tenant_id: order_by

knowledge_graph_metadata_pk_columns_input

primary key columns input for table: knowledge_graph_metadata

Fields:

  • id: uuid!

knowledge_graph_metadata_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • additional_properties: jsonb
  • attribute_value: jsonb

knowledge_graph_metadata_select_column

select columns of table "knowledge_graph_metadata"

Values:

  • additional_properties - column name
  • attribute_key - column name
  • attribute_type - column name
  • attribute_value - column name
  • cloud_account_id - column name
  • id - column name
  • last_sync_at - column name
  • tenant_id - column name

knowledge_graph_metadata_set_input

input type for updating data in table "knowledge_graph_metadata"

Fields:

  • additional_properties: jsonb
  • attribute_key: String
  • attribute_type: String
  • attribute_value: jsonb
  • cloud_account_id: uuid
  • id: uuid
  • last_sync_at: timestamp
  • tenant_id: uuid

knowledge_graph_metadata_stream_cursor_input

Streaming cursor of the table "knowledge_graph_metadata"

Fields:

  • initial_value: knowledge_graph_metadata_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

knowledge_graph_metadata_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • additional_properties: jsonb
  • attribute_key: String
  • attribute_type: String
  • attribute_value: jsonb
  • cloud_account_id: uuid
  • id: uuid
  • last_sync_at: timestamp
  • tenant_id: uuid

knowledge_graph_metadata_update_column

update columns of table "knowledge_graph_metadata"

Values:

  • additional_properties - column name
  • attribute_key - column name
  • attribute_type - column name
  • attribute_value - column name
  • cloud_account_id - column name
  • id - column name
  • last_sync_at - column name
  • tenant_id - column name

knowledge_graph_node_aggregate_fields

aggregate fields of "knowledge_graph_node"

Fields:

  • avg: knowledge_graph_node_avg_fields
  • count: Int!
  • max: knowledge_graph_node_max_fields
  • min: knowledge_graph_node_min_fields
  • stddev: knowledge_graph_node_stddev_fields
  • stddev_pop: knowledge_graph_node_stddev_pop_fields
  • stddev_samp: knowledge_graph_node_stddev_samp_fields
  • sum: knowledge_graph_node_sum_fields
  • var_pop: knowledge_graph_node_var_pop_fields
  • var_samp: knowledge_graph_node_var_samp_fields
  • variance: knowledge_graph_node_variance_fields

knowledge_graph_node_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • properties: jsonb
  • query_attributes: jsonb

knowledge_graph_node_avg_fields

aggregate avg on columns

Fields:

  • last_sync_version: Float

knowledge_graph_node_bool_exp

Boolean expression to filter rows from the table "knowledge_graph_node". All fields are combined with a logical 'AND'.

Fields:

  • _and: [knowledge_graph_node_bool_exp!]
  • _not: knowledge_graph_node_bool_exp
  • _or: [knowledge_graph_node_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • is_active: Boolean_comparison_exp
  • labels: jsonb_comparison_exp
  • last_sync_version: numeric_comparison_exp
  • level: String_comparison_exp
  • node_type: String_comparison_exp
  • properties: jsonb_comparison_exp
  • query_attributes: jsonb_comparison_exp
  • tenant_id: uuid_comparison_exp
  • unique_key: String_comparison_exp
  • updated_at: timestamp_comparison_exp

knowledge_graph_node_constraint

unique or primary key constraints on table "knowledge_graph_node"

Values:

  • knowledge_graph_node_pkey - unique or primary key constraint on columns "id"
  • knowledge_graph_node_unique_key_cloud_account_id_tenant_id_key - unique or primary key constraint on columns "unique_key", "tenant_id", "cloud_account_id"

knowledge_graph_node_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • labels: [String!]
  • properties: [String!]
  • query_attributes: [String!]

knowledge_graph_node_delete_elem_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

Fields:

  • labels: Int
  • properties: Int
  • query_attributes: Int

knowledge_graph_node_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • labels: String
  • properties: String
  • query_attributes: String

knowledge_graph_node_inc_input

input type for incrementing numeric columns in table "knowledge_graph_node"

Fields:

  • last_sync_version: numeric

knowledge_graph_node_insert_input

input type for inserting data into table "knowledge_graph_node"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • is_active: Boolean
  • labels: jsonb
  • last_sync_version: numeric
  • level: String
  • node_type: String
  • properties: jsonb
  • query_attributes: jsonb
  • tenant_id: uuid
  • unique_key: String
  • updated_at: timestamp

knowledge_graph_node_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • last_sync_version: numeric
  • level: String
  • node_type: String
  • tenant_id: uuid
  • unique_key: String
  • updated_at: timestamp

knowledge_graph_node_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • last_sync_version: numeric
  • level: String
  • node_type: String
  • tenant_id: uuid
  • unique_key: String
  • updated_at: timestamp

knowledge_graph_node_mutation_response

response of any mutation on the table "knowledge_graph_node"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [knowledge_graph_node!]! - data from the rows affected by the mutation

knowledge_graph_node_on_conflict

on_conflict condition type for table "knowledge_graph_node"

Fields:

  • constraint: knowledge_graph_node_constraint!
  • update_columns: [knowledge_graph_node_update_column!]!
  • where: knowledge_graph_node_bool_exp

knowledge_graph_node_order_by

Ordering options when selecting data from "knowledge_graph_node".

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • id: order_by
  • is_active: order_by
  • labels: order_by
  • last_sync_version: order_by
  • level: order_by
  • node_type: order_by
  • properties: order_by
  • query_attributes: order_by
  • tenant_id: order_by
  • unique_key: order_by
  • updated_at: order_by

knowledge_graph_node_pk_columns_input

primary key columns input for table: knowledge_graph_node

Fields:

  • id: uuid!

knowledge_graph_node_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • labels: jsonb
  • properties: jsonb
  • query_attributes: jsonb

knowledge_graph_node_select_column

select columns of table "knowledge_graph_node"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • id - column name
  • is_active - column name
  • labels - column name
  • last_sync_version - column name
  • level - column name
  • node_type - column name
  • properties - column name
  • query_attributes - column name
  • tenant_id - column name
  • unique_key - column name
  • updated_at - column name

knowledge_graph_node_set_input

input type for updating data in table "knowledge_graph_node"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • is_active: Boolean
  • labels: jsonb
  • last_sync_version: numeric
  • level: String
  • node_type: String
  • properties: jsonb
  • query_attributes: jsonb
  • tenant_id: uuid
  • unique_key: String
  • updated_at: timestamp

knowledge_graph_node_stddev_fields

aggregate stddev on columns

Fields:

  • last_sync_version: Float

knowledge_graph_node_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • last_sync_version: Float

knowledge_graph_node_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • last_sync_version: Float

knowledge_graph_node_stream_cursor_input

Streaming cursor of the table "knowledge_graph_node"

Fields:

  • initial_value: knowledge_graph_node_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

knowledge_graph_node_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • id: uuid
  • is_active: Boolean
  • labels: jsonb
  • last_sync_version: numeric
  • level: String
  • node_type: String
  • properties: jsonb
  • query_attributes: jsonb
  • tenant_id: uuid
  • unique_key: String
  • updated_at: timestamp

knowledge_graph_node_sum_fields

aggregate sum on columns

Fields:

  • last_sync_version: numeric

knowledge_graph_node_update_column

update columns of table "knowledge_graph_node"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • id - column name
  • is_active - column name
  • labels - column name
  • last_sync_version - column name
  • level - column name
  • node_type - column name
  • properties - column name
  • query_attributes - column name
  • tenant_id - column name
  • unique_key - column name
  • updated_at - column name

knowledge_graph_node_var_pop_fields

aggregate var_pop on columns

Fields:

  • last_sync_version: Float

knowledge_graph_node_var_samp_fields

aggregate var_samp on columns

Fields:

  • last_sync_version: Float

knowledge_graph_node_variance_fields

aggregate variance on columns

Fields:

  • last_sync_version: Float

knowledge_graph_relationship_types_aggregate_fields

aggregate fields of "knowledge_graph_relationship_types"

Fields:

  • count: Int!
  • max: knowledge_graph_relationship_types_max_fields
  • min: knowledge_graph_relationship_types_min_fields

knowledge_graph_relationship_types_bool_exp

Boolean expression to filter rows from the table "knowledge_graph_relationship_types". All fields are combined with a logical 'AND'.

Fields:

  • _and: [knowledge_graph_relationship_types_bool_exp!]
  • _not: knowledge_graph_relationship_types_bool_exp
  • _or: [knowledge_graph_relationship_types_bool_exp!]
  • name: String_comparison_exp
  • value: String_comparison_exp

knowledge_graph_relationship_types_constraint

unique or primary key constraints on table "knowledge_graph_relationship_types"

Values:

  • knowledge_graph_relationship_types_pkey - unique or primary key constraint on columns "name"

knowledge_graph_relationship_types_insert_input

input type for inserting data into table "knowledge_graph_relationship_types"

Fields:

  • name: String
  • value: String

knowledge_graph_relationship_types_max_fields

aggregate max on columns

Fields:

  • name: String
  • value: String

knowledge_graph_relationship_types_min_fields

aggregate min on columns

Fields:

  • name: String
  • value: String

knowledge_graph_relationship_types_mutation_response

response of any mutation on the table "knowledge_graph_relationship_types"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [knowledge_graph_relationship_types!]! - data from the rows affected by the mutation

knowledge_graph_relationship_types_on_conflict

on_conflict condition type for table "knowledge_graph_relationship_types"

Fields:

  • constraint: knowledge_graph_relationship_types_constraint!
  • update_columns: [knowledge_graph_relationship_types_update_column!]!
  • where: knowledge_graph_relationship_types_bool_exp

knowledge_graph_relationship_types_order_by

Ordering options when selecting data from "knowledge_graph_relationship_types".

Fields:

  • name: order_by
  • value: order_by

knowledge_graph_relationship_types_pk_columns_input

primary key columns input for table: knowledge_graph_relationship_types

Fields:

  • name: String!

knowledge_graph_relationship_types_select_column

select columns of table "knowledge_graph_relationship_types"

Values:

  • name - column name
  • value - column name

knowledge_graph_relationship_types_set_input

input type for updating data in table "knowledge_graph_relationship_types"

Fields:

  • name: String
  • value: String

knowledge_graph_relationship_types_stream_cursor_input

Streaming cursor of the table "knowledge_graph_relationship_types"

Fields:

  • initial_value: knowledge_graph_relationship_types_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

knowledge_graph_relationship_types_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • name: String
  • value: String

knowledge_graph_relationship_types_update_column

update columns of table "knowledge_graph_relationship_types"

Values:

  • name - column name
  • value - column name

knowledge_graph_tenant_filters_aggregate_fields

aggregate fields of "knowledge_graph_tenant_filters"

Fields:

  • avg: knowledge_graph_tenant_filters_avg_fields
  • count: Int!
  • max: knowledge_graph_tenant_filters_max_fields
  • min: knowledge_graph_tenant_filters_min_fields
  • stddev: knowledge_graph_tenant_filters_stddev_fields
  • stddev_pop: knowledge_graph_tenant_filters_stddev_pop_fields
  • stddev_samp: knowledge_graph_tenant_filters_stddev_samp_fields
  • sum: knowledge_graph_tenant_filters_sum_fields
  • var_pop: knowledge_graph_tenant_filters_var_pop_fields
  • var_samp: knowledge_graph_tenant_filters_var_samp_fields
  • variance: knowledge_graph_tenant_filters_variance_fields

knowledge_graph_tenant_filters_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • account_ids: jsonb
  • filters: jsonb
  • flow_sources: jsonb
  • sources: jsonb

knowledge_graph_tenant_filters_avg_fields

aggregate avg on columns

Fields:

  • last_sync_version: Float

knowledge_graph_tenant_filters_bool_exp

Boolean expression to filter rows from the table "knowledge_graph_tenant_filters". All fields are combined with a logical 'AND'.

Fields:

  • _and: [knowledge_graph_tenant_filters_bool_exp!]
  • _not: knowledge_graph_tenant_filters_bool_exp
  • _or: [knowledge_graph_tenant_filters_bool_exp!]
  • account_ids: jsonb_comparison_exp
  • created_at: timestamptz_comparison_exp
  • enabled: Boolean_comparison_exp
  • filter_name: String_comparison_exp
  • filters: jsonb_comparison_exp
  • flow_sources: jsonb_comparison_exp
  • id: uuid_comparison_exp
  • is_default: Boolean_comparison_exp
  • last_sync_time: timestamp_comparison_exp
  • last_sync_version: numeric_comparison_exp
  • sources: jsonb_comparison_exp
  • tenant_id: uuid_comparison_exp

knowledge_graph_tenant_filters_constraint

unique or primary key constraints on table "knowledge_graph_tenant_filters"

Values:

  • knowledge_graph_tenant_filters_pkey - unique or primary key constraint on columns "id"
  • knowledge_graph_tenant_filters_tenant_id_filter_name_key - unique or primary key constraint on columns "filter_name", "tenant_id"

knowledge_graph_tenant_filters_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • account_ids: [String!]
  • filters: [String!]
  • flow_sources: [String!]
  • sources: [String!]

knowledge_graph_tenant_filters_delete_elem_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

Fields:

  • account_ids: Int
  • filters: Int
  • flow_sources: Int
  • sources: Int

knowledge_graph_tenant_filters_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • account_ids: String
  • filters: String
  • flow_sources: String
  • sources: String

knowledge_graph_tenant_filters_inc_input

input type for incrementing numeric columns in table "knowledge_graph_tenant_filters"

Fields:

  • last_sync_version: numeric

knowledge_graph_tenant_filters_insert_input

input type for inserting data into table "knowledge_graph_tenant_filters"

Fields:

  • account_ids: jsonb
  • created_at: timestamptz
  • enabled: Boolean
  • filter_name: String
  • filters: jsonb
  • flow_sources: jsonb
  • id: uuid
  • is_default: Boolean
  • last_sync_time: timestamp
  • last_sync_version: numeric
  • sources: jsonb
  • tenant_id: uuid

knowledge_graph_tenant_filters_max_fields

aggregate max on columns

Fields:

  • created_at: timestamptz
  • filter_name: String
  • id: uuid
  • last_sync_time: timestamp
  • last_sync_version: numeric
  • tenant_id: uuid

knowledge_graph_tenant_filters_min_fields

aggregate min on columns

Fields:

  • created_at: timestamptz
  • filter_name: String
  • id: uuid
  • last_sync_time: timestamp
  • last_sync_version: numeric
  • tenant_id: uuid

knowledge_graph_tenant_filters_mutation_response

response of any mutation on the table "knowledge_graph_tenant_filters"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [knowledge_graph_tenant_filters!]! - data from the rows affected by the mutation

knowledge_graph_tenant_filters_on_conflict

on_conflict condition type for table "knowledge_graph_tenant_filters"

Fields:

  • constraint: knowledge_graph_tenant_filters_constraint!
  • update_columns: [knowledge_graph_tenant_filters_update_column!]!
  • where: knowledge_graph_tenant_filters_bool_exp

knowledge_graph_tenant_filters_order_by

Ordering options when selecting data from "knowledge_graph_tenant_filters".

Fields:

  • account_ids: order_by
  • created_at: order_by
  • enabled: order_by
  • filter_name: order_by
  • filters: order_by
  • flow_sources: order_by
  • id: order_by
  • is_default: order_by
  • last_sync_time: order_by
  • last_sync_version: order_by
  • sources: order_by
  • tenant_id: order_by

knowledge_graph_tenant_filters_pk_columns_input

primary key columns input for table: knowledge_graph_tenant_filters

Fields:

  • id: uuid!

knowledge_graph_tenant_filters_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • account_ids: jsonb
  • filters: jsonb
  • flow_sources: jsonb
  • sources: jsonb

knowledge_graph_tenant_filters_select_column

select columns of table "knowledge_graph_tenant_filters"

Values:

  • account_ids - column name
  • created_at - column name
  • enabled - column name
  • filter_name - column name
  • filters - column name
  • flow_sources - column name
  • id - column name
  • is_default - column name
  • last_sync_time - column name
  • last_sync_version - column name
  • sources - column name
  • tenant_id - column name

knowledge_graph_tenant_filters_set_input

input type for updating data in table "knowledge_graph_tenant_filters"

Fields:

  • account_ids: jsonb
  • created_at: timestamptz
  • enabled: Boolean
  • filter_name: String
  • filters: jsonb
  • flow_sources: jsonb
  • id: uuid
  • is_default: Boolean
  • last_sync_time: timestamp
  • last_sync_version: numeric
  • sources: jsonb
  • tenant_id: uuid

knowledge_graph_tenant_filters_stddev_fields

aggregate stddev on columns

Fields:

  • last_sync_version: Float

knowledge_graph_tenant_filters_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • last_sync_version: Float

knowledge_graph_tenant_filters_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • last_sync_version: Float

knowledge_graph_tenant_filters_stream_cursor_input

Streaming cursor of the table "knowledge_graph_tenant_filters"

Fields:

  • initial_value: knowledge_graph_tenant_filters_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

knowledge_graph_tenant_filters_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_ids: jsonb
  • created_at: timestamptz
  • enabled: Boolean
  • filter_name: String
  • filters: jsonb
  • flow_sources: jsonb
  • id: uuid
  • is_default: Boolean
  • last_sync_time: timestamp
  • last_sync_version: numeric
  • sources: jsonb
  • tenant_id: uuid

knowledge_graph_tenant_filters_sum_fields

aggregate sum on columns

Fields:

  • last_sync_version: numeric

knowledge_graph_tenant_filters_update_column

update columns of table "knowledge_graph_tenant_filters"

Values:

  • account_ids - column name
  • created_at - column name
  • enabled - column name
  • filter_name - column name
  • filters - column name
  • flow_sources - column name
  • id - column name
  • is_default - column name
  • last_sync_time - column name
  • last_sync_version - column name
  • sources - column name
  • tenant_id - column name

knowledge_graph_tenant_filters_var_pop_fields

aggregate var_pop on columns

Fields:

  • last_sync_version: Float

knowledge_graph_tenant_filters_var_samp_fields

aggregate var_samp on columns

Fields:

  • last_sync_version: Float

knowledge_graph_tenant_filters_variance_fields

aggregate variance on columns

Fields:

  • last_sync_version: Float

llm_agents_aggregate_fields

aggregate fields of "llm_agents"

Fields:

  • count: Int!
  • max: llm_agents_max_fields
  • min: llm_agents_min_fields

llm_agents_bool_exp

Boolean expression to filter rows from the table "llm_agents". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_agents_bool_exp!]
  • _not: llm_agents_bool_exp
  • _or: [llm_agents_bool_exp!]
  • config: json_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • executor_type: String_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • status: String_comparison_exp
  • system_prompt: String_comparison_exp
  • system_prompt_variables: json_comparison_exp
  • tenant_id: uuid_comparison_exp
  • tools: json_comparison_exp
  • type: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: String_comparison_exp

llm_agents_constraint

unique or primary key constraints on table "llm_agents"

Values:

  • llm_agents_pkey - unique or primary key constraint on columns "id"

llm_agents_insert_input

input type for inserting data into table "llm_agents"

Fields:

  • config: json
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • executor_type: String
  • id: uuid
  • name: String
  • status: String
  • system_prompt: String
  • system_prompt_variables: json
  • tenant_id: uuid
  • tools: json
  • type: String
  • updated_at: timestamp
  • updated_by: String

llm_agents_installation_aggregate_fields

aggregate fields of "llm_agents_installation"

Fields:

  • count: Int!
  • max: llm_agents_installation_max_fields
  • min: llm_agents_installation_min_fields

llm_agents_installation_bool_exp

Boolean expression to filter rows from the table "llm_agents_installation". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_agents_installation_bool_exp!]
  • _not: llm_agents_installation_bool_exp
  • _or: [llm_agents_installation_bool_exp!]
  • account_id: uuid_comparison_exp
  • additional_instructions: String_comparison_exp
  • agent_id: String_comparison_exp
  • config: json_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • tools: json_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

llm_agents_installation_constraint

unique or primary key constraints on table "llm_agents_installation"

Values:

  • llm_agents_installation_agent_account_unique - unique or primary key constraint on columns "agent_id", "account_id"
  • llm_agents_installation_pkey - unique or primary key constraint on columns "id"

llm_agents_installation_insert_input

input type for inserting data into table "llm_agents_installation"

Fields:

  • account_id: uuid
  • additional_instructions: String
  • agent_id: String
  • config: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tools: json
  • updated_at: timestamp
  • updated_by: uuid

llm_agents_installation_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • additional_instructions: String
  • agent_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid

llm_agents_installation_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • additional_instructions: String
  • agent_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid

llm_agents_installation_mutation_response

response of any mutation on the table "llm_agents_installation"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_agents_installation!]! - data from the rows affected by the mutation

llm_agents_installation_on_conflict

on_conflict condition type for table "llm_agents_installation"

Fields:

  • constraint: llm_agents_installation_constraint!
  • update_columns: [llm_agents_installation_update_column!]!
  • where: llm_agents_installation_bool_exp

llm_agents_installation_order_by

Ordering options when selecting data from "llm_agents_installation".

Fields:

  • account_id: order_by
  • additional_instructions: order_by
  • agent_id: order_by
  • config: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • tools: order_by
  • updated_at: order_by
  • updated_by: order_by

llm_agents_installation_pk_columns_input

primary key columns input for table: llm_agents_installation

Fields:

  • id: uuid!

llm_agents_installation_select_column

select columns of table "llm_agents_installation"

Values:

  • account_id - column name
  • additional_instructions - column name
  • agent_id - column name
  • config - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • tools - column name
  • updated_at - column name
  • updated_by - column name

llm_agents_installation_set_input

input type for updating data in table "llm_agents_installation"

Fields:

  • account_id: uuid
  • additional_instructions: String
  • agent_id: String
  • config: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tools: json
  • updated_at: timestamp
  • updated_by: uuid

llm_agents_installation_stream_cursor_input

Streaming cursor of the table "llm_agents_installation"

Fields:

  • initial_value: llm_agents_installation_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_agents_installation_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • additional_instructions: String
  • agent_id: String
  • config: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tools: json
  • updated_at: timestamp
  • updated_by: uuid

llm_agents_installation_update_column

update columns of table "llm_agents_installation"

Values:

  • account_id - column name
  • additional_instructions - column name
  • agent_id - column name
  • config - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • tools - column name
  • updated_at - column name
  • updated_by - column name

llm_agents_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • executor_type: String
  • id: uuid
  • name: String
  • status: String
  • system_prompt: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: String

llm_agents_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • executor_type: String
  • id: uuid
  • name: String
  • status: String
  • system_prompt: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: String

llm_agents_mutation_response

response of any mutation on the table "llm_agents"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_agents!]! - data from the rows affected by the mutation

llm_agents_on_conflict

on_conflict condition type for table "llm_agents"

Fields:

  • constraint: llm_agents_constraint!
  • update_columns: [llm_agents_update_column!]!
  • where: llm_agents_bool_exp

llm_agents_order_by

Ordering options when selecting data from "llm_agents".

Fields:

  • config: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • executor_type: order_by
  • id: order_by
  • name: order_by
  • status: order_by
  • system_prompt: order_by
  • system_prompt_variables: order_by
  • tenant_id: order_by
  • tools: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by

llm_agents_pk_columns_input

primary key columns input for table: llm_agents

Fields:

  • id: uuid!

llm_agents_select_column

select columns of table "llm_agents"

Values:

  • config - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • executor_type - column name
  • id - column name
  • name - column name
  • status - column name
  • system_prompt - column name
  • system_prompt_variables - column name
  • tenant_id - column name
  • tools - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

llm_agents_set_input

input type for updating data in table "llm_agents"

Fields:

  • config: json
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • executor_type: String
  • id: uuid
  • name: String
  • status: String
  • system_prompt: String
  • system_prompt_variables: json
  • tenant_id: uuid
  • tools: json
  • type: String
  • updated_at: timestamp
  • updated_by: String

llm_agents_stream_cursor_input

Streaming cursor of the table "llm_agents"

Fields:

  • initial_value: llm_agents_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_agents_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • config: json
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • executor_type: String
  • id: uuid
  • name: String
  • status: String
  • system_prompt: String
  • system_prompt_variables: json
  • tenant_id: uuid
  • tools: json
  • type: String
  • updated_at: timestamp
  • updated_by: String

llm_agents_update_column

update columns of table "llm_agents"

Values:

  • config - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • executor_type - column name
  • id - column name
  • name - column name
  • status - column name
  • system_prompt - column name
  • system_prompt_variables - column name
  • tenant_id - column name
  • tools - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

llm_conversation_agent_aggregate_bool_exp

Fields:

  • count: llm_conversation_agent_aggregate_bool_exp_count

llm_conversation_agent_aggregate_bool_exp_count

Fields:

  • arguments: [llm_conversation_agent_select_column!]
  • distinct: Boolean
  • filter: llm_conversation_agent_bool_exp
  • predicate: Int_comparison_exp!

llm_conversation_agent_aggregate_fields

aggregate fields of "llm_conversation_agent"

Fields:

  • avg: llm_conversation_agent_avg_fields
  • count: Int!
  • max: llm_conversation_agent_max_fields
  • min: llm_conversation_agent_min_fields
  • stddev: llm_conversation_agent_stddev_fields
  • stddev_pop: llm_conversation_agent_stddev_pop_fields
  • stddev_samp: llm_conversation_agent_stddev_samp_fields
  • sum: llm_conversation_agent_sum_fields
  • var_pop: llm_conversation_agent_var_pop_fields
  • var_samp: llm_conversation_agent_var_samp_fields
  • variance: llm_conversation_agent_variance_fields

llm_conversation_agent_aggregate_order_by

order by aggregate values of table "llm_conversation_agent"

Fields:

  • avg: llm_conversation_agent_avg_order_by
  • count: order_by
  • max: llm_conversation_agent_max_order_by
  • min: llm_conversation_agent_min_order_by
  • stddev: llm_conversation_agent_stddev_order_by
  • stddev_pop: llm_conversation_agent_stddev_pop_order_by
  • stddev_samp: llm_conversation_agent_stddev_samp_order_by
  • sum: llm_conversation_agent_sum_order_by
  • var_pop: llm_conversation_agent_var_pop_order_by
  • var_samp: llm_conversation_agent_var_samp_order_by
  • variance: llm_conversation_agent_variance_order_by

llm_conversation_agent_arr_rel_insert_input

input type for inserting array relation for remote table "llm_conversation_agent"

Fields:

  • data: [llm_conversation_agent_insert_input!]!
  • on_conflict: llm_conversation_agent_on_conflict - upsert condition

llm_conversation_agent_avg_fields

aggregate avg on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_avg_order_by

order by avg() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_bool_exp

Boolean expression to filter rows from the table "llm_conversation_agent". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_agent_bool_exp!]
  • _not: llm_conversation_agent_bool_exp
  • _or: [llm_conversation_agent_bool_exp!]
  • account_id: uuid_comparison_exp
  • agent_name: String_comparison_exp
  • agent_step_response: String_comparison_exp
  • cached_input_tokens: Int_comparison_exp
  • conversation_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • followup_message_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • input_tokens: Int_comparison_exp
  • llm_conversation: llm_conversations_bool_exp
  • llm_conversation_message: llm_conversation_messages_bool_exp
  • llm_conversation_tool_calls: llm_conversation_tool_calls_bool_exp
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate_bool_exp
  • llm_model: String_comparison_exp
  • llm_provider: String_comparison_exp
  • message_id: uuid_comparison_exp
  • non_cached_input_tokens: Int_comparison_exp
  • output_tokens: Int_comparison_exp
  • parent_agent_id: uuid_comparison_exp
  • query: String_comparison_exp
  • query_config: String_comparison_exp
  • query_context: String_comparison_exp
  • response: String_comparison_exp
  • response_summary: String_comparison_exp
  • state: String_comparison_exp
  • status: String_comparison_exp
  • thought: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user_id: uuid_comparison_exp

llm_conversation_agent_constraint

unique or primary key constraints on table "llm_conversation_agent"

Values:

  • llm_conversation_agent_pk - unique or primary key constraint on columns "id"

llm_conversation_agent_critiques_aggregate_fields

aggregate fields of "llm_conversation_agent_critiques"

Fields:

  • count: Int!
  • max: llm_conversation_agent_critiques_max_fields
  • min: llm_conversation_agent_critiques_min_fields

llm_conversation_agent_critiques_bool_exp

Boolean expression to filter rows from the table "llm_conversation_agent_critiques". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_agent_critiques_bool_exp!]
  • _not: llm_conversation_agent_critiques_bool_exp
  • _or: [llm_conversation_agent_critiques_bool_exp!]
  • account_id: uuid_comparison_exp
  • agent_name: String_comparison_exp
  • conversation_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • critique_type: String_comparison_exp
  • critiqued_content: String_comparison_exp
  • decision: String_comparison_exp
  • feedback: String_comparison_exp
  • id: uuid_comparison_exp
  • input: String_comparison_exp
  • message_id: uuid_comparison_exp

llm_conversation_agent_critiques_constraint

unique or primary key constraints on table "llm_conversation_agent_critiques"

Values:

  • llm_conversation_critiques_pkey - unique or primary key constraint on columns "id"

llm_conversation_agent_critiques_insert_input

input type for inserting data into table "llm_conversation_agent_critiques"

Fields:

  • account_id: uuid
  • agent_name: String
  • conversation_id: uuid
  • created_at: timestamptz
  • critique_type: String - rewoo_planner critiques the plan, rewoo_solver critiques the final response, and react_answer critiques the agent’s execution actions.
  • critiqued_content: String
  • decision: String
  • feedback: String
  • id: uuid
  • input: String
  • message_id: uuid

llm_conversation_agent_critiques_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • agent_name: String
  • conversation_id: uuid
  • created_at: timestamptz
  • critique_type: String - rewoo_planner critiques the plan, rewoo_solver critiques the final response, and react_answer critiques the agent’s execution actions.
  • critiqued_content: String
  • decision: String
  • feedback: String
  • id: uuid
  • input: String
  • message_id: uuid

llm_conversation_agent_critiques_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • agent_name: String
  • conversation_id: uuid
  • created_at: timestamptz
  • critique_type: String - rewoo_planner critiques the plan, rewoo_solver critiques the final response, and react_answer critiques the agent’s execution actions.
  • critiqued_content: String
  • decision: String
  • feedback: String
  • id: uuid
  • input: String
  • message_id: uuid

llm_conversation_agent_critiques_mutation_response

response of any mutation on the table "llm_conversation_agent_critiques"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_agent_critiques!]! - data from the rows affected by the mutation

llm_conversation_agent_critiques_on_conflict

on_conflict condition type for table "llm_conversation_agent_critiques"

Fields:

  • constraint: llm_conversation_agent_critiques_constraint!
  • update_columns: [llm_conversation_agent_critiques_update_column!]!
  • where: llm_conversation_agent_critiques_bool_exp

llm_conversation_agent_critiques_order_by

Ordering options when selecting data from "llm_conversation_agent_critiques".

Fields:

  • account_id: order_by
  • agent_name: order_by
  • conversation_id: order_by
  • created_at: order_by
  • critique_type: order_by
  • critiqued_content: order_by
  • decision: order_by
  • feedback: order_by
  • id: order_by
  • input: order_by
  • message_id: order_by

llm_conversation_agent_critiques_pk_columns_input

primary key columns input for table: llm_conversation_agent_critiques

Fields:

  • id: uuid!

llm_conversation_agent_critiques_select_column

select columns of table "llm_conversation_agent_critiques"

Values:

  • account_id - column name
  • agent_name - column name
  • conversation_id - column name
  • created_at - column name
  • critique_type - column name
  • critiqued_content - column name
  • decision - column name
  • feedback - column name
  • id - column name
  • input - column name
  • message_id - column name

llm_conversation_agent_critiques_set_input

input type for updating data in table "llm_conversation_agent_critiques"

Fields:

  • account_id: uuid
  • agent_name: String
  • conversation_id: uuid
  • created_at: timestamptz
  • critique_type: String - rewoo_planner critiques the plan, rewoo_solver critiques the final response, and react_answer critiques the agent’s execution actions.
  • critiqued_content: String
  • decision: String
  • feedback: String
  • id: uuid
  • input: String
  • message_id: uuid

llm_conversation_agent_critiques_stream_cursor_input

Streaming cursor of the table "llm_conversation_agent_critiques"

Fields:

  • initial_value: llm_conversation_agent_critiques_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_agent_critiques_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • agent_name: String
  • conversation_id: uuid
  • created_at: timestamptz
  • critique_type: String - rewoo_planner critiques the plan, rewoo_solver critiques the final response, and react_answer critiques the agent’s execution actions.
  • critiqued_content: String
  • decision: String
  • feedback: String
  • id: uuid
  • input: String
  • message_id: uuid

llm_conversation_agent_critiques_update_column

update columns of table "llm_conversation_agent_critiques"

Values:

  • account_id - column name
  • agent_name - column name
  • conversation_id - column name
  • created_at - column name
  • critique_type - column name
  • critiqued_content - column name
  • decision - column name
  • feedback - column name
  • id - column name
  • input - column name
  • message_id - column name

llm_conversation_agent_inc_input

input type for incrementing numeric columns in table "llm_conversation_agent"

Fields:

  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM

llm_conversation_agent_insert_input

input type for inserting data into table "llm_conversation_agent"

Fields:

  • account_id: uuid
  • agent_name: String
  • agent_step_response: String
  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: uuid
  • created_at: timestamp
  • followup_message_id: uuid
  • id: uuid
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • llm_conversation: llm_conversations_obj_rel_insert_input
  • llm_conversation_message: llm_conversation_messages_obj_rel_insert_input
  • llm_conversation_tool_calls: llm_conversation_tool_calls_arr_rel_insert_input
  • llm_model: String
  • llm_provider: String
  • message_id: uuid
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM
  • parent_agent_id: uuid
  • query: String
  • query_config: String
  • query_context: String
  • response: String
  • response_summary: String
  • state: String
  • status: String
  • thought: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversation_agent_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • agent_name: String
  • agent_step_response: String
  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: uuid
  • created_at: timestamp
  • followup_message_id: uuid
  • id: uuid
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • llm_model: String
  • llm_provider: String
  • message_id: uuid
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM
  • parent_agent_id: uuid
  • query: String
  • query_config: String
  • query_context: String
  • response: String
  • response_summary: String
  • state: String
  • status: String
  • thought: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversation_agent_max_order_by

order by max() on columns of table "llm_conversation_agent"

Fields:

  • account_id: order_by
  • agent_name: order_by
  • agent_step_response: order_by
  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: order_by
  • created_at: order_by
  • followup_message_id: order_by
  • id: order_by
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • llm_model: order_by
  • llm_provider: order_by
  • message_id: order_by
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM
  • parent_agent_id: order_by
  • query: order_by
  • query_config: order_by
  • query_context: order_by
  • response: order_by
  • response_summary: order_by
  • state: order_by
  • status: order_by
  • thought: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversation_agent_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • agent_name: String
  • agent_step_response: String
  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: uuid
  • created_at: timestamp
  • followup_message_id: uuid
  • id: uuid
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • llm_model: String
  • llm_provider: String
  • message_id: uuid
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM
  • parent_agent_id: uuid
  • query: String
  • query_config: String
  • query_context: String
  • response: String
  • response_summary: String
  • state: String
  • status: String
  • thought: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversation_agent_min_order_by

order by min() on columns of table "llm_conversation_agent"

Fields:

  • account_id: order_by
  • agent_name: order_by
  • agent_step_response: order_by
  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: order_by
  • created_at: order_by
  • followup_message_id: order_by
  • id: order_by
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • llm_model: order_by
  • llm_provider: order_by
  • message_id: order_by
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM
  • parent_agent_id: order_by
  • query: order_by
  • query_config: order_by
  • query_context: order_by
  • response: order_by
  • response_summary: order_by
  • state: order_by
  • status: order_by
  • thought: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversation_agent_mutation_response

response of any mutation on the table "llm_conversation_agent"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_agent!]! - data from the rows affected by the mutation

llm_conversation_agent_obj_rel_insert_input

input type for inserting object relation for remote table "llm_conversation_agent"

Fields:

  • data: llm_conversation_agent_insert_input!
  • on_conflict: llm_conversation_agent_on_conflict - upsert condition

llm_conversation_agent_on_conflict

on_conflict condition type for table "llm_conversation_agent"

Fields:

  • constraint: llm_conversation_agent_constraint!
  • update_columns: [llm_conversation_agent_update_column!]!
  • where: llm_conversation_agent_bool_exp

llm_conversation_agent_order_by

Ordering options when selecting data from "llm_conversation_agent".

Fields:

  • account_id: order_by
  • agent_name: order_by
  • agent_step_response: order_by
  • cached_input_tokens: order_by
  • conversation_id: order_by
  • created_at: order_by
  • followup_message_id: order_by
  • id: order_by
  • input_tokens: order_by
  • llm_conversation: llm_conversations_order_by
  • llm_conversation_message: llm_conversation_messages_order_by
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate_order_by
  • llm_model: order_by
  • llm_provider: order_by
  • message_id: order_by
  • non_cached_input_tokens: order_by
  • output_tokens: order_by
  • parent_agent_id: order_by
  • query: order_by
  • query_config: order_by
  • query_context: order_by
  • response: order_by
  • response_summary: order_by
  • state: order_by
  • status: order_by
  • thought: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversation_agent_pk_columns_input

primary key columns input for table: llm_conversation_agent

Fields:

  • id: uuid!

llm_conversation_agent_select_column

select columns of table "llm_conversation_agent"

Values:

  • account_id - column name
  • agent_name - column name
  • agent_step_response - column name
  • cached_input_tokens - column name
  • conversation_id - column name
  • created_at - column name
  • followup_message_id - column name
  • id - column name
  • input_tokens - column name
  • llm_model - column name
  • llm_provider - column name
  • message_id - column name
  • non_cached_input_tokens - column name
  • output_tokens - column name
  • parent_agent_id - column name
  • query - column name
  • query_config - column name
  • query_context - column name
  • response - column name
  • response_summary - column name
  • state - column name
  • status - column name
  • thought - column name
  • updated_at - column name
  • user_id - column name

llm_conversation_agent_set_input

input type for updating data in table "llm_conversation_agent"

Fields:

  • account_id: uuid
  • agent_name: String
  • agent_step_response: String
  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: uuid
  • created_at: timestamp
  • followup_message_id: uuid
  • id: uuid
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • llm_model: String
  • llm_provider: String
  • message_id: uuid
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM
  • parent_agent_id: uuid
  • query: String
  • query_config: String
  • query_context: String
  • response: String
  • response_summary: String
  • state: String
  • status: String
  • thought: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversation_agent_stddev_fields

aggregate stddev on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_stddev_order_by

order by stddev() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_stddev_pop_order_by

order by stddev_pop() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_stddev_samp_order_by

order by stddev_samp() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_stream_cursor_input

Streaming cursor of the table "llm_conversation_agent"

Fields:

  • initial_value: llm_conversation_agent_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_agent_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • agent_name: String
  • agent_step_response: String
  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • conversation_id: uuid
  • created_at: timestamp
  • followup_message_id: uuid
  • id: uuid
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • llm_model: String
  • llm_provider: String
  • message_id: uuid
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM
  • parent_agent_id: uuid
  • query: String
  • query_config: String
  • query_context: String
  • response: String
  • response_summary: String
  • state: String
  • status: String
  • thought: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversation_agent_sum_fields

aggregate sum on columns

Fields:

  • cached_input_tokens: Int - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Int - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Int - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Int - Total output tokens generated by LLM

llm_conversation_agent_sum_order_by

order by sum() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_update_column

update columns of table "llm_conversation_agent"

Values:

  • account_id - column name
  • agent_name - column name
  • agent_step_response - column name
  • cached_input_tokens - column name
  • conversation_id - column name
  • created_at - column name
  • followup_message_id - column name
  • id - column name
  • input_tokens - column name
  • llm_model - column name
  • llm_provider - column name
  • message_id - column name
  • non_cached_input_tokens - column name
  • output_tokens - column name
  • parent_agent_id - column name
  • query - column name
  • query_config - column name
  • query_context - column name
  • response - column name
  • response_summary - column name
  • state - column name
  • status - column name
  • thought - column name
  • updated_at - column name
  • user_id - column name

llm_conversation_agent_var_pop_fields

aggregate var_pop on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_var_pop_order_by

order by var_pop() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_var_samp_fields

aggregate var_samp on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_var_samp_order_by

order by var_samp() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_agent_variance_fields

aggregate variance on columns

Fields:

  • cached_input_tokens: Float - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: Float - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: Float - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: Float - Total output tokens generated by LLM

llm_conversation_agent_variance_order_by

order by variance() on columns of table "llm_conversation_agent"

Fields:

  • cached_input_tokens: order_by - Tokens served from cache (10x cheaper: $0.125/1M for Gemini, $0.30/1M for Claude)
  • input_tokens: order_by - Total input tokens (cached + non_cached) sent to LLM
  • non_cached_input_tokens: order_by - New input tokens not from cache (regular rate: $1.25/1M for Gemini, $3.00/1M for Claude)
  • output_tokens: order_by - Total output tokens generated by LLM

llm_conversation_feedback_aggregate_fields

aggregate fields of "llm_conversation_feedback"

Fields:

  • avg: llm_conversation_feedback_avg_fields
  • count: Int!
  • max: llm_conversation_feedback_max_fields
  • min: llm_conversation_feedback_min_fields
  • stddev: llm_conversation_feedback_stddev_fields
  • stddev_pop: llm_conversation_feedback_stddev_pop_fields
  • stddev_samp: llm_conversation_feedback_stddev_samp_fields
  • sum: llm_conversation_feedback_sum_fields
  • var_pop: llm_conversation_feedback_var_pop_fields
  • var_samp: llm_conversation_feedback_var_samp_fields
  • variance: llm_conversation_feedback_variance_fields

llm_conversation_feedback_avg_fields

aggregate avg on columns

Fields:

  • id: Float

llm_conversation_feedback_bool_exp

Boolean expression to filter rows from the table "llm_conversation_feedback". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_feedback_bool_exp!]
  • _not: llm_conversation_feedback_bool_exp
  • _or: [llm_conversation_feedback_bool_exp!]
  • additional_notes: String_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • conversation_id: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: Int_comparison_exp
  • llm_response: String_comparison_exp
  • module: String_comparison_exp
  • question: String_comparison_exp
  • session_id: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • useful: Boolean_comparison_exp
  • user_corrected_response: String_comparison_exp
  • user_id: uuid_comparison_exp

llm_conversation_feedback_constraint

unique or primary key constraints on table "llm_conversation_feedback"

Values:

  • llm_conversation_feedback_pkey - unique or primary key constraint on columns "id"

llm_conversation_feedback_inc_input

input type for incrementing numeric columns in table "llm_conversation_feedback"

Fields:

  • id: Int

llm_conversation_feedback_insert_input

input type for inserting data into table "llm_conversation_feedback"

Fields:

  • additional_notes: String
  • cloud_account_id: uuid
  • conversation_id: String
  • created_at: timestamp
  • id: Int
  • llm_response: String
  • module: String
  • question: String
  • session_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • useful: Boolean
  • user_corrected_response: String
  • user_id: uuid

llm_conversation_feedback_max_fields

aggregate max on columns

Fields:

  • additional_notes: String
  • cloud_account_id: uuid
  • conversation_id: String
  • created_at: timestamp
  • id: Int
  • llm_response: String
  • module: String
  • question: String
  • session_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_corrected_response: String
  • user_id: uuid

llm_conversation_feedback_min_fields

aggregate min on columns

Fields:

  • additional_notes: String
  • cloud_account_id: uuid
  • conversation_id: String
  • created_at: timestamp
  • id: Int
  • llm_response: String
  • module: String
  • question: String
  • session_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_corrected_response: String
  • user_id: uuid

llm_conversation_feedback_mutation_response

response of any mutation on the table "llm_conversation_feedback"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_feedback!]! - data from the rows affected by the mutation

llm_conversation_feedback_on_conflict

on_conflict condition type for table "llm_conversation_feedback"

Fields:

  • constraint: llm_conversation_feedback_constraint!
  • update_columns: [llm_conversation_feedback_update_column!]!
  • where: llm_conversation_feedback_bool_exp

llm_conversation_feedback_order_by

Ordering options when selecting data from "llm_conversation_feedback".

Fields:

  • additional_notes: order_by
  • cloud_account_id: order_by
  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • llm_response: order_by
  • module: order_by
  • question: order_by
  • session_id: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • useful: order_by
  • user_corrected_response: order_by
  • user_id: order_by

llm_conversation_feedback_pk_columns_input

primary key columns input for table: llm_conversation_feedback

Fields:

  • id: Int!

llm_conversation_feedback_select_column

select columns of table "llm_conversation_feedback"

Values:

  • additional_notes - column name
  • cloud_account_id - column name
  • conversation_id - column name
  • created_at - column name
  • id - column name
  • llm_response - column name
  • module - column name
  • question - column name
  • session_id - column name
  • tenant_id - column name
  • updated_at - column name
  • useful - column name
  • user_corrected_response - column name
  • user_id - column name

llm_conversation_feedback_set_input

input type for updating data in table "llm_conversation_feedback"

Fields:

  • additional_notes: String
  • cloud_account_id: uuid
  • conversation_id: String
  • created_at: timestamp
  • id: Int
  • llm_response: String
  • module: String
  • question: String
  • session_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • useful: Boolean
  • user_corrected_response: String
  • user_id: uuid

llm_conversation_feedback_stddev_fields

aggregate stddev on columns

Fields:

  • id: Float

llm_conversation_feedback_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • id: Float

llm_conversation_feedback_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • id: Float

llm_conversation_feedback_stream_cursor_input

Streaming cursor of the table "llm_conversation_feedback"

Fields:

  • initial_value: llm_conversation_feedback_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_feedback_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • additional_notes: String
  • cloud_account_id: uuid
  • conversation_id: String
  • created_at: timestamp
  • id: Int
  • llm_response: String
  • module: String
  • question: String
  • session_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • useful: Boolean
  • user_corrected_response: String
  • user_id: uuid

llm_conversation_feedback_sum_fields

aggregate sum on columns

Fields:

  • id: Int

llm_conversation_feedback_update_column

update columns of table "llm_conversation_feedback"

Values:

  • additional_notes - column name
  • cloud_account_id - column name
  • conversation_id - column name
  • created_at - column name
  • id - column name
  • llm_response - column name
  • module - column name
  • question - column name
  • session_id - column name
  • tenant_id - column name
  • updated_at - column name
  • useful - column name
  • user_corrected_response - column name
  • user_id - column name

llm_conversation_feedback_var_pop_fields

aggregate var_pop on columns

Fields:

  • id: Float

llm_conversation_feedback_var_samp_fields

aggregate var_samp on columns

Fields:

  • id: Float

llm_conversation_feedback_variance_fields

aggregate variance on columns

Fields:

  • id: Float

llm_conversation_history_aggregate_fields

aggregate fields of "llm_conversation_history"

Fields:

  • count: Int!
  • max: llm_conversation_history_max_fields
  • min: llm_conversation_history_min_fields

llm_conversation_history_bool_exp

Boolean expression to filter rows from the table "llm_conversation_history". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_history_bool_exp!]
  • _not: llm_conversation_history_bool_exp
  • _or: [llm_conversation_history_bool_exp!]
  • account_id: uuid_comparison_exp
  • chain_name: String_comparison_exp
  • id: uuid_comparison_exp
  • message: String_comparison_exp
  • recorded_at: timestamp_comparison_exp
  • request_type: String_comparison_exp
  • role: String_comparison_exp
  • session_id: String_comparison_exp
  • user_id: uuid_comparison_exp

llm_conversation_history_constraint

unique or primary key constraints on table "llm_conversation_history"

Values:

  • llm_conversation_history_id_user_id_account_id_session_id_key - unique or primary key constraint on columns "session_id", "account_id", "user_id", "id"
  • llm_conversation_history_pkey - unique or primary key constraint on columns "id"

llm_conversation_history_insert_input

input type for inserting data into table "llm_conversation_history"

Fields:

  • account_id: uuid
  • chain_name: String
  • id: uuid
  • message: String
  • recorded_at: timestamp
  • request_type: String
  • role: String
  • session_id: String
  • user_id: uuid

llm_conversation_history_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • chain_name: String
  • id: uuid
  • message: String
  • recorded_at: timestamp
  • request_type: String
  • role: String
  • session_id: String
  • user_id: uuid

llm_conversation_history_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • chain_name: String
  • id: uuid
  • message: String
  • recorded_at: timestamp
  • request_type: String
  • role: String
  • session_id: String
  • user_id: uuid

llm_conversation_history_mutation_response

response of any mutation on the table "llm_conversation_history"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_history!]! - data from the rows affected by the mutation

llm_conversation_history_on_conflict

on_conflict condition type for table "llm_conversation_history"

Fields:

  • constraint: llm_conversation_history_constraint!
  • update_columns: [llm_conversation_history_update_column!]!
  • where: llm_conversation_history_bool_exp

llm_conversation_history_order_by

Ordering options when selecting data from "llm_conversation_history".

Fields:

  • account_id: order_by
  • chain_name: order_by
  • id: order_by
  • message: order_by
  • recorded_at: order_by
  • request_type: order_by
  • role: order_by
  • session_id: order_by
  • user_id: order_by

llm_conversation_history_pk_columns_input

primary key columns input for table: llm_conversation_history

Fields:

  • id: uuid!

llm_conversation_history_select_column

select columns of table "llm_conversation_history"

Values:

  • account_id - column name
  • chain_name - column name
  • id - column name
  • message - column name
  • recorded_at - column name
  • request_type - column name
  • role - column name
  • session_id - column name
  • user_id - column name

llm_conversation_history_set_input

input type for updating data in table "llm_conversation_history"

Fields:

  • account_id: uuid
  • chain_name: String
  • id: uuid
  • message: String
  • recorded_at: timestamp
  • request_type: String
  • role: String
  • session_id: String
  • user_id: uuid

llm_conversation_history_stream_cursor_input

Streaming cursor of the table "llm_conversation_history"

Fields:

  • initial_value: llm_conversation_history_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_history_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • chain_name: String
  • id: uuid
  • message: String
  • recorded_at: timestamp
  • request_type: String
  • role: String
  • session_id: String
  • user_id: uuid

llm_conversation_history_update_column

update columns of table "llm_conversation_history"

Values:

  • account_id - column name
  • chain_name - column name
  • id - column name
  • message - column name
  • recorded_at - column name
  • request_type - column name
  • role - column name
  • session_id - column name
  • user_id - column name

llm_conversation_messages_aggregate_bool_exp

Fields:

  • count: llm_conversation_messages_aggregate_bool_exp_count

llm_conversation_messages_aggregate_bool_exp_count

Fields:

  • arguments: [llm_conversation_messages_select_column!]
  • distinct: Boolean
  • filter: llm_conversation_messages_bool_exp
  • predicate: Int_comparison_exp!

llm_conversation_messages_aggregate_fields

aggregate fields of "llm_conversation_messages"

Fields:

  • avg: llm_conversation_messages_avg_fields
  • count: Int!
  • max: llm_conversation_messages_max_fields
  • min: llm_conversation_messages_min_fields
  • stddev: llm_conversation_messages_stddev_fields
  • stddev_pop: llm_conversation_messages_stddev_pop_fields
  • stddev_samp: llm_conversation_messages_stddev_samp_fields
  • sum: llm_conversation_messages_sum_fields
  • var_pop: llm_conversation_messages_var_pop_fields
  • var_samp: llm_conversation_messages_var_samp_fields
  • variance: llm_conversation_messages_variance_fields

llm_conversation_messages_aggregate_order_by

order by aggregate values of table "llm_conversation_messages"

Fields:

  • avg: llm_conversation_messages_avg_order_by
  • count: order_by
  • max: llm_conversation_messages_max_order_by
  • min: llm_conversation_messages_min_order_by
  • stddev: llm_conversation_messages_stddev_order_by
  • stddev_pop: llm_conversation_messages_stddev_pop_order_by
  • stddev_samp: llm_conversation_messages_stddev_samp_order_by
  • sum: llm_conversation_messages_sum_order_by
  • var_pop: llm_conversation_messages_var_pop_order_by
  • var_samp: llm_conversation_messages_var_samp_order_by
  • variance: llm_conversation_messages_variance_order_by

llm_conversation_messages_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • remediation: jsonb

llm_conversation_messages_arr_rel_insert_input

input type for inserting array relation for remote table "llm_conversation_messages"

Fields:

  • data: [llm_conversation_messages_insert_input!]!
  • on_conflict: llm_conversation_messages_on_conflict - upsert condition

llm_conversation_messages_avg_fields

aggregate avg on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_avg_order_by

order by avg() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_bool_exp

Boolean expression to filter rows from the table "llm_conversation_messages". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_messages_bool_exp!]
  • _not: llm_conversation_messages_bool_exp
  • _or: [llm_conversation_messages_bool_exp!]
  • account_id: uuid_comparison_exp
  • ack_message: String_comparison_exp
  • agent_name: String_comparison_exp
  • classification: String_comparison_exp
  • compact_response: String_comparison_exp
  • conversation_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • eval_metrics: String_comparison_exp
  • id: uuid_comparison_exp
  • llm_conversation: llm_conversations_bool_exp
  • llm_conversation_agents: llm_conversation_agent_bool_exp
  • llm_conversation_agents_aggregate: llm_conversation_agent_aggregate_bool_exp
  • llm_conversation_tool_calls: llm_conversation_tool_calls_bool_exp
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate_bool_exp
  • llm_model: String_comparison_exp
  • llm_provider: String_comparison_exp
  • message: String_comparison_exp
  • message_config: String_comparison_exp
  • message_context: String_comparison_exp
  • message_type: String_comparison_exp
  • parent_agent_id: uuid_comparison_exp
  • remediation: jsonb_comparison_exp
  • response: String_comparison_exp
  • role: String_comparison_exp
  • status: llm_conversation_status_comparison_exp
  • successful_tasks: Int_comparison_exp
  • suggestions: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user: users_bool_exp
  • user_id: uuid_comparison_exp
  • worker_name: String_comparison_exp

llm_conversation_messages_constraint

unique or primary key constraints on table "llm_conversation_messages"

Values:

  • llm_messages_pk - unique or primary key constraint on columns "id"

llm_conversation_messages_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • remediation: [String!]

llm_conversation_messages_delete_elem_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

Fields:

  • remediation: Int

llm_conversation_messages_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • remediation: String

llm_conversation_messages_inc_input

input type for incrementing numeric columns in table "llm_conversation_messages"

Fields:

  • successful_tasks: Int

llm_conversation_messages_insert_input

input type for inserting data into table "llm_conversation_messages"

Fields:

  • account_id: uuid
  • ack_message: String
  • agent_name: String
  • classification: String
  • compact_response: String
  • conversation_id: uuid
  • created_at: timestamp
  • eval_metrics: String
  • id: uuid
  • llm_conversation: llm_conversations_obj_rel_insert_input
  • llm_conversation_agents: llm_conversation_agent_arr_rel_insert_input
  • llm_conversation_tool_calls: llm_conversation_tool_calls_arr_rel_insert_input
  • llm_model: String
  • llm_provider: String
  • message: String
  • message_config: String
  • message_context: String
  • message_type: String
  • parent_agent_id: uuid
  • remediation: jsonb
  • response: String
  • role: String
  • status: llm_conversation_status
  • successful_tasks: Int
  • suggestions: String
  • updated_at: timestamp
  • user: users_obj_rel_insert_input
  • user_id: uuid
  • worker_name: String

llm_conversation_messages_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • ack_message: String
  • agent_name: String
  • classification: String
  • compact_response: String
  • conversation_id: uuid
  • created_at: timestamp
  • eval_metrics: String
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • message: String
  • message_config: String
  • message_context: String
  • message_type: String
  • parent_agent_id: uuid
  • response: String
  • role: String
  • status: llm_conversation_status
  • successful_tasks: Int
  • suggestions: String
  • updated_at: timestamp
  • user_id: uuid
  • worker_name: String

llm_conversation_messages_max_order_by

order by max() on columns of table "llm_conversation_messages"

Fields:

  • account_id: order_by
  • ack_message: order_by
  • agent_name: order_by
  • classification: order_by
  • compact_response: order_by
  • conversation_id: order_by
  • created_at: order_by
  • eval_metrics: order_by
  • id: order_by
  • llm_model: order_by
  • llm_provider: order_by
  • message: order_by
  • message_config: order_by
  • message_context: order_by
  • message_type: order_by
  • parent_agent_id: order_by
  • response: order_by
  • role: order_by
  • status: order_by
  • successful_tasks: order_by
  • suggestions: order_by
  • updated_at: order_by
  • user_id: order_by
  • worker_name: order_by

llm_conversation_messages_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • ack_message: String
  • agent_name: String
  • classification: String
  • compact_response: String
  • conversation_id: uuid
  • created_at: timestamp
  • eval_metrics: String
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • message: String
  • message_config: String
  • message_context: String
  • message_type: String
  • parent_agent_id: uuid
  • response: String
  • role: String
  • status: llm_conversation_status
  • successful_tasks: Int
  • suggestions: String
  • updated_at: timestamp
  • user_id: uuid
  • worker_name: String

llm_conversation_messages_min_order_by

order by min() on columns of table "llm_conversation_messages"

Fields:

  • account_id: order_by
  • ack_message: order_by
  • agent_name: order_by
  • classification: order_by
  • compact_response: order_by
  • conversation_id: order_by
  • created_at: order_by
  • eval_metrics: order_by
  • id: order_by
  • llm_model: order_by
  • llm_provider: order_by
  • message: order_by
  • message_config: order_by
  • message_context: order_by
  • message_type: order_by
  • parent_agent_id: order_by
  • response: order_by
  • role: order_by
  • status: order_by
  • successful_tasks: order_by
  • suggestions: order_by
  • updated_at: order_by
  • user_id: order_by
  • worker_name: order_by

llm_conversation_messages_mutation_response

response of any mutation on the table "llm_conversation_messages"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_messages!]! - data from the rows affected by the mutation

llm_conversation_messages_obj_rel_insert_input

input type for inserting object relation for remote table "llm_conversation_messages"

Fields:

  • data: llm_conversation_messages_insert_input!
  • on_conflict: llm_conversation_messages_on_conflict - upsert condition

llm_conversation_messages_on_conflict

on_conflict condition type for table "llm_conversation_messages"

Fields:

  • constraint: llm_conversation_messages_constraint!
  • update_columns: [llm_conversation_messages_update_column!]!
  • where: llm_conversation_messages_bool_exp

llm_conversation_messages_order_by

Ordering options when selecting data from "llm_conversation_messages".

Fields:

  • account_id: order_by
  • ack_message: order_by
  • agent_name: order_by
  • classification: order_by
  • compact_response: order_by
  • conversation_id: order_by
  • created_at: order_by
  • eval_metrics: order_by
  • id: order_by
  • llm_conversation: llm_conversations_order_by
  • llm_conversation_agents_aggregate: llm_conversation_agent_aggregate_order_by
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate_order_by
  • llm_model: order_by
  • llm_provider: order_by
  • message: order_by
  • message_config: order_by
  • message_context: order_by
  • message_type: order_by
  • parent_agent_id: order_by
  • remediation: order_by
  • response: order_by
  • role: order_by
  • status: order_by
  • successful_tasks: order_by
  • suggestions: order_by
  • updated_at: order_by
  • user: users_order_by
  • user_id: order_by
  • worker_name: order_by

llm_conversation_messages_pk_columns_input

primary key columns input for table: llm_conversation_messages

Fields:

  • id: uuid!

llm_conversation_messages_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • remediation: jsonb

llm_conversation_messages_select_column

select columns of table "llm_conversation_messages"

Values:

  • account_id - column name
  • ack_message - column name
  • agent_name - column name
  • classification - column name
  • compact_response - column name
  • conversation_id - column name
  • created_at - column name
  • eval_metrics - column name
  • id - column name
  • llm_model - column name
  • llm_provider - column name
  • message - column name
  • message_config - column name
  • message_context - column name
  • message_type - column name
  • parent_agent_id - column name
  • remediation - column name
  • response - column name
  • role - column name
  • status - column name
  • successful_tasks - column name
  • suggestions - column name
  • updated_at - column name
  • user_id - column name
  • worker_name - column name

llm_conversation_messages_set_input

input type for updating data in table "llm_conversation_messages"

Fields:

  • account_id: uuid
  • ack_message: String
  • agent_name: String
  • classification: String
  • compact_response: String
  • conversation_id: uuid
  • created_at: timestamp
  • eval_metrics: String
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • message: String
  • message_config: String
  • message_context: String
  • message_type: String
  • parent_agent_id: uuid
  • remediation: jsonb
  • response: String
  • role: String
  • status: llm_conversation_status
  • successful_tasks: Int
  • suggestions: String
  • updated_at: timestamp
  • user_id: uuid
  • worker_name: String

llm_conversation_messages_stddev_fields

aggregate stddev on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_stddev_order_by

order by stddev() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_stddev_pop_order_by

order by stddev_pop() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_stddev_samp_order_by

order by stddev_samp() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_stream_cursor_input

Streaming cursor of the table "llm_conversation_messages"

Fields:

  • initial_value: llm_conversation_messages_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_messages_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • ack_message: String
  • agent_name: String
  • classification: String
  • compact_response: String
  • conversation_id: uuid
  • created_at: timestamp
  • eval_metrics: String
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • message: String
  • message_config: String
  • message_context: String
  • message_type: String
  • parent_agent_id: uuid
  • remediation: jsonb
  • response: String
  • role: String
  • status: llm_conversation_status
  • successful_tasks: Int
  • suggestions: String
  • updated_at: timestamp
  • user_id: uuid
  • worker_name: String

llm_conversation_messages_sum_fields

aggregate sum on columns

Fields:

  • successful_tasks: Int

llm_conversation_messages_sum_order_by

order by sum() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_update_column

update columns of table "llm_conversation_messages"

Values:

  • account_id - column name
  • ack_message - column name
  • agent_name - column name
  • classification - column name
  • compact_response - column name
  • conversation_id - column name
  • created_at - column name
  • eval_metrics - column name
  • id - column name
  • llm_model - column name
  • llm_provider - column name
  • message - column name
  • message_config - column name
  • message_context - column name
  • message_type - column name
  • parent_agent_id - column name
  • remediation - column name
  • response - column name
  • role - column name
  • status - column name
  • successful_tasks - column name
  • suggestions - column name
  • updated_at - column name
  • user_id - column name
  • worker_name - column name

llm_conversation_messages_var_pop_fields

aggregate var_pop on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_var_pop_order_by

order by var_pop() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_var_samp_fields

aggregate var_samp on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_var_samp_order_by

order by var_samp() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_messages_variance_fields

aggregate variance on columns

Fields:

  • successful_tasks: Float

llm_conversation_messages_variance_order_by

order by variance() on columns of table "llm_conversation_messages"

Fields:

  • successful_tasks: order_by

llm_conversation_saved_aggregate_bool_exp

Fields:

  • count: llm_conversation_saved_aggregate_bool_exp_count

llm_conversation_saved_aggregate_bool_exp_count

Fields:

  • arguments: [llm_conversation_saved_select_column!]
  • distinct: Boolean
  • filter: llm_conversation_saved_bool_exp
  • predicate: Int_comparison_exp!

llm_conversation_saved_aggregate_fields

aggregate fields of "llm_conversation_saved"

Fields:

  • count: Int!
  • max: llm_conversation_saved_max_fields
  • min: llm_conversation_saved_min_fields

llm_conversation_saved_aggregate_order_by

order by aggregate values of table "llm_conversation_saved"

Fields:

  • count: order_by
  • max: llm_conversation_saved_max_order_by
  • min: llm_conversation_saved_min_order_by

llm_conversation_saved_arr_rel_insert_input

input type for inserting array relation for remote table "llm_conversation_saved"

Fields:

  • data: [llm_conversation_saved_insert_input!]!
  • on_conflict: llm_conversation_saved_on_conflict - upsert condition

llm_conversation_saved_bool_exp

Boolean expression to filter rows from the table "llm_conversation_saved". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_saved_bool_exp!]
  • _not: llm_conversation_saved_bool_exp
  • _or: [llm_conversation_saved_bool_exp!]
  • conversation_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • llm_conversation: llm_conversations_bool_exp
  • user: users_bool_exp
  • user_id: uuid_comparison_exp

llm_conversation_saved_constraint

unique or primary key constraints on table "llm_conversation_saved"

Values:

  • llm_conversation_saved_pkey - unique or primary key constraint on columns "id"

llm_conversation_saved_insert_input

input type for inserting data into table "llm_conversation_saved"

Fields:

  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • llm_conversation: llm_conversations_obj_rel_insert_input
  • user: users_obj_rel_insert_input
  • user_id: uuid

llm_conversation_saved_max_fields

aggregate max on columns

Fields:

  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • user_id: uuid

llm_conversation_saved_max_order_by

order by max() on columns of table "llm_conversation_saved"

Fields:

  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • user_id: order_by

llm_conversation_saved_min_fields

aggregate min on columns

Fields:

  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • user_id: uuid

llm_conversation_saved_min_order_by

order by min() on columns of table "llm_conversation_saved"

Fields:

  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • user_id: order_by

llm_conversation_saved_mutation_response

response of any mutation on the table "llm_conversation_saved"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_saved!]! - data from the rows affected by the mutation

llm_conversation_saved_obj_rel_insert_input

input type for inserting object relation for remote table "llm_conversation_saved"

Fields:

  • data: llm_conversation_saved_insert_input!
  • on_conflict: llm_conversation_saved_on_conflict - upsert condition

llm_conversation_saved_on_conflict

on_conflict condition type for table "llm_conversation_saved"

Fields:

  • constraint: llm_conversation_saved_constraint!
  • update_columns: [llm_conversation_saved_update_column!]!
  • where: llm_conversation_saved_bool_exp

llm_conversation_saved_order_by

Ordering options when selecting data from "llm_conversation_saved".

Fields:

  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • llm_conversation: llm_conversations_order_by
  • user: users_order_by
  • user_id: order_by

llm_conversation_saved_pk_columns_input

primary key columns input for table: llm_conversation_saved

Fields:

  • id: uuid!

llm_conversation_saved_select_column

select columns of table "llm_conversation_saved"

Values:

  • conversation_id - column name
  • created_at - column name
  • id - column name
  • user_id - column name

llm_conversation_saved_set_input

input type for updating data in table "llm_conversation_saved"

Fields:

  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • user_id: uuid

llm_conversation_saved_stream_cursor_input

Streaming cursor of the table "llm_conversation_saved"

Fields:

  • initial_value: llm_conversation_saved_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_saved_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • user_id: uuid

llm_conversation_saved_update_column

update columns of table "llm_conversation_saved"

Values:

  • conversation_id - column name
  • created_at - column name
  • id - column name
  • user_id - column name

llm_conversation_tool_calls_aggregate_bool_exp

Fields:

  • count: llm_conversation_tool_calls_aggregate_bool_exp_count

llm_conversation_tool_calls_aggregate_bool_exp_count

Fields:

  • arguments: [llm_conversation_tool_calls_select_column!]
  • distinct: Boolean
  • filter: llm_conversation_tool_calls_bool_exp
  • predicate: Int_comparison_exp!

llm_conversation_tool_calls_aggregate_fields

aggregate fields of "llm_conversation_tool_calls"

Fields:

  • count: Int!
  • max: llm_conversation_tool_calls_max_fields
  • min: llm_conversation_tool_calls_min_fields

llm_conversation_tool_calls_aggregate_order_by

order by aggregate values of table "llm_conversation_tool_calls"

Fields:

  • count: order_by
  • max: llm_conversation_tool_calls_max_order_by
  • min: llm_conversation_tool_calls_min_order_by

llm_conversation_tool_calls_arr_rel_insert_input

input type for inserting array relation for remote table "llm_conversation_tool_calls"

Fields:

  • data: [llm_conversation_tool_calls_insert_input!]!
  • on_conflict: llm_conversation_tool_calls_on_conflict - upsert condition

llm_conversation_tool_calls_bool_exp

Boolean expression to filter rows from the table "llm_conversation_tool_calls". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversation_tool_calls_bool_exp!]
  • _not: llm_conversation_tool_calls_bool_exp
  • _or: [llm_conversation_tool_calls_bool_exp!]
  • account_id: String_comparison_exp
  • agent_id: uuid_comparison_exp
  • child_agent_id: String_comparison_exp
  • conversation_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • llm_conversation: llm_conversations_bool_exp
  • llm_conversation_agent: llm_conversation_agent_bool_exp
  • llm_conversation_message: llm_conversation_messages_bool_exp
  • message_id: uuid_comparison_exp
  • parameters: String_comparison_exp
  • params_sql: String_comparison_exp
  • references: String_comparison_exp
  • response: String_comparison_exp
  • status: String_comparison_exp
  • thought: String_comparison_exp
  • tool_id: String_comparison_exp
  • tool_name: String_comparison_exp
  • tool_type: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user_id: String_comparison_exp

llm_conversation_tool_calls_constraint

unique or primary key constraints on table "llm_conversation_tool_calls"

Values:

  • llm_conversation_tool_calls_pk - unique or primary key constraint on columns "id"
  • llm_conversation_tool_calls_tool_name_conversation_id_message_i - unique or primary key constraint on columns "agent_id", "conversation_id", "tool_name", "message_id", "tool_id"

llm_conversation_tool_calls_insert_input

input type for inserting data into table "llm_conversation_tool_calls"

Fields:

  • account_id: String
  • agent_id: uuid
  • child_agent_id: String
  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • llm_conversation: llm_conversations_obj_rel_insert_input
  • llm_conversation_agent: llm_conversation_agent_obj_rel_insert_input
  • llm_conversation_message: llm_conversation_messages_obj_rel_insert_input
  • message_id: uuid
  • parameters: String
  • params_sql: String
  • references: String
  • response: String
  • status: String
  • thought: String
  • tool_id: String
  • tool_name: String
  • tool_type: String
  • updated_at: timestamp
  • user_id: String

llm_conversation_tool_calls_max_fields

aggregate max on columns

Fields:

  • account_id: String
  • agent_id: uuid
  • child_agent_id: String
  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • message_id: uuid
  • parameters: String
  • params_sql: String
  • references: String
  • response: String
  • status: String
  • thought: String
  • tool_id: String
  • tool_name: String
  • tool_type: String
  • updated_at: timestamp
  • user_id: String

llm_conversation_tool_calls_max_order_by

order by max() on columns of table "llm_conversation_tool_calls"

Fields:

  • account_id: order_by
  • agent_id: order_by
  • child_agent_id: order_by
  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • message_id: order_by
  • parameters: order_by
  • params_sql: order_by
  • references: order_by
  • response: order_by
  • status: order_by
  • thought: order_by
  • tool_id: order_by
  • tool_name: order_by
  • tool_type: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversation_tool_calls_min_fields

aggregate min on columns

Fields:

  • account_id: String
  • agent_id: uuid
  • child_agent_id: String
  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • message_id: uuid
  • parameters: String
  • params_sql: String
  • references: String
  • response: String
  • status: String
  • thought: String
  • tool_id: String
  • tool_name: String
  • tool_type: String
  • updated_at: timestamp
  • user_id: String

llm_conversation_tool_calls_min_order_by

order by min() on columns of table "llm_conversation_tool_calls"

Fields:

  • account_id: order_by
  • agent_id: order_by
  • child_agent_id: order_by
  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • message_id: order_by
  • parameters: order_by
  • params_sql: order_by
  • references: order_by
  • response: order_by
  • status: order_by
  • thought: order_by
  • tool_id: order_by
  • tool_name: order_by
  • tool_type: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversation_tool_calls_mutation_response

response of any mutation on the table "llm_conversation_tool_calls"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversation_tool_calls!]! - data from the rows affected by the mutation

llm_conversation_tool_calls_on_conflict

on_conflict condition type for table "llm_conversation_tool_calls"

Fields:

  • constraint: llm_conversation_tool_calls_constraint!
  • update_columns: [llm_conversation_tool_calls_update_column!]!
  • where: llm_conversation_tool_calls_bool_exp

llm_conversation_tool_calls_order_by

Ordering options when selecting data from "llm_conversation_tool_calls".

Fields:

  • account_id: order_by
  • agent_id: order_by
  • child_agent_id: order_by
  • conversation_id: order_by
  • created_at: order_by
  • id: order_by
  • llm_conversation: llm_conversations_order_by
  • llm_conversation_agent: llm_conversation_agent_order_by
  • llm_conversation_message: llm_conversation_messages_order_by
  • message_id: order_by
  • parameters: order_by
  • params_sql: order_by
  • references: order_by
  • response: order_by
  • status: order_by
  • thought: order_by
  • tool_id: order_by
  • tool_name: order_by
  • tool_type: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversation_tool_calls_pk_columns_input

primary key columns input for table: llm_conversation_tool_calls

Fields:

  • id: uuid!

llm_conversation_tool_calls_select_column

select columns of table "llm_conversation_tool_calls"

Values:

  • account_id - column name
  • agent_id - column name
  • child_agent_id - column name
  • conversation_id - column name
  • created_at - column name
  • id - column name
  • message_id - column name
  • parameters - column name
  • params_sql - column name
  • references - column name
  • response - column name
  • status - column name
  • thought - column name
  • tool_id - column name
  • tool_name - column name
  • tool_type - column name
  • updated_at - column name
  • user_id - column name

llm_conversation_tool_calls_set_input

input type for updating data in table "llm_conversation_tool_calls"

Fields:

  • account_id: String
  • agent_id: uuid
  • child_agent_id: String
  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • message_id: uuid
  • parameters: String
  • params_sql: String
  • references: String
  • response: String
  • status: String
  • thought: String
  • tool_id: String
  • tool_name: String
  • tool_type: String
  • updated_at: timestamp
  • user_id: String

llm_conversation_tool_calls_stream_cursor_input

Streaming cursor of the table "llm_conversation_tool_calls"

Fields:

  • initial_value: llm_conversation_tool_calls_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversation_tool_calls_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: String
  • agent_id: uuid
  • child_agent_id: String
  • conversation_id: uuid
  • created_at: timestamp
  • id: uuid
  • message_id: uuid
  • parameters: String
  • params_sql: String
  • references: String
  • response: String
  • status: String
  • thought: String
  • tool_id: String
  • tool_name: String
  • tool_type: String
  • updated_at: timestamp
  • user_id: String

llm_conversation_tool_calls_update_column

update columns of table "llm_conversation_tool_calls"

Values:

  • account_id - column name
  • agent_id - column name
  • child_agent_id - column name
  • conversation_id - column name
  • created_at - column name
  • id - column name
  • message_id - column name
  • parameters - column name
  • params_sql - column name
  • references - column name
  • response - column name
  • status - column name
  • thought - column name
  • tool_id - column name
  • tool_name - column name
  • tool_type - column name
  • updated_at - column name
  • user_id - column name

llm_conversations_aggregate_bool_exp

Fields:

  • count: llm_conversations_aggregate_bool_exp_count

llm_conversations_aggregate_bool_exp_count

Fields:

  • arguments: [llm_conversations_select_column!]
  • distinct: Boolean
  • filter: llm_conversations_bool_exp
  • predicate: Int_comparison_exp!

llm_conversations_aggregate_fields

aggregate fields of "llm_conversations"

Fields:

  • count: Int!
  • max: llm_conversations_max_fields
  • min: llm_conversations_min_fields

llm_conversations_aggregate_order_by

order by aggregate values of table "llm_conversations"

Fields:

  • count: order_by
  • max: llm_conversations_max_order_by
  • min: llm_conversations_min_order_by

llm_conversations_arr_rel_insert_input

input type for inserting array relation for remote table "llm_conversations"

Fields:

  • data: [llm_conversations_insert_input!]!
  • on_conflict: llm_conversations_on_conflict - upsert condition

llm_conversations_bool_exp

Boolean expression to filter rows from the table "llm_conversations". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_conversations_bool_exp!]
  • _not: llm_conversations_bool_exp
  • _or: [llm_conversations_bool_exp!]
  • account_id: uuid_comparison_exp
  • context: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • llm_conversation_agents: llm_conversation_agent_bool_exp
  • llm_conversation_agents_aggregate: llm_conversation_agent_aggregate_bool_exp
  • llm_conversation_messages: llm_conversation_messages_bool_exp
  • llm_conversation_messages_aggregate: llm_conversation_messages_aggregate_bool_exp
  • llm_conversation_saveds: llm_conversation_saved_bool_exp
  • llm_conversation_saveds_aggregate: llm_conversation_saved_aggregate_bool_exp
  • llm_conversation_tool_calls: llm_conversation_tool_calls_bool_exp
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate_bool_exp
  • llm_model: String_comparison_exp
  • llm_provider: String_comparison_exp
  • session_id: String_comparison_exp
  • source: String_comparison_exp
  • status: llm_conversation_status_comparison_exp
  • tenant_id: uuid_comparison_exp
  • title: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user: users_bool_exp
  • user_id: uuid_comparison_exp

llm_conversations_constraint

unique or primary key constraints on table "llm_conversations"

Values:

  • llm_conversations_pk - unique or primary key constraint on columns "id"
  • llm_conversations_unique - unique or primary key constraint on columns "session_id", "account_id", "user_id"

llm_conversations_insert_input

input type for inserting data into table "llm_conversations"

Fields:

  • account_id: uuid
  • context: String
  • created_at: timestamp
  • id: uuid
  • llm_conversation_agents: llm_conversation_agent_arr_rel_insert_input
  • llm_conversation_messages: llm_conversation_messages_arr_rel_insert_input
  • llm_conversation_saveds: llm_conversation_saved_arr_rel_insert_input
  • llm_conversation_tool_calls: llm_conversation_tool_calls_arr_rel_insert_input
  • llm_model: String
  • llm_provider: String
  • session_id: String
  • source: String
  • status: llm_conversation_status
  • tenant_id: uuid
  • title: String
  • updated_at: timestamp
  • user: users_obj_rel_insert_input
  • user_id: uuid

llm_conversations_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • context: String
  • created_at: timestamp
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • session_id: String
  • source: String
  • status: llm_conversation_status
  • tenant_id: uuid
  • title: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversations_max_order_by

order by max() on columns of table "llm_conversations"

Fields:

  • account_id: order_by
  • context: order_by
  • created_at: order_by
  • id: order_by
  • llm_model: order_by
  • llm_provider: order_by
  • session_id: order_by
  • source: order_by
  • status: order_by
  • tenant_id: order_by
  • title: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversations_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • context: String
  • created_at: timestamp
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • session_id: String
  • source: String
  • status: llm_conversation_status
  • tenant_id: uuid
  • title: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversations_min_order_by

order by min() on columns of table "llm_conversations"

Fields:

  • account_id: order_by
  • context: order_by
  • created_at: order_by
  • id: order_by
  • llm_model: order_by
  • llm_provider: order_by
  • session_id: order_by
  • source: order_by
  • status: order_by
  • tenant_id: order_by
  • title: order_by
  • updated_at: order_by
  • user_id: order_by

llm_conversations_mutation_response

response of any mutation on the table "llm_conversations"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_conversations!]! - data from the rows affected by the mutation

llm_conversations_obj_rel_insert_input

input type for inserting object relation for remote table "llm_conversations"

Fields:

  • data: llm_conversations_insert_input!
  • on_conflict: llm_conversations_on_conflict - upsert condition

llm_conversations_on_conflict

on_conflict condition type for table "llm_conversations"

Fields:

  • constraint: llm_conversations_constraint!
  • update_columns: [llm_conversations_update_column!]!
  • where: llm_conversations_bool_exp

llm_conversations_order_by

Ordering options when selecting data from "llm_conversations".

Fields:

  • account_id: order_by
  • context: order_by
  • created_at: order_by
  • id: order_by
  • llm_conversation_agents_aggregate: llm_conversation_agent_aggregate_order_by
  • llm_conversation_messages_aggregate: llm_conversation_messages_aggregate_order_by
  • llm_conversation_saveds_aggregate: llm_conversation_saved_aggregate_order_by
  • llm_conversation_tool_calls_aggregate: llm_conversation_tool_calls_aggregate_order_by
  • llm_model: order_by
  • llm_provider: order_by
  • session_id: order_by
  • source: order_by
  • status: order_by
  • tenant_id: order_by
  • title: order_by
  • updated_at: order_by
  • user: users_order_by
  • user_id: order_by

llm_conversations_pk_columns_input

primary key columns input for table: llm_conversations

Fields:

  • id: uuid!

llm_conversations_select_column

select columns of table "llm_conversations"

Values:

  • account_id - column name
  • context - column name
  • created_at - column name
  • id - column name
  • llm_model - column name
  • llm_provider - column name
  • session_id - column name
  • source - column name
  • status - column name
  • tenant_id - column name
  • title - column name
  • updated_at - column name
  • user_id - column name

llm_conversations_set_input

input type for updating data in table "llm_conversations"

Fields:

  • account_id: uuid
  • context: String
  • created_at: timestamp
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • session_id: String
  • source: String
  • status: llm_conversation_status
  • tenant_id: uuid
  • title: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversations_stream_cursor_input

Streaming cursor of the table "llm_conversations"

Fields:

  • initial_value: llm_conversations_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_conversations_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • context: String
  • created_at: timestamp
  • id: uuid
  • llm_model: String
  • llm_provider: String
  • session_id: String
  • source: String
  • status: llm_conversation_status
  • tenant_id: uuid
  • title: String
  • updated_at: timestamp
  • user_id: uuid

llm_conversations_update_column

update columns of table "llm_conversations"

Values:

  • account_id - column name
  • context - column name
  • created_at - column name
  • id - column name
  • llm_model - column name
  • llm_provider - column name
  • session_id - column name
  • source - column name
  • status - column name
  • tenant_id - column name
  • title - column name
  • updated_at - column name
  • user_id - column name

llm_functions_aggregate_fields

aggregate fields of "llm_functions"

Fields:

  • avg: llm_functions_avg_fields
  • count: Int!
  • max: llm_functions_max_fields
  • min: llm_functions_min_fields
  • stddev: llm_functions_stddev_fields
  • stddev_pop: llm_functions_stddev_pop_fields
  • stddev_samp: llm_functions_stddev_samp_fields
  • sum: llm_functions_sum_fields
  • var_pop: llm_functions_var_pop_fields
  • var_samp: llm_functions_var_samp_fields
  • variance: llm_functions_variance_fields

llm_functions_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • variable_defaults: jsonb
  • variables: jsonb

llm_functions_avg_fields

aggregate avg on columns

Fields:

  • version: Float

llm_functions_bool_exp

Boolean expression to filter rows from the table "llm_functions". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_functions_bool_exp!]
  • _not: llm_functions_bool_exp
  • _or: [llm_functions_bool_exp!]
  • account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • prompt: String_comparison_exp
  • status: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • variable_defaults: jsonb_comparison_exp
  • variables: jsonb_comparison_exp
  • version: Int_comparison_exp

llm_functions_constraint

unique or primary key constraints on table "llm_functions"

Values:

  • llm_functions_account_id_name_key - unique or primary key constraint on columns "account_id", "name"
  • llm_functions_pkey - unique or primary key constraint on columns "id"

llm_functions_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • variable_defaults: [String!]
  • variables: [String!]

llm_functions_delete_elem_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

Fields:

  • variable_defaults: Int
  • variables: Int

llm_functions_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • variable_defaults: String
  • variables: String

llm_functions_inc_input

input type for incrementing numeric columns in table "llm_functions"

Fields:

  • version: Int

llm_functions_insert_input

input type for inserting data into table "llm_functions"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • variable_defaults: jsonb
  • variables: jsonb
  • version: Int

llm_functions_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • version: Int

llm_functions_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • version: Int

llm_functions_mutation_response

response of any mutation on the table "llm_functions"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_functions!]! - data from the rows affected by the mutation

llm_functions_on_conflict

on_conflict condition type for table "llm_functions"

Fields:

  • constraint: llm_functions_constraint!
  • update_columns: [llm_functions_update_column!]!
  • where: llm_functions_bool_exp

llm_functions_order_by

Ordering options when selecting data from "llm_functions".

Fields:

  • account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • prompt: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • variable_defaults: order_by
  • variables: order_by
  • version: order_by

llm_functions_pk_columns_input

primary key columns input for table: llm_functions

Fields:

  • id: uuid!

llm_functions_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • variable_defaults: jsonb
  • variables: jsonb

llm_functions_select_column

select columns of table "llm_functions"

Values:

  • account_id - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • name - column name
  • prompt - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name
  • variable_defaults - column name
  • variables - column name
  • version - column name

llm_functions_set_input

input type for updating data in table "llm_functions"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • variable_defaults: jsonb
  • variables: jsonb
  • version: Int

llm_functions_stddev_fields

aggregate stddev on columns

Fields:

  • version: Float

llm_functions_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • version: Float

llm_functions_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • version: Float

llm_functions_stream_cursor_input

Streaming cursor of the table "llm_functions"

Fields:

  • initial_value: llm_functions_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_functions_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • variable_defaults: jsonb
  • variables: jsonb
  • version: Int

llm_functions_sum_fields

aggregate sum on columns

Fields:

  • version: Int

llm_functions_update_column

update columns of table "llm_functions"

Values:

  • account_id - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • name - column name
  • prompt - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name
  • variable_defaults - column name
  • variables - column name
  • version - column name

llm_functions_var_pop_fields

aggregate var_pop on columns

Fields:

  • version: Float

llm_functions_var_samp_fields

aggregate var_samp on columns

Fields:

  • version: Float

llm_functions_variance_fields

aggregate variance on columns

Fields:

  • version: Float

llm_model_pricing_aggregate_fields

aggregate fields of "llm_model_pricing"

Fields:

  • avg: llm_model_pricing_avg_fields
  • count: Int!
  • max: llm_model_pricing_max_fields
  • min: llm_model_pricing_min_fields
  • stddev: llm_model_pricing_stddev_fields
  • stddev_pop: llm_model_pricing_stddev_pop_fields
  • stddev_samp: llm_model_pricing_stddev_samp_fields
  • sum: llm_model_pricing_sum_fields
  • var_pop: llm_model_pricing_var_pop_fields
  • var_samp: llm_model_pricing_var_samp_fields
  • variance: llm_model_pricing_variance_fields

llm_model_pricing_avg_fields

aggregate avg on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_bool_exp

Boolean expression to filter rows from the table "llm_model_pricing". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_model_pricing_bool_exp!]
  • _not: llm_model_pricing_bool_exp
  • _or: [llm_model_pricing_bool_exp!]
  • cache_cost_per_million_tokens_per_hour: Float_comparison_exp
  • cost_per_million_input_tokens: Float_comparison_exp
  • cost_per_million_output_tokens: Float_comparison_exp
  • created_at: timestamptz_comparison_exp
  • id: uuid_comparison_exp
  • model_name: String_comparison_exp
  • provider_name: String_comparison_exp

llm_model_pricing_constraint

unique or primary key constraints on table "llm_model_pricing"

Values:

  • llm_model_pricing_model_name_provider_name_key - unique or primary key constraint on columns "provider_name", "model_name"
  • llm_model_pricing_pkey - unique or primary key constraint on columns "id"

llm_model_pricing_inc_input

input type for incrementing numeric columns in table "llm_model_pricing"

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_insert_input

input type for inserting data into table "llm_model_pricing"

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)
  • created_at: timestamptz
  • id: uuid
  • model_name: String
  • provider_name: String

llm_model_pricing_max_fields

aggregate max on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)
  • created_at: timestamptz
  • id: uuid
  • model_name: String
  • provider_name: String

llm_model_pricing_min_fields

aggregate min on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)
  • created_at: timestamptz
  • id: uuid
  • model_name: String
  • provider_name: String

llm_model_pricing_mutation_response

response of any mutation on the table "llm_model_pricing"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_model_pricing!]! - data from the rows affected by the mutation

llm_model_pricing_on_conflict

on_conflict condition type for table "llm_model_pricing"

Fields:

  • constraint: llm_model_pricing_constraint!
  • update_columns: [llm_model_pricing_update_column!]!
  • where: llm_model_pricing_bool_exp

llm_model_pricing_order_by

Ordering options when selecting data from "llm_model_pricing".

Fields:

  • cache_cost_per_million_tokens_per_hour: order_by
  • cost_per_million_input_tokens: order_by
  • cost_per_million_output_tokens: order_by
  • created_at: order_by
  • id: order_by
  • model_name: order_by
  • provider_name: order_by

llm_model_pricing_pk_columns_input

primary key columns input for table: llm_model_pricing

Fields:

  • id: uuid!

llm_model_pricing_select_column

select columns of table "llm_model_pricing"

Values:

  • cache_cost_per_million_tokens_per_hour - column name
  • cost_per_million_input_tokens - column name
  • cost_per_million_output_tokens - column name
  • created_at - column name
  • id - column name
  • model_name - column name
  • provider_name - column name

llm_model_pricing_set_input

input type for updating data in table "llm_model_pricing"

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)
  • created_at: timestamptz
  • id: uuid
  • model_name: String
  • provider_name: String

llm_model_pricing_stddev_fields

aggregate stddev on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_stream_cursor_input

Streaming cursor of the table "llm_model_pricing"

Fields:

  • initial_value: llm_model_pricing_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_model_pricing_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)
  • created_at: timestamptz
  • id: uuid
  • model_name: String
  • provider_name: String

llm_model_pricing_sum_fields

aggregate sum on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_update_column

update columns of table "llm_model_pricing"

Values:

  • cache_cost_per_million_tokens_per_hour - column name
  • cost_per_million_input_tokens - column name
  • cost_per_million_output_tokens - column name
  • created_at - column name
  • id - column name
  • model_name - column name
  • provider_name - column name

llm_model_pricing_var_pop_fields

aggregate var_pop on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_var_samp_fields

aggregate var_samp on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_model_pricing_variance_fields

aggregate variance on columns

Fields:

  • cache_cost_per_million_tokens_per_hour: Float - in USD($)
  • cost_per_million_input_tokens: Float - in USD($)
  • cost_per_million_output_tokens: Float - in USD($)

llm_rag_audit_aggregate_fields

aggregate fields of "llm_rag_audit"

Fields:

  • avg: llm_rag_audit_avg_fields
  • count: Int!
  • max: llm_rag_audit_max_fields
  • min: llm_rag_audit_min_fields
  • stddev: llm_rag_audit_stddev_fields
  • stddev_pop: llm_rag_audit_stddev_pop_fields
  • stddev_samp: llm_rag_audit_stddev_samp_fields
  • sum: llm_rag_audit_sum_fields
  • var_pop: llm_rag_audit_var_pop_fields
  • var_samp: llm_rag_audit_var_samp_fields
  • variance: llm_rag_audit_variance_fields

llm_rag_audit_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • response: jsonb

llm_rag_audit_avg_fields

aggregate avg on columns

Fields:

  • score: Float

llm_rag_audit_bool_exp

Boolean expression to filter rows from the table "llm_rag_audit". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_rag_audit_bool_exp!]
  • _not: llm_rag_audit_bool_exp
  • _or: [llm_rag_audit_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • conversation_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • module: String_comparison_exp
  • query: String_comparison_exp
  • response: jsonb_comparison_exp
  • score: float8_comparison_exp

llm_rag_audit_constraint

unique or primary key constraints on table "llm_rag_audit"

Values:

  • llm_rag_audit_pkey - unique or primary key constraint on columns "id"

llm_rag_audit_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • response: [String!]

llm_rag_audit_delete_elem_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

Fields:

  • response: Int

llm_rag_audit_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • response: String

llm_rag_audit_inc_input

input type for incrementing numeric columns in table "llm_rag_audit"

Fields:

  • score: float8

llm_rag_audit_insert_input

input type for inserting data into table "llm_rag_audit"

Fields:

  • cloud_account_id: uuid
  • conversation_id: uuid
  • id: uuid
  • module: String
  • query: String
  • response: jsonb
  • score: float8

llm_rag_audit_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • conversation_id: uuid
  • id: uuid
  • module: String
  • query: String
  • score: float8

llm_rag_audit_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • conversation_id: uuid
  • id: uuid
  • module: String
  • query: String
  • score: float8

llm_rag_audit_mutation_response

response of any mutation on the table "llm_rag_audit"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_rag_audit!]! - data from the rows affected by the mutation

llm_rag_audit_on_conflict

on_conflict condition type for table "llm_rag_audit"

Fields:

  • constraint: llm_rag_audit_constraint!
  • update_columns: [llm_rag_audit_update_column!]!
  • where: llm_rag_audit_bool_exp

llm_rag_audit_order_by

Ordering options when selecting data from "llm_rag_audit".

Fields:

  • cloud_account_id: order_by
  • conversation_id: order_by
  • id: order_by
  • module: order_by
  • query: order_by
  • response: order_by
  • score: order_by

llm_rag_audit_pk_columns_input

primary key columns input for table: llm_rag_audit

Fields:

  • id: uuid!

llm_rag_audit_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • response: jsonb

llm_rag_audit_select_column

select columns of table "llm_rag_audit"

Values:

  • cloud_account_id - column name
  • conversation_id - column name
  • id - column name
  • module - column name
  • query - column name
  • response - column name
  • score - column name

llm_rag_audit_set_input

input type for updating data in table "llm_rag_audit"

Fields:

  • cloud_account_id: uuid
  • conversation_id: uuid
  • id: uuid
  • module: String
  • query: String
  • response: jsonb
  • score: float8

llm_rag_audit_stddev_fields

aggregate stddev on columns

Fields:

  • score: Float

llm_rag_audit_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • score: Float

llm_rag_audit_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • score: Float

llm_rag_audit_stream_cursor_input

Streaming cursor of the table "llm_rag_audit"

Fields:

  • initial_value: llm_rag_audit_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_rag_audit_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • conversation_id: uuid
  • id: uuid
  • module: String
  • query: String
  • response: jsonb
  • score: float8

llm_rag_audit_sum_fields

aggregate sum on columns

Fields:

  • score: float8

llm_rag_audit_update_column

update columns of table "llm_rag_audit"

Values:

  • cloud_account_id - column name
  • conversation_id - column name
  • id - column name
  • module - column name
  • query - column name
  • response - column name
  • score - column name

llm_rag_audit_var_pop_fields

aggregate var_pop on columns

Fields:

  • score: Float

llm_rag_audit_var_samp_fields

aggregate var_samp on columns

Fields:

  • score: Float

llm_rag_audit_variance_fields

aggregate variance on columns

Fields:

  • score: Float

llm_rags_aggregate_fields

aggregate fields of "llm_rags"

Fields:

  • count: Int!
  • max: llm_rags_max_fields
  • min: llm_rags_min_fields

llm_rags_bool_exp

Boolean expression to filter rows from the table "llm_rags". All fields are combined with a logical 'AND'.

Fields:

  • _and: [llm_rags_bool_exp!]
  • _not: llm_rags_bool_exp
  • _or: [llm_rags_bool_exp!]
  • account_id: uuid_comparison_exp
  • agent_id: String_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • data: String_comparison_exp
  • data_filename: String_comparison_exp
  • data_format: String_comparison_exp
  • id: uuid_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • userCreatedBy: users_bool_exp
  • userUpdatedBy: users_bool_exp

llm_rags_constraint

unique or primary key constraints on table "llm_rags"

Values:

  • llm_rags_pkey - unique or primary key constraint on columns "id"

llm_rags_insert_input

input type for inserting data into table "llm_rags"

Fields:

  • account_id: uuid
  • agent_id: String
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • data: String
  • data_filename: String
  • data_format: String
  • id: uuid
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • userCreatedBy: users_obj_rel_insert_input
  • userUpdatedBy: users_obj_rel_insert_input

llm_rags_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • agent_id: String
  • created_at: timestamp
  • created_by: uuid
  • data: String
  • data_filename: String
  • data_format: String
  • id: uuid
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

llm_rags_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • agent_id: String
  • created_at: timestamp
  • created_by: uuid
  • data: String
  • data_filename: String
  • data_format: String
  • id: uuid
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

llm_rags_mutation_response

response of any mutation on the table "llm_rags"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [llm_rags!]! - data from the rows affected by the mutation

llm_rags_on_conflict

on_conflict condition type for table "llm_rags"

Fields:

  • constraint: llm_rags_constraint!
  • update_columns: [llm_rags_update_column!]!
  • where: llm_rags_bool_exp

llm_rags_order_by

Ordering options when selecting data from "llm_rags".

Fields:

  • account_id: order_by
  • agent_id: order_by
  • cloud_account: cloud_accounts_order_by
  • created_at: order_by
  • created_by: order_by
  • data: order_by
  • data_filename: order_by
  • data_format: order_by
  • id: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • userCreatedBy: users_order_by
  • userUpdatedBy: users_order_by

llm_rags_pk_columns_input

primary key columns input for table: llm_rags

Fields:

  • id: uuid!

llm_rags_select_column

select columns of table "llm_rags"

Values:

  • account_id - column name
  • agent_id - column name
  • created_at - column name
  • created_by - column name
  • data - column name
  • data_filename - column name
  • data_format - column name
  • id - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

llm_rags_set_input

input type for updating data in table "llm_rags"

Fields:

  • account_id: uuid
  • agent_id: String
  • created_at: timestamp
  • created_by: uuid
  • data: String
  • data_filename: String
  • data_format: String
  • id: uuid
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

llm_rags_stream_cursor_input

Streaming cursor of the table "llm_rags"

Fields:

  • initial_value: llm_rags_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

llm_rags_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • agent_id: String
  • created_at: timestamp
  • created_by: uuid
  • data: String
  • data_filename: String
  • data_format: String
  • id: uuid
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

llm_rags_update_column

update columns of table "llm_rags"

Values:

  • account_id - column name
  • agent_id - column name
  • created_at - column name
  • created_by - column name
  • data - column name
  • data_filename - column name
  • data_format - column name
  • id - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name
Observability (90 types)

application_group_aggregate_fields

aggregate fields of "application_group"

Fields:

  • count: Int!
  • max: application_group_max_fields
  • min: application_group_min_fields

application_group_bool_exp

Boolean expression to filter rows from the table "application_group". All fields are combined with a logical 'AND'.

Fields:

  • _and: [application_group_bool_exp!]
  • _not: application_group_bool_exp
  • _or: [application_group_bool_exp!]
  • application_group_mappings: application_group_mapping_bool_exp
  • application_group_mappings_aggregate: application_group_mapping_aggregate_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • created_by_user: users_bool_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • updated_by_user: users_bool_exp

application_group_constraint

unique or primary key constraints on table "application_group"

Values:

  • application_group_name_tenant_id_key - unique or primary key constraint on columns "tenant_id", "name"
  • application_group_pkey - unique or primary key constraint on columns "id"

application_group_insert_input

input type for inserting data into table "application_group"

Fields:

  • application_group_mappings: application_group_mapping_arr_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • created_by_user: users_obj_rel_insert_input
  • description: String
  • id: uuid
  • name: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • updated_by_user: users_obj_rel_insert_input

application_group_mapping_aggregate_bool_exp

Fields:

  • count: application_group_mapping_aggregate_bool_exp_count

application_group_mapping_aggregate_bool_exp_count

Fields:

  • arguments: [application_group_mapping_select_column!]
  • distinct: Boolean
  • filter: application_group_mapping_bool_exp
  • predicate: Int_comparison_exp!

application_group_mapping_aggregate_fields

aggregate fields of "application_group_mapping"

Fields:

  • count: Int!
  • max: application_group_mapping_max_fields
  • min: application_group_mapping_min_fields

application_group_mapping_aggregate_order_by

order by aggregate values of table "application_group_mapping"

Fields:

  • count: order_by
  • max: application_group_mapping_max_order_by
  • min: application_group_mapping_min_order_by

application_group_mapping_arr_rel_insert_input

input type for inserting array relation for remote table "application_group_mapping"

Fields:

  • data: [application_group_mapping_insert_input!]!
  • on_conflict: application_group_mapping_on_conflict - upsert condition

application_group_mapping_bool_exp

Boolean expression to filter rows from the table "application_group_mapping". All fields are combined with a logical 'AND'.

Fields:

  • _and: [application_group_mapping_bool_exp!]
  • _not: application_group_mapping_bool_exp
  • _or: [application_group_mapping_bool_exp!]
  • account_id: uuid_comparison_exp
  • application_group: application_group_bool_exp
  • cloud_account: cloud_accounts_bool_exp
  • cloud_resource_id: uuid_comparison_exp
  • group_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • k8s_workload: k8s_workloads_bool_exp
  • namespace_name: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • workload_kind: String_comparison_exp
  • workload_name: String_comparison_exp

application_group_mapping_constraint

unique or primary key constraints on table "application_group_mapping"

Values:

  • application_group_mapping_pkey - unique or primary key constraint on columns "id"

application_group_mapping_insert_input

input type for inserting data into table "application_group_mapping"

Fields:

  • account_id: uuid
  • application_group: application_group_obj_rel_insert_input
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_resource_id: uuid
  • group_id: uuid
  • id: uuid
  • k8s_workload: k8s_workloads_obj_rel_insert_input
  • namespace_name: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • workload_kind: String
  • workload_name: String

application_group_mapping_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • cloud_resource_id: uuid
  • group_id: uuid
  • id: uuid
  • namespace_name: String
  • tenant_id: uuid
  • workload_kind: String
  • workload_name: String

application_group_mapping_max_order_by

order by max() on columns of table "application_group_mapping"

Fields:

  • account_id: order_by
  • cloud_resource_id: order_by
  • group_id: order_by
  • id: order_by
  • namespace_name: order_by
  • tenant_id: order_by
  • workload_kind: order_by
  • workload_name: order_by

application_group_mapping_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • cloud_resource_id: uuid
  • group_id: uuid
  • id: uuid
  • namespace_name: String
  • tenant_id: uuid
  • workload_kind: String
  • workload_name: String

application_group_mapping_min_order_by

order by min() on columns of table "application_group_mapping"

Fields:

  • account_id: order_by
  • cloud_resource_id: order_by
  • group_id: order_by
  • id: order_by
  • namespace_name: order_by
  • tenant_id: order_by
  • workload_kind: order_by
  • workload_name: order_by

application_group_mapping_mutation_response

response of any mutation on the table "application_group_mapping"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [application_group_mapping!]! - data from the rows affected by the mutation

application_group_mapping_on_conflict

on_conflict condition type for table "application_group_mapping"

Fields:

  • constraint: application_group_mapping_constraint!
  • update_columns: [application_group_mapping_update_column!]!
  • where: application_group_mapping_bool_exp

application_group_mapping_order_by

Ordering options when selecting data from "application_group_mapping".

Fields:

  • account_id: order_by
  • application_group: application_group_order_by
  • cloud_account: cloud_accounts_order_by
  • cloud_resource_id: order_by
  • group_id: order_by
  • id: order_by
  • k8s_workload: k8s_workloads_order_by
  • namespace_name: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • workload_kind: order_by
  • workload_name: order_by

application_group_mapping_pk_columns_input

primary key columns input for table: application_group_mapping

Fields:

  • id: uuid!

application_group_mapping_select_column

select columns of table "application_group_mapping"

Values:

  • account_id - column name
  • cloud_resource_id - column name
  • group_id - column name
  • id - column name
  • namespace_name - column name
  • tenant_id - column name
  • workload_kind - column name
  • workload_name - column name

application_group_mapping_set_input

input type for updating data in table "application_group_mapping"

Fields:

  • account_id: uuid
  • cloud_resource_id: uuid
  • group_id: uuid
  • id: uuid
  • namespace_name: String
  • tenant_id: uuid
  • workload_kind: String
  • workload_name: String

application_group_mapping_stream_cursor_input

Streaming cursor of the table "application_group_mapping"

Fields:

  • initial_value: application_group_mapping_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

application_group_mapping_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • cloud_resource_id: uuid
  • group_id: uuid
  • id: uuid
  • namespace_name: String
  • tenant_id: uuid
  • workload_kind: String
  • workload_name: String

application_group_mapping_update_column

update columns of table "application_group_mapping"

Values:

  • account_id - column name
  • cloud_resource_id - column name
  • group_id - column name
  • id - column name
  • namespace_name - column name
  • tenant_id - column name
  • workload_kind - column name
  • workload_name - column name

application_group_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

application_group_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

application_group_mutation_response

response of any mutation on the table "application_group"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [application_group!]! - data from the rows affected by the mutation

application_group_obj_rel_insert_input

input type for inserting object relation for remote table "application_group"

Fields:

  • data: application_group_insert_input!
  • on_conflict: application_group_on_conflict - upsert condition

application_group_on_conflict

on_conflict condition type for table "application_group"

Fields:

  • constraint: application_group_constraint!
  • update_columns: [application_group_update_column!]!
  • where: application_group_bool_exp

application_group_order_by

Ordering options when selecting data from "application_group".

Fields:

  • application_group_mappings_aggregate: application_group_mapping_aggregate_order_by
  • created_at: order_by
  • created_by: order_by
  • created_by_user: users_order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • updated_by_user: users_order_by

application_group_pk_columns_input

primary key columns input for table: application_group

Fields:

  • id: uuid!

application_group_select_column

select columns of table "application_group"

Values:

  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • name - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

application_group_set_input

input type for updating data in table "application_group"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

application_group_stream_cursor_input

Streaming cursor of the table "application_group"

Fields:

  • initial_value: application_group_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

application_group_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

application_group_update_column

update columns of table "application_group"

Values:

  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • name - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

application_profile_aggregate_fields

aggregate fields of "application_profile"

Fields:

  • avg: application_profile_avg_fields
  • count: Int!
  • max: application_profile_max_fields
  • min: application_profile_min_fields
  • stddev: application_profile_stddev_fields
  • stddev_pop: application_profile_stddev_pop_fields
  • stddev_samp: application_profile_stddev_samp_fields
  • sum: application_profile_sum_fields
  • var_pop: application_profile_var_pop_fields
  • var_samp: application_profile_var_samp_fields
  • variance: application_profile_variance_fields

application_profile_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • profile: jsonb

application_profile_avg_fields

aggregate avg on columns

Fields:

  • profile_duration: Float

application_profile_bool_exp

Boolean expression to filter rows from the table "application_profile". All fields are combined with a logical 'AND'.

Fields:

  • _and: [application_profile_bool_exp!]
  • _not: application_profile_bool_exp
  • _or: [application_profile_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: String_comparison_exp
  • id: uuid_comparison_exp
  • namespace: String_comparison_exp
  • output_type: String_comparison_exp
  • pod_name: String_comparison_exp
  • profile: jsonb_comparison_exp
  • profile_duration: Int_comparison_exp
  • profile_language: String_comparison_exp
  • profile_tool: String_comparison_exp
  • profile_type: String_comparison_exp
  • source: String_comparison_exp
  • source_id: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamptz_comparison_exp
  • workload_name: String_comparison_exp

application_profile_constraint

unique or primary key constraints on table "application_profile"

Values:

  • application_profile_pkey - unique or primary key constraint on columns "id"

application_profile_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • profile: [String!]

application_profile_delete_elem_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

Fields:

  • profile: Int

application_profile_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • profile: String

application_profile_inc_input

input type for incrementing numeric columns in table "application_profile"

Fields:

  • profile_duration: Int

application_profile_insert_input

input type for inserting data into table "application_profile"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • id: uuid
  • namespace: String
  • output_type: String
  • pod_name: String
  • profile: jsonb
  • profile_duration: Int
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String
  • source_id: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • workload_name: String

application_profile_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • id: uuid
  • namespace: String
  • output_type: String
  • pod_name: String
  • profile_duration: Int
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String
  • source_id: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • workload_name: String

application_profile_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • id: uuid
  • namespace: String
  • output_type: String
  • pod_name: String
  • profile_duration: Int
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String
  • source_id: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • workload_name: String

application_profile_mutation_response

response of any mutation on the table "application_profile"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [application_profile!]! - data from the rows affected by the mutation

application_profile_on_conflict

on_conflict condition type for table "application_profile"

Fields:

  • constraint: application_profile_constraint!
  • update_columns: [application_profile_update_column!]!
  • where: application_profile_bool_exp

application_profile_order_by

Ordering options when selecting data from "application_profile".

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • namespace: order_by
  • output_type: order_by
  • pod_name: order_by
  • profile: order_by
  • profile_duration: order_by
  • profile_language: order_by
  • profile_tool: order_by
  • profile_type: order_by
  • source: order_by
  • source_id: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • workload_name: order_by

application_profile_pk_columns_input

primary key columns input for table: application_profile

Fields:

  • id: uuid!

application_profile_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • profile: jsonb

application_profile_select_column

select columns of table "application_profile"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • namespace - column name
  • output_type - column name
  • pod_name - column name
  • profile - column name
  • profile_duration - column name
  • profile_language - column name
  • profile_tool - column name
  • profile_type - column name
  • source - column name
  • source_id - column name
  • tenant_id - column name
  • updated_at - column name
  • workload_name - column name

application_profile_set_input

input type for updating data in table "application_profile"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • id: uuid
  • namespace: String
  • output_type: String
  • pod_name: String
  • profile: jsonb
  • profile_duration: Int
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String
  • source_id: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • workload_name: String

application_profile_stddev_fields

aggregate stddev on columns

Fields:

  • profile_duration: Float

application_profile_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • profile_duration: Float

application_profile_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • profile_duration: Float

application_profile_stream_cursor_input

Streaming cursor of the table "application_profile"

Fields:

  • initial_value: application_profile_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

application_profile_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • id: uuid
  • namespace: String
  • output_type: String
  • pod_name: String
  • profile: jsonb
  • profile_duration: Int
  • profile_language: String
  • profile_tool: String
  • profile_type: String
  • source: String
  • source_id: String
  • tenant_id: uuid
  • updated_at: timestamptz
  • workload_name: String

application_profile_sum_fields

aggregate sum on columns

Fields:

  • profile_duration: Int

application_profile_update_column

update columns of table "application_profile"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • namespace - column name
  • output_type - column name
  • pod_name - column name
  • profile - column name
  • profile_duration - column name
  • profile_language - column name
  • profile_tool - column name
  • profile_type - column name
  • source - column name
  • source_id - column name
  • tenant_id - column name
  • updated_at - column name
  • workload_name - column name

application_profile_var_pop_fields

aggregate var_pop on columns

Fields:

  • profile_duration: Float

application_profile_var_samp_fields

aggregate var_samp on columns

Fields:

  • profile_duration: Float

application_profile_variance_fields

aggregate variance on columns

Fields:

  • profile_duration: Float

metrics_summary_aggregate_fields

aggregate fields of "metrics_summary"

Fields:

  • avg: metrics_summary_avg_fields
  • count: Int!
  • max: metrics_summary_max_fields
  • min: metrics_summary_min_fields
  • stddev: metrics_summary_stddev_fields
  • stddev_pop: metrics_summary_stddev_pop_fields
  • stddev_samp: metrics_summary_stddev_samp_fields
  • sum: metrics_summary_sum_fields
  • var_pop: metrics_summary_var_pop_fields
  • var_samp: metrics_summary_var_samp_fields
  • variance: metrics_summary_variance_fields

metrics_summary_avg_fields

aggregate avg on columns

Fields:

  • value: Float

metrics_summary_bool_exp

Boolean expression to filter rows from the table "metrics_summary". All fields are combined with a logical 'AND'.

Fields:

  • _and: [metrics_summary_bool_exp!]
  • _not: metrics_summary_bool_exp
  • _or: [metrics_summary_bool_exp!]
  • description: String_comparison_exp
  • entity_id: String_comparison_exp
  • entity_name: String_comparison_exp
  • entity_type: String_comparison_exp
  • id: uuid_comparison_exp
  • metrics_summary_tenant: tenant_bool_exp
  • name: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • value: float8_comparison_exp
  • value_unit: String_comparison_exp

metrics_summary_constraint

unique or primary key constraints on table "metrics_summary"

Values:

  • metrics_summary_pkey - unique or primary key constraint on columns "id"
  • metrics_summary_tenant_id_entity_type_entity_id_name_key - unique or primary key constraint on columns "entity_type", "entity_id", "tenant_id", "name"

metrics_summary_inc_input

input type for incrementing numeric columns in table "metrics_summary"

Fields:

  • value: float8

metrics_summary_insert_input

input type for inserting data into table "metrics_summary"

Fields:

  • description: String
  • entity_id: String
  • entity_name: String
  • entity_type: String
  • id: uuid
  • metrics_summary_tenant: tenant_obj_rel_insert_input
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: float8
  • value_unit: String

metrics_summary_max_fields

aggregate max on columns

Fields:

  • description: String
  • entity_id: String
  • entity_name: String
  • entity_type: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: float8
  • value_unit: String

metrics_summary_min_fields

aggregate min on columns

Fields:

  • description: String
  • entity_id: String
  • entity_name: String
  • entity_type: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: float8
  • value_unit: String

metrics_summary_mutation_response

response of any mutation on the table "metrics_summary"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [metrics_summary!]! - data from the rows affected by the mutation

metrics_summary_on_conflict

on_conflict condition type for table "metrics_summary"

Fields:

  • constraint: metrics_summary_constraint!
  • update_columns: [metrics_summary_update_column!]!
  • where: metrics_summary_bool_exp

metrics_summary_order_by

Ordering options when selecting data from "metrics_summary".

Fields:

  • description: order_by
  • entity_id: order_by
  • entity_name: order_by
  • entity_type: order_by
  • id: order_by
  • metrics_summary_tenant: tenant_order_by
  • name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • value: order_by
  • value_unit: order_by

metrics_summary_pk_columns_input

primary key columns input for table: metrics_summary

Fields:

  • id: uuid!

metrics_summary_select_column

select columns of table "metrics_summary"

Values:

  • description - column name
  • entity_id - column name
  • entity_name - column name
  • entity_type - column name
  • id - column name
  • name - column name
  • tenant_id - column name
  • updated_at - column name
  • value - column name
  • value_unit - column name

metrics_summary_set_input

input type for updating data in table "metrics_summary"

Fields:

  • description: String
  • entity_id: String
  • entity_name: String
  • entity_type: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: float8
  • value_unit: String

metrics_summary_stddev_fields

aggregate stddev on columns

Fields:

  • value: Float

metrics_summary_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • value: Float

metrics_summary_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • value: Float

metrics_summary_stream_cursor_input

Streaming cursor of the table "metrics_summary"

Fields:

  • initial_value: metrics_summary_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

metrics_summary_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • entity_id: String
  • entity_name: String
  • entity_type: String
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: float8
  • value_unit: String

metrics_summary_sum_fields

aggregate sum on columns

Fields:

  • value: float8

metrics_summary_update_column

update columns of table "metrics_summary"

Values:

  • description - column name
  • entity_id - column name
  • entity_name - column name
  • entity_type - column name
  • id - column name
  • name - column name
  • tenant_id - column name
  • updated_at - column name
  • value - column name
  • value_unit - column name

metrics_summary_var_pop_fields

aggregate var_pop on columns

Fields:

  • value: Float

metrics_summary_var_samp_fields

aggregate var_samp on columns

Fields:

  • value: Float

metrics_summary_variance_fields

aggregate variance on columns

Fields:

  • value: Float
Tickets (66 types)

ticket_severity_type_aggregate_fields

aggregate fields of "ticket_severity_type"

Fields:

  • count: Int!
  • max: ticket_severity_type_max_fields
  • min: ticket_severity_type_min_fields

ticket_severity_type_bool_exp

Boolean expression to filter rows from the table "ticket_severity_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [ticket_severity_type_bool_exp!]
  • _not: ticket_severity_type_bool_exp
  • _or: [ticket_severity_type_bool_exp!]
  • comment: String_comparison_exp
  • value: String_comparison_exp

ticket_severity_type_constraint

unique or primary key constraints on table "ticket_severity_type"

Values:

  • ticket_severity_type_pkey - unique or primary key constraint on columns "value"

ticket_severity_type_insert_input

input type for inserting data into table "ticket_severity_type"

Fields:

  • comment: String
  • value: String

ticket_severity_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

ticket_severity_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

ticket_severity_type_mutation_response

response of any mutation on the table "ticket_severity_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [ticket_severity_type!]! - data from the rows affected by the mutation

ticket_severity_type_on_conflict

on_conflict condition type for table "ticket_severity_type"

Fields:

  • constraint: ticket_severity_type_constraint!
  • update_columns: [ticket_severity_type_update_column!]!
  • where: ticket_severity_type_bool_exp

ticket_severity_type_order_by

Ordering options when selecting data from "ticket_severity_type".

Fields:

  • comment: order_by
  • value: order_by

ticket_severity_type_pk_columns_input

primary key columns input for table: ticket_severity_type

Fields:

  • value: String!

ticket_severity_type_select_column

select columns of table "ticket_severity_type"

Values:

  • comment - column name
  • value - column name

ticket_severity_type_set_input

input type for updating data in table "ticket_severity_type"

Fields:

  • comment: String
  • value: String

ticket_severity_type_stream_cursor_input

Streaming cursor of the table "ticket_severity_type"

Fields:

  • initial_value: ticket_severity_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

ticket_severity_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

ticket_severity_type_update_column

update columns of table "ticket_severity_type"

Values:

  • comment - column name
  • value - column name

ticket_source_type_aggregate_fields

aggregate fields of "ticket_source_type"

Fields:

  • count: Int!
  • max: ticket_source_type_max_fields
  • min: ticket_source_type_min_fields

ticket_source_type_bool_exp

Boolean expression to filter rows from the table "ticket_source_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [ticket_source_type_bool_exp!]
  • _not: ticket_source_type_bool_exp
  • _or: [ticket_source_type_bool_exp!]
  • value: String_comparison_exp

ticket_source_type_constraint

unique or primary key constraints on table "ticket_source_type"

Values:

  • ticket_source_table_pkey - unique or primary key constraint on columns "value"

ticket_source_type_insert_input

input type for inserting data into table "ticket_source_type"

Fields:

  • value: String

ticket_source_type_max_fields

aggregate max on columns

Fields:

  • value: String

ticket_source_type_min_fields

aggregate min on columns

Fields:

  • value: String

ticket_source_type_mutation_response

response of any mutation on the table "ticket_source_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [ticket_source_type!]! - data from the rows affected by the mutation

ticket_source_type_on_conflict

on_conflict condition type for table "ticket_source_type"

Fields:

  • constraint: ticket_source_type_constraint!
  • update_columns: [ticket_source_type_update_column!]!
  • where: ticket_source_type_bool_exp

ticket_source_type_order_by

Ordering options when selecting data from "ticket_source_type".

Fields:

  • value: order_by

ticket_source_type_pk_columns_input

primary key columns input for table: ticket_source_type

Fields:

  • value: String!

ticket_source_type_select_column

select columns of table "ticket_source_type"

Values:

  • value - column name

ticket_source_type_set_input

input type for updating data in table "ticket_source_type"

Fields:

  • value: String

ticket_source_type_stream_cursor_input

Streaming cursor of the table "ticket_source_type"

Fields:

  • initial_value: ticket_source_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

ticket_source_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

ticket_source_type_update_column

update columns of table "ticket_source_type"

Values:

  • value - column name

ticket_tool_types_aggregate_fields

aggregate fields of "ticket_tool_types"

Fields:

  • count: Int!
  • max: ticket_tool_types_max_fields
  • min: ticket_tool_types_min_fields

ticket_tool_types_bool_exp

Boolean expression to filter rows from the table "ticket_tool_types". All fields are combined with a logical 'AND'.

Fields:

  • _and: [ticket_tool_types_bool_exp!]
  • _not: ticket_tool_types_bool_exp
  • _or: [ticket_tool_types_bool_exp!]
  • value: String_comparison_exp

ticket_tool_types_constraint

unique or primary key constraints on table "ticket_tool_types"

Values:

  • ticket_system_types_pkey - unique or primary key constraint on columns "value"

ticket_tool_types_insert_input

input type for inserting data into table "ticket_tool_types"

Fields:

  • value: String

ticket_tool_types_max_fields

aggregate max on columns

Fields:

  • value: String

ticket_tool_types_min_fields

aggregate min on columns

Fields:

  • value: String

ticket_tool_types_mutation_response

response of any mutation on the table "ticket_tool_types"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [ticket_tool_types!]! - data from the rows affected by the mutation

ticket_tool_types_on_conflict

on_conflict condition type for table "ticket_tool_types"

Fields:

  • constraint: ticket_tool_types_constraint!
  • update_columns: [ticket_tool_types_update_column!]!
  • where: ticket_tool_types_bool_exp

ticket_tool_types_order_by

Ordering options when selecting data from "ticket_tool_types".

Fields:

  • value: order_by

ticket_tool_types_pk_columns_input

primary key columns input for table: ticket_tool_types

Fields:

  • value: String!

ticket_tool_types_select_column

select columns of table "ticket_tool_types"

Values:

  • value - column name

ticket_tool_types_set_input

input type for updating data in table "ticket_tool_types"

Fields:

  • value: String

ticket_tool_types_stream_cursor_input

Streaming cursor of the table "ticket_tool_types"

Fields:

  • initial_value: ticket_tool_types_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

ticket_tool_types_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

ticket_tool_types_update_column

update columns of table "ticket_tool_types"

Values:

  • value - column name

tickets_aggregate_bool_exp

Fields:

  • bool_and: tickets_aggregate_bool_exp_bool_and
  • bool_or: tickets_aggregate_bool_exp_bool_or
  • count: tickets_aggregate_bool_exp_count

tickets_aggregate_bool_exp_count

Fields:

  • arguments: [tickets_select_column!]
  • distinct: Boolean
  • filter: tickets_bool_exp
  • predicate: Int_comparison_exp!

tickets_aggregate_fields

aggregate fields of "tickets"

Fields:

  • count: Int!
  • max: tickets_max_fields
  • min: tickets_min_fields

tickets_aggregate_order_by

order by aggregate values of table "tickets"

Fields:

  • count: order_by
  • max: tickets_max_order_by
  • min: tickets_min_order_by

tickets_arr_rel_insert_input

input type for inserting array relation for remote table "tickets"

Fields:

  • data: [tickets_insert_input!]!
  • on_conflict: tickets_on_conflict - upsert condition

tickets_bool_exp

Boolean expression to filter rows from the table "tickets". All fields are combined with a logical 'AND'.

Fields:

  • _and: [tickets_bool_exp!]
  • _not: tickets_bool_exp
  • _or: [tickets_bool_exp!]
  • account_id: uuid_comparison_exp
  • assignee: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • error_message: String_comparison_exp
  • id: uuid_comparison_exp
  • integration: integrations_bool_exp
  • integration_id: uuid_comparison_exp
  • is_new: Boolean_comparison_exp
  • platform: ticket_tool_types_enum_comparison_exp
  • project_key: String_comparison_exp
  • reference_id: String_comparison_exp
  • reporter: String_comparison_exp
  • severity: String_comparison_exp
  • source: ticket_source_type_enum_comparison_exp
  • status: String_comparison_exp
  • tags: String_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • ticket_id: String_comparison_exp
  • ticket_type: String_comparison_exp
  • title: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • url: String_comparison_exp
  • user: users_bool_exp

tickets_constraint

unique or primary key constraints on table "tickets"

Values:

  • tickets_pkey - unique or primary key constraint on columns "id"

tickets_insert_input

input type for inserting data into table "tickets"

Fields:

  • account_id: uuid
  • assignee: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • error_message: String
  • id: uuid
  • integration: integrations_obj_rel_insert_input
  • integration_id: uuid
  • is_new: Boolean
  • platform: ticket_tool_types_enum
  • project_key: String
  • reference_id: String
  • reporter: String
  • severity: String
  • source: ticket_source_type_enum
  • status: String
  • tags: String
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • ticket_id: String
  • ticket_type: String
  • title: String
  • updated_at: timestamp
  • url: String
  • user: users_obj_rel_insert_input

tickets_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • assignee: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • error_message: String
  • id: uuid
  • integration_id: uuid
  • project_key: String
  • reference_id: String
  • reporter: String
  • severity: String
  • status: String
  • tags: String
  • tenant: uuid
  • ticket_id: String
  • ticket_type: String
  • title: String
  • updated_at: timestamp
  • url: String

tickets_max_order_by

order by max() on columns of table "tickets"

Fields:

  • account_id: order_by
  • assignee: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • error_message: order_by
  • id: order_by
  • integration_id: order_by
  • project_key: order_by
  • reference_id: order_by
  • reporter: order_by
  • severity: order_by
  • status: order_by
  • tags: order_by
  • tenant: order_by
  • ticket_id: order_by
  • ticket_type: order_by
  • title: order_by
  • updated_at: order_by
  • url: order_by

tickets_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • assignee: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • error_message: String
  • id: uuid
  • integration_id: uuid
  • project_key: String
  • reference_id: String
  • reporter: String
  • severity: String
  • status: String
  • tags: String
  • tenant: uuid
  • ticket_id: String
  • ticket_type: String
  • title: String
  • updated_at: timestamp
  • url: String

tickets_min_order_by

order by min() on columns of table "tickets"

Fields:

  • account_id: order_by
  • assignee: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • error_message: order_by
  • id: order_by
  • integration_id: order_by
  • project_key: order_by
  • reference_id: order_by
  • reporter: order_by
  • severity: order_by
  • status: order_by
  • tags: order_by
  • tenant: order_by
  • ticket_id: order_by
  • ticket_type: order_by
  • title: order_by
  • updated_at: order_by
  • url: order_by

tickets_mutation_response

response of any mutation on the table "tickets"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [tickets!]! - data from the rows affected by the mutation

tickets_on_conflict

on_conflict condition type for table "tickets"

Fields:

  • constraint: tickets_constraint!
  • update_columns: [tickets_update_column!]!
  • where: tickets_bool_exp

tickets_order_by

Ordering options when selecting data from "tickets".

Fields:

  • account_id: order_by
  • assignee: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • error_message: order_by
  • id: order_by
  • integration: integrations_order_by
  • integration_id: order_by
  • is_new: order_by
  • platform: order_by
  • project_key: order_by
  • reference_id: order_by
  • reporter: order_by
  • severity: order_by
  • source: order_by
  • status: order_by
  • tags: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • ticket_id: order_by
  • ticket_type: order_by
  • title: order_by
  • updated_at: order_by
  • url: order_by
  • user: users_order_by

tickets_pk_columns_input

primary key columns input for table: tickets

Fields:

  • id: uuid!

tickets_select_column

select columns of table "tickets"

Values:

  • account_id - column name
  • assignee - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • error_message - column name
  • id - column name
  • integration_id - column name
  • is_new - column name
  • platform - column name
  • project_key - column name
  • reference_id - column name
  • reporter - column name
  • severity - column name
  • source - column name
  • status - column name
  • tags - column name
  • tenant - column name
  • ticket_id - column name
  • ticket_type - column name
  • title - column name
  • updated_at - column name
  • url - column name

tickets_set_input

input type for updating data in table "tickets"

Fields:

  • account_id: uuid
  • assignee: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • error_message: String
  • id: uuid
  • integration_id: uuid
  • is_new: Boolean
  • platform: ticket_tool_types_enum
  • project_key: String
  • reference_id: String
  • reporter: String
  • severity: String
  • source: ticket_source_type_enum
  • status: String
  • tags: String
  • tenant: uuid
  • ticket_id: String
  • ticket_type: String
  • title: String
  • updated_at: timestamp
  • url: String

tickets_stream_cursor_input

Streaming cursor of the table "tickets"

Fields:

  • initial_value: tickets_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

tickets_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • assignee: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • error_message: String
  • id: uuid
  • integration_id: uuid
  • is_new: Boolean
  • platform: ticket_tool_types_enum
  • project_key: String
  • reference_id: String
  • reporter: String
  • severity: String
  • source: ticket_source_type_enum
  • status: String
  • tags: String
  • tenant: uuid
  • ticket_id: String
  • ticket_type: String
  • title: String
  • updated_at: timestamp
  • url: String

tickets_update_column

update columns of table "tickets"

Values:

  • account_id - column name
  • assignee - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • error_message - column name
  • id - column name
  • integration_id - column name
  • is_new - column name
  • platform - column name
  • project_key - column name
  • reference_id - column name
  • reporter - column name
  • severity - column name
  • source - column name
  • status - column name
  • tags - column name
  • tenant - column name
  • ticket_id - column name
  • ticket_type - column name
  • title - column name
  • updated_at - column name
  • url - column name
Notifications (216 types)

messaging_platforms_aggregate_fields

aggregate fields of "messaging_platforms"

Fields:

  • count: Int!
  • max: messaging_platforms_max_fields
  • min: messaging_platforms_min_fields

messaging_platforms_bool_exp

Boolean expression to filter rows from the table "messaging_platforms". All fields are combined with a logical 'AND'.

Fields:

  • _and: [messaging_platforms_bool_exp!]
  • _not: messaging_platforms_bool_exp
  • _or: [messaging_platforms_bool_exp!]
  • app_id: String_comparison_exp
  • bot_id: String_comparison_exp
  • channels: json_comparison_exp
  • client_id: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • platform: messaging_platforms_type_enum_comparison_exp
  • refresh_token: String_comparison_exp
  • refresh_token_expires_at: timestamp_comparison_exp
  • scopes: String_comparison_exp
  • team_id: String_comparison_exp
  • team_name: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • token: String_comparison_exp
  • token_expires_at: timestamp_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • username: String_comparison_exp

messaging_platforms_constraint

unique or primary key constraints on table "messaging_platforms"

Values:

  • messaging_platforms_pkey - unique or primary key constraint on columns "id"

messaging_platforms_insert_input

input type for inserting data into table "messaging_platforms"

Fields:

  • app_id: String
  • bot_id: String
  • channels: json
  • client_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: messaging_platforms_type_enum
  • refresh_token: String
  • refresh_token_expires_at: timestamp
  • scopes: String
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • token: String
  • token_expires_at: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • username: String

messaging_platforms_max_fields

aggregate max on columns

Fields:

  • app_id: String
  • bot_id: String
  • client_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • refresh_token: String
  • refresh_token_expires_at: timestamp
  • scopes: String
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • token: String
  • token_expires_at: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • username: String

messaging_platforms_min_fields

aggregate min on columns

Fields:

  • app_id: String
  • bot_id: String
  • client_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • refresh_token: String
  • refresh_token_expires_at: timestamp
  • scopes: String
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • token: String
  • token_expires_at: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • username: String

messaging_platforms_mutation_response

response of any mutation on the table "messaging_platforms"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [messaging_platforms!]! - data from the rows affected by the mutation

messaging_platforms_on_conflict

on_conflict condition type for table "messaging_platforms"

Fields:

  • constraint: messaging_platforms_constraint!
  • update_columns: [messaging_platforms_update_column!]!
  • where: messaging_platforms_bool_exp

messaging_platforms_order_by

Ordering options when selecting data from "messaging_platforms".

Fields:

  • app_id: order_by
  • bot_id: order_by
  • channels: order_by
  • client_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • platform: order_by
  • refresh_token: order_by
  • refresh_token_expires_at: order_by
  • scopes: order_by
  • team_id: order_by
  • team_name: order_by
  • tenant_id: order_by
  • token: order_by
  • token_expires_at: order_by
  • updated_at: order_by
  • updated_by: order_by
  • username: order_by

messaging_platforms_pk_columns_input

primary key columns input for table: messaging_platforms

Fields:

  • id: uuid!

messaging_platforms_select_column

select columns of table "messaging_platforms"

Values:

  • app_id - column name
  • bot_id - column name
  • channels - column name
  • client_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • platform - column name
  • refresh_token - column name
  • refresh_token_expires_at - column name
  • scopes - column name
  • team_id - column name
  • team_name - column name
  • tenant_id - column name
  • token - column name
  • token_expires_at - column name
  • updated_at - column name
  • updated_by - column name
  • username - column name

messaging_platforms_set_input

input type for updating data in table "messaging_platforms"

Fields:

  • app_id: String
  • bot_id: String
  • channels: json
  • client_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: messaging_platforms_type_enum
  • refresh_token: String
  • refresh_token_expires_at: timestamp
  • scopes: String
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • token: String
  • token_expires_at: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • username: String

messaging_platforms_stream_cursor_input

Streaming cursor of the table "messaging_platforms"

Fields:

  • initial_value: messaging_platforms_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

messaging_platforms_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • app_id: String
  • bot_id: String
  • channels: json
  • client_id: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: messaging_platforms_type_enum
  • refresh_token: String
  • refresh_token_expires_at: timestamp
  • scopes: String
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • token: String
  • token_expires_at: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • username: String

messaging_platforms_type_aggregate_fields

aggregate fields of "messaging_platforms_type"

Fields:

  • count: Int!
  • max: messaging_platforms_type_max_fields
  • min: messaging_platforms_type_min_fields

messaging_platforms_type_bool_exp

Boolean expression to filter rows from the table "messaging_platforms_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [messaging_platforms_type_bool_exp!]
  • _not: messaging_platforms_type_bool_exp
  • _or: [messaging_platforms_type_bool_exp!]
  • value: String_comparison_exp

messaging_platforms_type_constraint

unique or primary key constraints on table "messaging_platforms_type"

Values:

  • messaging_platforms_type_pkey - unique or primary key constraint on columns "value"

messaging_platforms_type_insert_input

input type for inserting data into table "messaging_platforms_type"

Fields:

  • value: String

messaging_platforms_type_max_fields

aggregate max on columns

Fields:

  • value: String

messaging_platforms_type_min_fields

aggregate min on columns

Fields:

  • value: String

messaging_platforms_type_mutation_response

response of any mutation on the table "messaging_platforms_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [messaging_platforms_type!]! - data from the rows affected by the mutation

messaging_platforms_type_on_conflict

on_conflict condition type for table "messaging_platforms_type"

Fields:

  • constraint: messaging_platforms_type_constraint!
  • update_columns: [messaging_platforms_type_update_column!]!
  • where: messaging_platforms_type_bool_exp

messaging_platforms_type_order_by

Ordering options when selecting data from "messaging_platforms_type".

Fields:

  • value: order_by

messaging_platforms_type_pk_columns_input

primary key columns input for table: messaging_platforms_type

Fields:

  • value: String!

messaging_platforms_type_select_column

select columns of table "messaging_platforms_type"

Values:

  • value - column name

messaging_platforms_type_set_input

input type for updating data in table "messaging_platforms_type"

Fields:

  • value: String

messaging_platforms_type_stream_cursor_input

Streaming cursor of the table "messaging_platforms_type"

Fields:

  • initial_value: messaging_platforms_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

messaging_platforms_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

messaging_platforms_type_update_column

update columns of table "messaging_platforms_type"

Values:

  • value - column name

messaging_platforms_update_column

update columns of table "messaging_platforms"

Values:

  • app_id - column name
  • bot_id - column name
  • channels - column name
  • client_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • platform - column name
  • refresh_token - column name
  • refresh_token_expires_at - column name
  • scopes - column name
  • team_id - column name
  • team_name - column name
  • tenant_id - column name
  • token - column name
  • token_expires_at - column name
  • updated_at - column name
  • updated_by - column name
  • username - column name

notification_channel_account_mappings_aggregate_fields

aggregate fields of "notification_channel_account_mappings"

Fields:

  • count: Int!
  • max: notification_channel_account_mappings_max_fields
  • min: notification_channel_account_mappings_min_fields

notification_channel_account_mappings_bool_exp

Boolean expression to filter rows from the table "notification_channel_account_mappings". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_channel_account_mappings_bool_exp!]
  • _not: notification_channel_account_mappings_bool_exp
  • _or: [notification_channel_account_mappings_bool_exp!]
  • account_id: uuid_comparison_exp
  • channel_id: String_comparison_exp
  • channel_metadata: String_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • platform: String_comparison_exp
  • team_id: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user_created_by: users_bool_exp
  • user_updated_by: users_bool_exp

notification_channel_account_mappings_constraint

unique or primary key constraints on table "notification_channel_account_mappings"

Values:

  • notification_channel_account_mappings_pkey - unique or primary key constraint on columns "id"
  • notification_channel_account_mappings_platform_team_id_channel_ - unique or primary key constraint on columns "platform", "channel_id", "team_id"

notification_channel_account_mappings_insert_input

input type for inserting data into table "notification_channel_account_mappings"

Fields:

  • account_id: uuid
  • channel_id: String
  • channel_metadata: String
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: String
  • team_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user_created_by: users_obj_rel_insert_input
  • user_updated_by: users_obj_rel_insert_input

notification_channel_account_mappings_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • channel_id: String
  • channel_metadata: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: String
  • team_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

notification_channel_account_mappings_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • channel_id: String
  • channel_metadata: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: String
  • team_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

notification_channel_account_mappings_mutation_response

response of any mutation on the table "notification_channel_account_mappings"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_channel_account_mappings!]! - data from the rows affected by the mutation

notification_channel_account_mappings_on_conflict

on_conflict condition type for table "notification_channel_account_mappings"

Fields:

  • constraint: notification_channel_account_mappings_constraint!
  • update_columns: [notification_channel_account_mappings_update_column!]!
  • where: notification_channel_account_mappings_bool_exp

notification_channel_account_mappings_order_by

Ordering options when selecting data from "notification_channel_account_mappings".

Fields:

  • account_id: order_by
  • channel_id: order_by
  • channel_metadata: order_by
  • cloud_account: cloud_accounts_order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • platform: order_by
  • team_id: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user_created_by: users_order_by
  • user_updated_by: users_order_by

notification_channel_account_mappings_pk_columns_input

primary key columns input for table: notification_channel_account_mappings

Fields:

  • id: uuid!

notification_channel_account_mappings_select_column

select columns of table "notification_channel_account_mappings"

Values:

  • account_id - column name
  • channel_id - column name
  • channel_metadata - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • platform - column name
  • team_id - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

notification_channel_account_mappings_set_input

input type for updating data in table "notification_channel_account_mappings"

Fields:

  • account_id: uuid
  • channel_id: String
  • channel_metadata: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: String
  • team_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

notification_channel_account_mappings_stream_cursor_input

Streaming cursor of the table "notification_channel_account_mappings"

Fields:

  • initial_value: notification_channel_account_mappings_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_channel_account_mappings_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • channel_id: String
  • channel_metadata: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: String
  • team_id: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

notification_channel_account_mappings_update_column

update columns of table "notification_channel_account_mappings"

Values:

  • account_id - column name
  • channel_id - column name
  • channel_metadata - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • platform - column name
  • team_id - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

notification_platform_types_aggregate_fields

aggregate fields of "notification_platform_types"

Fields:

  • count: Int!
  • max: notification_platform_types_max_fields
  • min: notification_platform_types_min_fields

notification_platform_types_bool_exp

Boolean expression to filter rows from the table "notification_platform_types". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_platform_types_bool_exp!]
  • _not: notification_platform_types_bool_exp
  • _or: [notification_platform_types_bool_exp!]
  • value: String_comparison_exp

notification_platform_types_constraint

unique or primary key constraints on table "notification_platform_types"

Values:

  • notification_platform_types_pkey - unique or primary key constraint on columns "value"

notification_platform_types_insert_input

input type for inserting data into table "notification_platform_types"

Fields:

  • value: String

notification_platform_types_max_fields

aggregate max on columns

Fields:

  • value: String

notification_platform_types_min_fields

aggregate min on columns

Fields:

  • value: String

notification_platform_types_mutation_response

response of any mutation on the table "notification_platform_types"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_platform_types!]! - data from the rows affected by the mutation

notification_platform_types_on_conflict

on_conflict condition type for table "notification_platform_types"

Fields:

  • constraint: notification_platform_types_constraint!
  • update_columns: [notification_platform_types_update_column!]!
  • where: notification_platform_types_bool_exp

notification_platform_types_order_by

Ordering options when selecting data from "notification_platform_types".

Fields:

  • value: order_by

notification_platform_types_pk_columns_input

primary key columns input for table: notification_platform_types

Fields:

  • value: String!

notification_platform_types_select_column

select columns of table "notification_platform_types"

Values:

  • value - column name

notification_platform_types_set_input

input type for updating data in table "notification_platform_types"

Fields:

  • value: String

notification_platform_types_stream_cursor_input

Streaming cursor of the table "notification_platform_types"

Fields:

  • initial_value: notification_platform_types_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_platform_types_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

notification_platform_types_update_column

update columns of table "notification_platform_types"

Values:

  • value - column name

notification_rule_mappings_aggregate_bool_exp

Fields:

  • count: notification_rule_mappings_aggregate_bool_exp_count

notification_rule_mappings_aggregate_bool_exp_count

Fields:

  • arguments: [notification_rule_mappings_select_column!]
  • distinct: Boolean
  • filter: notification_rule_mappings_bool_exp
  • predicate: Int_comparison_exp!

notification_rule_mappings_aggregate_fields

aggregate fields of "notification_rule_mappings"

Fields:

  • count: Int!
  • max: notification_rule_mappings_max_fields
  • min: notification_rule_mappings_min_fields

notification_rule_mappings_aggregate_order_by

order by aggregate values of table "notification_rule_mappings"

Fields:

  • count: order_by
  • max: notification_rule_mappings_max_order_by
  • min: notification_rule_mappings_min_order_by

notification_rule_mappings_arr_rel_insert_input

input type for inserting array relation for remote table "notification_rule_mappings"

Fields:

  • data: [notification_rule_mappings_insert_input!]!
  • on_conflict: notification_rule_mappings_on_conflict - upsert condition

notification_rule_mappings_bool_exp

Boolean expression to filter rows from the table "notification_rule_mappings". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_rule_mappings_bool_exp!]
  • _not: notification_rule_mappings_bool_exp
  • _or: [notification_rule_mappings_bool_exp!]
  • channels: json_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • platform: notification_platform_types_enum_comparison_exp
  • rule_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamptz_comparison_exp
  • updated_by: uuid_comparison_exp

notification_rule_mappings_constraint

unique or primary key constraints on table "notification_rule_mappings"

Values:

  • notification_rule_mappings_pkey - unique or primary key constraint on columns "id"
  • notification_rule_mappings_rule_id_platform_key - unique or primary key constraint on columns "rule_id", "platform"

notification_rule_mappings_insert_input

input type for inserting data into table "notification_rule_mappings"

Fields:

  • channels: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: notification_platform_types_enum
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

notification_rule_mappings_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

notification_rule_mappings_max_order_by

order by max() on columns of table "notification_rule_mappings"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • rule_id: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

notification_rule_mappings_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

notification_rule_mappings_min_order_by

order by min() on columns of table "notification_rule_mappings"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • rule_id: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

notification_rule_mappings_mutation_response

response of any mutation on the table "notification_rule_mappings"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_rule_mappings!]! - data from the rows affected by the mutation

notification_rule_mappings_on_conflict

on_conflict condition type for table "notification_rule_mappings"

Fields:

  • constraint: notification_rule_mappings_constraint!
  • update_columns: [notification_rule_mappings_update_column!]!
  • where: notification_rule_mappings_bool_exp

notification_rule_mappings_order_by

Ordering options when selecting data from "notification_rule_mappings".

Fields:

  • channels: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • platform: order_by
  • rule_id: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

notification_rule_mappings_pk_columns_input

primary key columns input for table: notification_rule_mappings

Fields:

  • id: uuid!

notification_rule_mappings_select_column

select columns of table "notification_rule_mappings"

Values:

  • channels - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • platform - column name
  • rule_id - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

notification_rule_mappings_set_input

input type for updating data in table "notification_rule_mappings"

Fields:

  • channels: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: notification_platform_types_enum
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

notification_rule_mappings_stream_cursor_input

Streaming cursor of the table "notification_rule_mappings"

Fields:

  • initial_value: notification_rule_mappings_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_rule_mappings_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • channels: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • platform: notification_platform_types_enum
  • rule_id: uuid
  • tenant_id: uuid
  • updated_at: timestamptz
  • updated_by: uuid

notification_rule_mappings_update_column

update columns of table "notification_rule_mappings"

Values:

  • channels - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • platform - column name
  • rule_id - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

notification_rules_aggregate_fields

aggregate fields of "notification_rules"

Fields:

  • count: Int!
  • max: notification_rules_max_fields
  • min: notification_rules_min_fields

notification_rules_bool_exp

Boolean expression to filter rows from the table "notification_rules". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_rules_bool_exp!]
  • _not: notification_rules_bool_exp
  • _or: [notification_rules_bool_exp!]
  • account_id: uuid_comparison_exp
  • aggregation_key: String_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • cluster: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • delivery_mode: notifications_delivery_mode_type_enum_comparison_exp
  • description: String_comparison_exp
  • expires_at: timestamp_comparison_exp
  • frequency: notifications_frequency_type_enum_comparison_exp
  • id: uuid_comparison_exp
  • is_active: Boolean_comparison_exp
  • is_suppressed: Boolean_comparison_exp
  • name: String_comparison_exp
  • namespace: String_comparison_exp
  • notification_rule_mappings: notification_rule_mappings_bool_exp
  • notification_rule_mappings_aggregate: notification_rule_mappings_aggregate_bool_exp
  • severity: String_comparison_exp
  • source: notification_source_type_enum_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • user_updated_by: users_bool_exp
  • workload: String_comparison_exp

notification_rules_constraint

unique or primary key constraints on table "notification_rules"

Values:

  • notification_rules_pkey - unique or primary key constraint on columns "id"
  • notification_rules_tenant_id_name_key - unique or primary key constraint on columns "tenant_id", "name"

notification_rules_insert_input

input type for inserting data into table "notification_rules"

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cluster: String
  • created_at: timestamp
  • created_by: uuid
  • delivery_mode: notifications_delivery_mode_type_enum
  • description: String
  • expires_at: timestamp
  • frequency: notifications_frequency_type_enum
  • id: uuid
  • is_active: Boolean
  • is_suppressed: Boolean
  • name: String
  • namespace: String
  • notification_rule_mappings: notification_rule_mappings_arr_rel_insert_input
  • severity: String
  • source: notification_source_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • user_updated_by: users_obj_rel_insert_input
  • workload: String

notification_rules_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cluster: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • namespace: String
  • severity: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • workload: String

notification_rules_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cluster: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • namespace: String
  • severity: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • workload: String

notification_rules_mutation_response

response of any mutation on the table "notification_rules"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_rules!]! - data from the rows affected by the mutation

notification_rules_on_conflict

on_conflict condition type for table "notification_rules"

Fields:

  • constraint: notification_rules_constraint!
  • update_columns: [notification_rules_update_column!]!
  • where: notification_rules_bool_exp

notification_rules_order_by

Ordering options when selecting data from "notification_rules".

Fields:

  • account_id: order_by
  • aggregation_key: order_by
  • cloud_account: cloud_accounts_order_by
  • cluster: order_by
  • created_at: order_by
  • created_by: order_by
  • delivery_mode: order_by
  • description: order_by
  • expires_at: order_by
  • frequency: order_by
  • id: order_by
  • is_active: order_by
  • is_suppressed: order_by
  • name: order_by
  • namespace: order_by
  • notification_rule_mappings_aggregate: notification_rule_mappings_aggregate_order_by
  • severity: order_by
  • source: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • user_updated_by: users_order_by
  • workload: order_by

notification_rules_pk_columns_input

primary key columns input for table: notification_rules

Fields:

  • id: uuid!

notification_rules_select_column

select columns of table "notification_rules"

Values:

  • account_id - column name
  • aggregation_key - column name
  • cluster - column name
  • created_at - column name
  • created_by - column name
  • delivery_mode - column name
  • description - column name
  • expires_at - column name
  • frequency - column name
  • id - column name
  • is_active - column name
  • is_suppressed - column name
  • name - column name
  • namespace - column name
  • severity - column name
  • source - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name
  • workload - column name

notification_rules_set_input

input type for updating data in table "notification_rules"

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cluster: String
  • created_at: timestamp
  • created_by: uuid
  • delivery_mode: notifications_delivery_mode_type_enum
  • description: String
  • expires_at: timestamp
  • frequency: notifications_frequency_type_enum
  • id: uuid
  • is_active: Boolean
  • is_suppressed: Boolean
  • name: String
  • namespace: String
  • severity: String
  • source: notification_source_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • workload: String

notification_rules_stream_cursor_input

Streaming cursor of the table "notification_rules"

Fields:

  • initial_value: notification_rules_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_rules_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • aggregation_key: String
  • cluster: String
  • created_at: timestamp
  • created_by: uuid
  • delivery_mode: notifications_delivery_mode_type_enum
  • description: String
  • expires_at: timestamp
  • frequency: notifications_frequency_type_enum
  • id: uuid
  • is_active: Boolean
  • is_suppressed: Boolean
  • name: String
  • namespace: String
  • severity: String
  • source: notification_source_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • workload: String

notification_rules_update_column

update columns of table "notification_rules"

Values:

  • account_id - column name
  • aggregation_key - column name
  • cluster - column name
  • created_at - column name
  • created_by - column name
  • delivery_mode - column name
  • description - column name
  • expires_at - column name
  • frequency - column name
  • id - column name
  • is_active - column name
  • is_suppressed - column name
  • name - column name
  • namespace - column name
  • severity - column name
  • source - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name
  • workload - column name

notification_severity_type_aggregate_fields

aggregate fields of "notification_severity_type"

Fields:

  • count: Int!
  • max: notification_severity_type_max_fields
  • min: notification_severity_type_min_fields

notification_severity_type_bool_exp

Boolean expression to filter rows from the table "notification_severity_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_severity_type_bool_exp!]
  • _not: notification_severity_type_bool_exp
  • _or: [notification_severity_type_bool_exp!]
  • description: String_comparison_exp
  • notifications: notifications_bool_exp
  • notifications_aggregate: notifications_aggregate_bool_exp
  • value: String_comparison_exp

notification_severity_type_constraint

unique or primary key constraints on table "notification_severity_type"

Values:

  • notification_severity_type_pkey - unique or primary key constraint on columns "value"

notification_severity_type_insert_input

input type for inserting data into table "notification_severity_type"

Fields:

  • description: String
  • notifications: notifications_arr_rel_insert_input
  • value: String

notification_severity_type_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

notification_severity_type_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

notification_severity_type_mutation_response

response of any mutation on the table "notification_severity_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_severity_type!]! - data from the rows affected by the mutation

notification_severity_type_obj_rel_insert_input

input type for inserting object relation for remote table "notification_severity_type"

Fields:

  • data: notification_severity_type_insert_input!
  • on_conflict: notification_severity_type_on_conflict - upsert condition

notification_severity_type_on_conflict

on_conflict condition type for table "notification_severity_type"

Fields:

  • constraint: notification_severity_type_constraint!
  • update_columns: [notification_severity_type_update_column!]!
  • where: notification_severity_type_bool_exp

notification_severity_type_order_by

Ordering options when selecting data from "notification_severity_type".

Fields:

  • description: order_by
  • notifications_aggregate: notifications_aggregate_order_by
  • value: order_by

notification_severity_type_pk_columns_input

primary key columns input for table: notification_severity_type

Fields:

  • value: String!

notification_severity_type_select_column

select columns of table "notification_severity_type"

Values:

  • description - column name
  • value - column name

notification_severity_type_set_input

input type for updating data in table "notification_severity_type"

Fields:

  • description: String
  • value: String

notification_severity_type_stream_cursor_input

Streaming cursor of the table "notification_severity_type"

Fields:

  • initial_value: notification_severity_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_severity_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

notification_severity_type_update_column

update columns of table "notification_severity_type"

Values:

  • description - column name
  • value - column name

notification_source_type_aggregate_fields

aggregate fields of "notification_source_type"

Fields:

  • count: Int!
  • max: notification_source_type_max_fields
  • min: notification_source_type_min_fields

notification_source_type_bool_exp

Boolean expression to filter rows from the table "notification_source_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_source_type_bool_exp!]
  • _not: notification_source_type_bool_exp
  • _or: [notification_source_type_bool_exp!]
  • value: String_comparison_exp

notification_source_type_constraint

unique or primary key constraints on table "notification_source_type"

Values:

  • notification_source_type_pkey - unique or primary key constraint on columns "value"

notification_source_type_insert_input

input type for inserting data into table "notification_source_type"

Fields:

  • value: String

notification_source_type_max_fields

aggregate max on columns

Fields:

  • value: String

notification_source_type_min_fields

aggregate min on columns

Fields:

  • value: String

notification_source_type_mutation_response

response of any mutation on the table "notification_source_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_source_type!]! - data from the rows affected by the mutation

notification_source_type_on_conflict

on_conflict condition type for table "notification_source_type"

Fields:

  • constraint: notification_source_type_constraint!
  • update_columns: [notification_source_type_update_column!]!
  • where: notification_source_type_bool_exp

notification_source_type_order_by

Ordering options when selecting data from "notification_source_type".

Fields:

  • value: order_by

notification_source_type_pk_columns_input

primary key columns input for table: notification_source_type

Fields:

  • value: String!

notification_source_type_select_column

select columns of table "notification_source_type"

Values:

  • value - column name

notification_source_type_set_input

input type for updating data in table "notification_source_type"

Fields:

  • value: String

notification_source_type_stream_cursor_input

Streaming cursor of the table "notification_source_type"

Fields:

  • initial_value: notification_source_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_source_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

notification_source_type_update_column

update columns of table "notification_source_type"

Values:

  • value - column name

notification_user_aggregate_bool_exp

Fields:

  • count: notification_user_aggregate_bool_exp_count

notification_user_aggregate_bool_exp_count

Fields:

  • arguments: [notification_user_select_column!]
  • distinct: Boolean
  • filter: notification_user_bool_exp
  • predicate: Int_comparison_exp!

notification_user_aggregate_fields

aggregate fields of "notification_user"

Fields:

  • count: Int!
  • max: notification_user_max_fields
  • min: notification_user_min_fields

notification_user_aggregate_order_by

order by aggregate values of table "notification_user"

Fields:

  • count: order_by
  • max: notification_user_max_order_by
  • min: notification_user_min_order_by

notification_user_arr_rel_insert_input

input type for inserting array relation for remote table "notification_user"

Fields:

  • data: [notification_user_insert_input!]!
  • on_conflict: notification_user_on_conflict - upsert condition

notification_user_bool_exp

Boolean expression to filter rows from the table "notification_user". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_user_bool_exp!]
  • _not: notification_user_bool_exp
  • _or: [notification_user_bool_exp!]
  • id: uuid_comparison_exp
  • notification: uuid_comparison_exp
  • notificationByNotification: notifications_bool_exp
  • notification_user_status_type: notification_user_status_type_bool_exp
  • status: String_comparison_exp
  • user: users_bool_exp
  • user_id: uuid_comparison_exp

notification_user_constraint

unique or primary key constraints on table "notification_user"

Values:

  • notification_user_pkey - unique or primary key constraint on columns "id"

notification_user_insert_input

input type for inserting data into table "notification_user"

Fields:

  • id: uuid
  • notification: uuid
  • notificationByNotification: notifications_obj_rel_insert_input
  • notification_user_status_type: notification_user_status_type_obj_rel_insert_input
  • status: String
  • user: users_obj_rel_insert_input
  • user_id: uuid

notification_user_max_fields

aggregate max on columns

Fields:

  • id: uuid
  • notification: uuid
  • status: String
  • user_id: uuid

notification_user_max_order_by

order by max() on columns of table "notification_user"

Fields:

  • id: order_by
  • notification: order_by
  • status: order_by
  • user_id: order_by

notification_user_min_fields

aggregate min on columns

Fields:

  • id: uuid
  • notification: uuid
  • status: String
  • user_id: uuid

notification_user_min_order_by

order by min() on columns of table "notification_user"

Fields:

  • id: order_by
  • notification: order_by
  • status: order_by
  • user_id: order_by

notification_user_mutation_response

response of any mutation on the table "notification_user"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_user!]! - data from the rows affected by the mutation

notification_user_on_conflict

on_conflict condition type for table "notification_user"

Fields:

  • constraint: notification_user_constraint!
  • update_columns: [notification_user_update_column!]!
  • where: notification_user_bool_exp

notification_user_order_by

Ordering options when selecting data from "notification_user".

Fields:

  • id: order_by
  • notification: order_by
  • notificationByNotification: notifications_order_by
  • notification_user_status_type: notification_user_status_type_order_by
  • status: order_by
  • user: users_order_by
  • user_id: order_by

notification_user_pk_columns_input

primary key columns input for table: notification_user

Fields:

  • id: uuid!

notification_user_select_column

select columns of table "notification_user"

Values:

  • id - column name
  • notification - column name
  • status - column name
  • user_id - column name

notification_user_set_input

input type for updating data in table "notification_user"

Fields:

  • id: uuid
  • notification: uuid
  • status: String
  • user_id: uuid

notification_user_status_type_aggregate_fields

aggregate fields of "notification_user_status_type"

Fields:

  • count: Int!
  • max: notification_user_status_type_max_fields
  • min: notification_user_status_type_min_fields

notification_user_status_type_bool_exp

Boolean expression to filter rows from the table "notification_user_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notification_user_status_type_bool_exp!]
  • _not: notification_user_status_type_bool_exp
  • _or: [notification_user_status_type_bool_exp!]
  • description: String_comparison_exp
  • notification_users: notification_user_bool_exp
  • notification_users_aggregate: notification_user_aggregate_bool_exp
  • value: String_comparison_exp

notification_user_status_type_constraint

unique or primary key constraints on table "notification_user_status_type"

Values:

  • notification_user_status_type_pkey - unique or primary key constraint on columns "value"

notification_user_status_type_insert_input

input type for inserting data into table "notification_user_status_type"

Fields:

  • description: String
  • notification_users: notification_user_arr_rel_insert_input
  • value: String

notification_user_status_type_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

notification_user_status_type_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

notification_user_status_type_mutation_response

response of any mutation on the table "notification_user_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notification_user_status_type!]! - data from the rows affected by the mutation

notification_user_status_type_obj_rel_insert_input

input type for inserting object relation for remote table "notification_user_status_type"

Fields:

  • data: notification_user_status_type_insert_input!
  • on_conflict: notification_user_status_type_on_conflict - upsert condition

notification_user_status_type_on_conflict

on_conflict condition type for table "notification_user_status_type"

Fields:

  • constraint: notification_user_status_type_constraint!
  • update_columns: [notification_user_status_type_update_column!]!
  • where: notification_user_status_type_bool_exp

notification_user_status_type_order_by

Ordering options when selecting data from "notification_user_status_type".

Fields:

  • description: order_by
  • notification_users_aggregate: notification_user_aggregate_order_by
  • value: order_by

notification_user_status_type_pk_columns_input

primary key columns input for table: notification_user_status_type

Fields:

  • value: String!

notification_user_status_type_select_column

select columns of table "notification_user_status_type"

Values:

  • description - column name
  • value - column name

notification_user_status_type_set_input

input type for updating data in table "notification_user_status_type"

Fields:

  • description: String
  • value: String

notification_user_status_type_stream_cursor_input

Streaming cursor of the table "notification_user_status_type"

Fields:

  • initial_value: notification_user_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_user_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

notification_user_status_type_update_column

update columns of table "notification_user_status_type"

Values:

  • description - column name
  • value - column name

notification_user_stream_cursor_input

Streaming cursor of the table "notification_user"

Fields:

  • initial_value: notification_user_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notification_user_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • id: uuid
  • notification: uuid
  • status: String
  • user_id: uuid

notification_user_update_column

update columns of table "notification_user"

Values:

  • id - column name
  • notification - column name
  • status - column name
  • user_id - column name

notifications_aggregate_bool_exp

Fields:

  • count: notifications_aggregate_bool_exp_count

notifications_aggregate_bool_exp_count

Fields:

  • arguments: [notifications_select_column!]
  • distinct: Boolean
  • filter: notifications_bool_exp
  • predicate: Int_comparison_exp!

notifications_aggregate_fields

aggregate fields of "notifications"

Fields:

  • count: Int!
  • max: notifications_max_fields
  • min: notifications_min_fields

notifications_aggregate_order_by

order by aggregate values of table "notifications"

Fields:

  • count: order_by
  • max: notifications_max_order_by
  • min: notifications_min_order_by

notifications_arr_rel_insert_input

input type for inserting array relation for remote table "notifications"

Fields:

  • data: [notifications_insert_input!]!
  • on_conflict: notifications_on_conflict - upsert condition

notifications_bool_exp

Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notifications_bool_exp!]
  • _not: notifications_bool_exp
  • _or: [notifications_bool_exp!]
  • created_at: timestamp_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • notification_severity_type: notification_severity_type_bool_exp
  • notification_users: notification_user_bool_exp
  • notification_users_aggregate: notification_user_aggregate_bool_exp
  • severity: notification_severity_type_enum_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • title: citext_comparison_exp
  • updated_at: timestamp_comparison_exp

notifications_constraint

unique or primary key constraints on table "notifications"

Values:

  • notifications_pkey - unique or primary key constraint on columns "id"

notifications_delivery_mode_type_aggregate_fields

aggregate fields of "notifications_delivery_mode_type"

Fields:

  • count: Int!
  • max: notifications_delivery_mode_type_max_fields
  • min: notifications_delivery_mode_type_min_fields

notifications_delivery_mode_type_bool_exp

Boolean expression to filter rows from the table "notifications_delivery_mode_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notifications_delivery_mode_type_bool_exp!]
  • _not: notifications_delivery_mode_type_bool_exp
  • _or: [notifications_delivery_mode_type_bool_exp!]
  • value: String_comparison_exp

notifications_delivery_mode_type_constraint

unique or primary key constraints on table "notifications_delivery_mode_type"

Values:

  • notifications_delivery_mode_type_pkey - unique or primary key constraint on columns "value"

notifications_delivery_mode_type_insert_input

input type for inserting data into table "notifications_delivery_mode_type"

Fields:

  • value: String

notifications_delivery_mode_type_max_fields

aggregate max on columns

Fields:

  • value: String

notifications_delivery_mode_type_min_fields

aggregate min on columns

Fields:

  • value: String

notifications_delivery_mode_type_mutation_response

response of any mutation on the table "notifications_delivery_mode_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notifications_delivery_mode_type!]! - data from the rows affected by the mutation

notifications_delivery_mode_type_on_conflict

on_conflict condition type for table "notifications_delivery_mode_type"

Fields:

  • constraint: notifications_delivery_mode_type_constraint!
  • update_columns: [notifications_delivery_mode_type_update_column!]!
  • where: notifications_delivery_mode_type_bool_exp

notifications_delivery_mode_type_order_by

Ordering options when selecting data from "notifications_delivery_mode_type".

Fields:

  • value: order_by

notifications_delivery_mode_type_pk_columns_input

primary key columns input for table: notifications_delivery_mode_type

Fields:

  • value: String!

notifications_delivery_mode_type_select_column

select columns of table "notifications_delivery_mode_type"

Values:

  • value - column name

notifications_delivery_mode_type_set_input

input type for updating data in table "notifications_delivery_mode_type"

Fields:

  • value: String

notifications_delivery_mode_type_stream_cursor_input

Streaming cursor of the table "notifications_delivery_mode_type"

Fields:

  • initial_value: notifications_delivery_mode_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notifications_delivery_mode_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

notifications_delivery_mode_type_update_column

update columns of table "notifications_delivery_mode_type"

Values:

  • value - column name

notifications_frequency_type_aggregate_fields

aggregate fields of "notifications_frequency_type"

Fields:

  • count: Int!
  • max: notifications_frequency_type_max_fields
  • min: notifications_frequency_type_min_fields

notifications_frequency_type_bool_exp

Boolean expression to filter rows from the table "notifications_frequency_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [notifications_frequency_type_bool_exp!]
  • _not: notifications_frequency_type_bool_exp
  • _or: [notifications_frequency_type_bool_exp!]
  • value: String_comparison_exp

notifications_frequency_type_constraint

unique or primary key constraints on table "notifications_frequency_type"

Values:

  • notifications_frequency_type_pkey - unique or primary key constraint on columns "value"

notifications_frequency_type_insert_input

input type for inserting data into table "notifications_frequency_type"

Fields:

  • value: String

notifications_frequency_type_max_fields

aggregate max on columns

Fields:

  • value: String

notifications_frequency_type_min_fields

aggregate min on columns

Fields:

  • value: String

notifications_frequency_type_mutation_response

response of any mutation on the table "notifications_frequency_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notifications_frequency_type!]! - data from the rows affected by the mutation

notifications_frequency_type_on_conflict

on_conflict condition type for table "notifications_frequency_type"

Fields:

  • constraint: notifications_frequency_type_constraint!
  • update_columns: [notifications_frequency_type_update_column!]!
  • where: notifications_frequency_type_bool_exp

notifications_frequency_type_order_by

Ordering options when selecting data from "notifications_frequency_type".

Fields:

  • value: order_by

notifications_frequency_type_pk_columns_input

primary key columns input for table: notifications_frequency_type

Fields:

  • value: String!

notifications_frequency_type_select_column

select columns of table "notifications_frequency_type"

Values:

  • value - column name

notifications_frequency_type_set_input

input type for updating data in table "notifications_frequency_type"

Fields:

  • value: String

notifications_frequency_type_stream_cursor_input

Streaming cursor of the table "notifications_frequency_type"

Fields:

  • initial_value: notifications_frequency_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notifications_frequency_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

notifications_frequency_type_update_column

update columns of table "notifications_frequency_type"

Values:

  • value - column name

notifications_insert_input

input type for inserting data into table "notifications"

Fields:

  • created_at: timestamp
  • description: String
  • id: uuid
  • notification_severity_type: notification_severity_type_obj_rel_insert_input
  • notification_users: notification_user_arr_rel_insert_input
  • severity: notification_severity_type_enum
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • title: citext
  • updated_at: timestamp

notifications_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • description: String
  • id: uuid
  • tenant: uuid
  • title: citext
  • updated_at: timestamp

notifications_max_order_by

order by max() on columns of table "notifications"

Fields:

  • created_at: order_by
  • description: order_by
  • id: order_by
  • tenant: order_by
  • title: order_by
  • updated_at: order_by

notifications_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • description: String
  • id: uuid
  • tenant: uuid
  • title: citext
  • updated_at: timestamp

notifications_min_order_by

order by min() on columns of table "notifications"

Fields:

  • created_at: order_by
  • description: order_by
  • id: order_by
  • tenant: order_by
  • title: order_by
  • updated_at: order_by

notifications_mutation_response

response of any mutation on the table "notifications"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [notifications!]! - data from the rows affected by the mutation

notifications_obj_rel_insert_input

input type for inserting object relation for remote table "notifications"

Fields:

  • data: notifications_insert_input!
  • on_conflict: notifications_on_conflict - upsert condition

notifications_on_conflict

on_conflict condition type for table "notifications"

Fields:

  • constraint: notifications_constraint!
  • update_columns: [notifications_update_column!]!
  • where: notifications_bool_exp

notifications_order_by

Ordering options when selecting data from "notifications".

Fields:

  • created_at: order_by
  • description: order_by
  • id: order_by
  • notification_severity_type: notification_severity_type_order_by
  • notification_users_aggregate: notification_user_aggregate_order_by
  • severity: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • title: order_by
  • updated_at: order_by

notifications_pk_columns_input

primary key columns input for table: notifications

Fields:

  • id: uuid!

notifications_select_column

select columns of table "notifications"

Values:

  • created_at - column name
  • description - column name
  • id - column name
  • severity - column name
  • tenant - column name
  • title - column name
  • updated_at - column name

notifications_set_input

input type for updating data in table "notifications"

Fields:

  • created_at: timestamp
  • description: String
  • id: uuid
  • severity: notification_severity_type_enum
  • tenant: uuid
  • title: citext
  • updated_at: timestamp

notifications_stream_cursor_input

Streaming cursor of the table "notifications"

Fields:

  • initial_value: notifications_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

notifications_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • description: String
  • id: uuid
  • severity: notification_severity_type_enum
  • tenant: uuid
  • title: citext
  • updated_at: timestamp

notifications_update_column

update columns of table "notifications"

Values:

  • created_at - column name
  • description - column name
  • id - column name
  • severity - column name
  • tenant - column name
  • title - column name
  • updated_at - column name
Organization & Users (510 types)

auth_provider_type_aggregate_fields

aggregate fields of "auth_provider_type"

Fields:

  • count: Int!
  • max: auth_provider_type_max_fields
  • min: auth_provider_type_min_fields

auth_provider_type_bool_exp

Boolean expression to filter rows from the table "auth_provider_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auth_provider_type_bool_exp!]
  • _not: auth_provider_type_bool_exp
  • _or: [auth_provider_type_bool_exp!]
  • comment: String_comparison_exp
  • user_auths: user_auths_bool_exp
  • user_auths_aggregate: user_auths_aggregate_bool_exp
  • value: String_comparison_exp

auth_provider_type_constraint

unique or primary key constraints on table "auth_provider_type"

Values:

  • auth_provider_types_pkey - unique or primary key constraint on columns "value"

auth_provider_type_insert_input

input type for inserting data into table "auth_provider_type"

Fields:

  • comment: String
  • user_auths: user_auths_arr_rel_insert_input
  • value: String

auth_provider_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

auth_provider_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

auth_provider_type_mutation_response

response of any mutation on the table "auth_provider_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auth_provider_type!]! - data from the rows affected by the mutation

auth_provider_type_obj_rel_insert_input

input type for inserting object relation for remote table "auth_provider_type"

Fields:

  • data: auth_provider_type_insert_input!
  • on_conflict: auth_provider_type_on_conflict - upsert condition

auth_provider_type_on_conflict

on_conflict condition type for table "auth_provider_type"

Fields:

  • constraint: auth_provider_type_constraint!
  • update_columns: [auth_provider_type_update_column!]!
  • where: auth_provider_type_bool_exp

auth_provider_type_order_by

Ordering options when selecting data from "auth_provider_type".

Fields:

  • comment: order_by
  • user_auths_aggregate: user_auths_aggregate_order_by
  • value: order_by

auth_provider_type_pk_columns_input

primary key columns input for table: auth_provider_type

Fields:

  • value: String!

auth_provider_type_select_column

select columns of table "auth_provider_type"

Values:

  • comment - column name
  • value - column name

auth_provider_type_set_input

input type for updating data in table "auth_provider_type"

Fields:

  • comment: String
  • value: String

auth_provider_type_stream_cursor_input

Streaming cursor of the table "auth_provider_type"

Fields:

  • initial_value: auth_provider_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auth_provider_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

auth_provider_type_update_column

update columns of table "auth_provider_type"

Values:

  • comment - column name
  • value - column name

auth_type_aggregate_fields

aggregate fields of "auth_type"

Fields:

  • count: Int!
  • max: auth_type_max_fields
  • min: auth_type_min_fields

auth_type_bool_exp

Boolean expression to filter rows from the table "auth_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [auth_type_bool_exp!]
  • _not: auth_type_bool_exp
  • _or: [auth_type_bool_exp!]
  • comment: String_comparison_exp
  • user_auths: user_auths_bool_exp
  • user_auths_aggregate: user_auths_aggregate_bool_exp
  • value: String_comparison_exp

auth_type_constraint

unique or primary key constraints on table "auth_type"

Values:

  • auth_types_pkey - unique or primary key constraint on columns "value"

auth_type_insert_input

input type for inserting data into table "auth_type"

Fields:

  • comment: String
  • user_auths: user_auths_arr_rel_insert_input
  • value: String

auth_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

auth_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

auth_type_mutation_response

response of any mutation on the table "auth_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [auth_type!]! - data from the rows affected by the mutation

auth_type_obj_rel_insert_input

input type for inserting object relation for remote table "auth_type"

Fields:

  • data: auth_type_insert_input!
  • on_conflict: auth_type_on_conflict - upsert condition

auth_type_on_conflict

on_conflict condition type for table "auth_type"

Fields:

  • constraint: auth_type_constraint!
  • update_columns: [auth_type_update_column!]!
  • where: auth_type_bool_exp

auth_type_order_by

Ordering options when selecting data from "auth_type".

Fields:

  • comment: order_by
  • user_auths_aggregate: user_auths_aggregate_order_by
  • value: order_by

auth_type_pk_columns_input

primary key columns input for table: auth_type

Fields:

  • value: String!

auth_type_select_column

select columns of table "auth_type"

Values:

  • comment - column name
  • value - column name

auth_type_set_input

input type for updating data in table "auth_type"

Fields:

  • comment: String
  • value: String

auth_type_stream_cursor_input

Streaming cursor of the table "auth_type"

Fields:

  • initial_value: auth_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

auth_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

auth_type_update_column

update columns of table "auth_type"

Values:

  • comment - column name
  • value - column name

business_unit_aggregate_bool_exp

Fields:

  • count: business_unit_aggregate_bool_exp_count

business_unit_aggregate_bool_exp_count

Fields:

  • arguments: [business_unit_select_column!]
  • distinct: Boolean
  • filter: business_unit_bool_exp
  • predicate: Int_comparison_exp!

business_unit_aggregate_fields

aggregate fields of "business_unit"

Fields:

  • count: Int!
  • max: business_unit_max_fields
  • min: business_unit_min_fields

business_unit_aggregate_order_by

order by aggregate values of table "business_unit"

Fields:

  • count: order_by
  • max: business_unit_max_order_by
  • min: business_unit_min_order_by

business_unit_arr_rel_insert_input

input type for inserting array relation for remote table "business_unit"

Fields:

  • data: [business_unit_insert_input!]!
  • on_conflict: business_unit_on_conflict - upsert condition

business_unit_bool_exp

Boolean expression to filter rows from the table "business_unit". All fields are combined with a logical 'AND'.

Fields:

  • _and: [business_unit_bool_exp!]
  • _not: business_unit_bool_exp
  • _or: [business_unit_bool_exp!]
  • business_unit: business_unit_bool_exp
  • business_units: business_unit_bool_exp
  • business_units_aggregate: business_unit_aggregate_bool_exp
  • businessunit_funding_sources: businessunit_funding_bool_exp
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_bool_exp
  • businessunit_users: businessunit_users_bool_exp
  • businessunit_users_aggregate: businessunit_users_aggregate_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • name: citext_comparison_exp
  • parent_business_unit: uuid_comparison_exp
  • projects: projects_bool_exp
  • projects_aggregate: projects_aggregate_bool_exp
  • spends: spends_bool_exp
  • spends_aggregate: spends_aggregate_bool_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • user_groups: user_groups_bool_exp
  • user_groups_aggregate: user_groups_aggregate_bool_exp

business_unit_constraint

unique or primary key constraints on table "business_unit"

Values:

  • business_unit_name_tenant_key - unique or primary key constraint on columns "tenant", "name"
  • business_unit_pkey - unique or primary key constraint on columns "id"

business_unit_insert_input

input type for inserting data into table "business_unit"

Fields:

  • business_unit: business_unit_obj_rel_insert_input
  • business_units: business_unit_arr_rel_insert_input
  • businessunit_funding_sources: businessunit_funding_arr_rel_insert_input
  • businessunit_users: businessunit_users_arr_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: citext
  • parent_business_unit: uuid
  • projects: projects_arr_rel_insert_input
  • spends: spends_arr_rel_insert_input
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • user_groups: user_groups_arr_rel_insert_input

business_unit_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: citext
  • parent_business_unit: uuid
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

business_unit_max_order_by

order by max() on columns of table "business_unit"

Fields:

  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • parent_business_unit: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

business_unit_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: citext
  • parent_business_unit: uuid
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

business_unit_min_order_by

order by min() on columns of table "business_unit"

Fields:

  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • parent_business_unit: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

business_unit_mutation_response

response of any mutation on the table "business_unit"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [business_unit!]! - data from the rows affected by the mutation

business_unit_obj_rel_insert_input

input type for inserting object relation for remote table "business_unit"

Fields:

  • data: business_unit_insert_input!
  • on_conflict: business_unit_on_conflict - upsert condition

business_unit_on_conflict

on_conflict condition type for table "business_unit"

Fields:

  • constraint: business_unit_constraint!
  • update_columns: [business_unit_update_column!]!
  • where: business_unit_bool_exp

business_unit_order_by

Ordering options when selecting data from "business_unit".

Fields:

  • business_unit: business_unit_order_by
  • business_units_aggregate: business_unit_aggregate_order_by
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_order_by
  • businessunit_users_aggregate: businessunit_users_aggregate_order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • parent_business_unit: order_by
  • projects_aggregate: projects_aggregate_order_by
  • spends_aggregate: spends_aggregate_order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by
  • user_groups_aggregate: user_groups_aggregate_order_by

business_unit_pk_columns_input

primary key columns input for table: business_unit

Fields:

  • id: uuid!

business_unit_select_column

select columns of table "business_unit"

Values:

  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • name - column name
  • parent_business_unit - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

business_unit_set_input

input type for updating data in table "business_unit"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: citext
  • parent_business_unit: uuid
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

business_unit_stream_cursor_input

Streaming cursor of the table "business_unit"

Fields:

  • initial_value: business_unit_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

business_unit_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • name: citext
  • parent_business_unit: uuid
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

business_unit_update_column

update columns of table "business_unit"

Values:

  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • name - column name
  • parent_business_unit - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

businessunit_users_aggregate_bool_exp

Fields:

  • count: businessunit_users_aggregate_bool_exp_count

businessunit_users_aggregate_bool_exp_count

Fields:

  • arguments: [businessunit_users_select_column!]
  • distinct: Boolean
  • filter: businessunit_users_bool_exp
  • predicate: Int_comparison_exp!

businessunit_users_aggregate_fields

aggregate fields of "businessunit_users"

Fields:

  • count: Int!
  • max: businessunit_users_max_fields
  • min: businessunit_users_min_fields

businessunit_users_aggregate_order_by

order by aggregate values of table "businessunit_users"

Fields:

  • count: order_by
  • max: businessunit_users_max_order_by
  • min: businessunit_users_min_order_by

businessunit_users_arr_rel_insert_input

input type for inserting array relation for remote table "businessunit_users"

Fields:

  • data: [businessunit_users_insert_input!]!
  • on_conflict: businessunit_users_on_conflict - upsert condition

businessunit_users_bool_exp

Boolean expression to filter rows from the table "businessunit_users". All fields are combined with a logical 'AND'.

Fields:

  • _and: [businessunit_users_bool_exp!]
  • _not: businessunit_users_bool_exp
  • _or: [businessunit_users_bool_exp!]
  • businessUnitByBusinessUnit: business_unit_bool_exp
  • business_unit: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user: uuid_comparison_exp
  • userByUser: users_bool_exp

businessunit_users_constraint

unique or primary key constraints on table "businessunit_users"

Values:

  • businessunit_users_pkey - unique or primary key constraint on columns "id"
  • businessunit_users_user_business_unit_key - unique or primary key constraint on columns "business_unit", "user"

businessunit_users_insert_input

input type for inserting data into table "businessunit_users"

Fields:

  • businessUnitByBusinessUnit: business_unit_obj_rel_insert_input
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • user: uuid
  • userByUser: users_obj_rel_insert_input

businessunit_users_max_fields

aggregate max on columns

Fields:

  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • user: uuid

businessunit_users_max_order_by

order by max() on columns of table "businessunit_users"

Fields:

  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • updated_at: order_by
  • user: order_by

businessunit_users_min_fields

aggregate min on columns

Fields:

  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • user: uuid

businessunit_users_min_order_by

order by min() on columns of table "businessunit_users"

Fields:

  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • updated_at: order_by
  • user: order_by

businessunit_users_mutation_response

response of any mutation on the table "businessunit_users"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [businessunit_users!]! - data from the rows affected by the mutation

businessunit_users_on_conflict

on_conflict condition type for table "businessunit_users"

Fields:

  • constraint: businessunit_users_constraint!
  • update_columns: [businessunit_users_update_column!]!
  • where: businessunit_users_bool_exp

businessunit_users_order_by

Ordering options when selecting data from "businessunit_users".

Fields:

  • businessUnitByBusinessUnit: business_unit_order_by
  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • updated_at: order_by
  • user: order_by
  • userByUser: users_order_by

businessunit_users_pk_columns_input

primary key columns input for table: businessunit_users

Fields:

  • id: uuid!

businessunit_users_select_column

select columns of table "businessunit_users"

Values:

  • business_unit - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • updated_at - column name
  • user - column name

businessunit_users_set_input

input type for updating data in table "businessunit_users"

Fields:

  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • user: uuid

businessunit_users_stream_cursor_input

Streaming cursor of the table "businessunit_users"

Fields:

  • initial_value: businessunit_users_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

businessunit_users_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • updated_at: timestamp
  • user: uuid

businessunit_users_update_column

update columns of table "businessunit_users"

Values:

  • business_unit - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • updated_at - column name
  • user - column name

project_accounts_aggregate_bool_exp

Fields:

  • avg: project_accounts_aggregate_bool_exp_avg
  • corr: project_accounts_aggregate_bool_exp_corr
  • count: project_accounts_aggregate_bool_exp_count
  • covar_samp: project_accounts_aggregate_bool_exp_covar_samp
  • max: project_accounts_aggregate_bool_exp_max
  • min: project_accounts_aggregate_bool_exp_min
  • stddev_samp: project_accounts_aggregate_bool_exp_stddev_samp
  • sum: project_accounts_aggregate_bool_exp_sum
  • var_samp: project_accounts_aggregate_bool_exp_var_samp

project_accounts_aggregate_bool_exp_count

Fields:

  • arguments: [project_accounts_select_column!]
  • distinct: Boolean
  • filter: project_accounts_bool_exp
  • predicate: Int_comparison_exp!

project_accounts_aggregate_fields

aggregate fields of "project_accounts"

Fields:

  • avg: project_accounts_avg_fields
  • count: Int!
  • max: project_accounts_max_fields
  • min: project_accounts_min_fields
  • stddev: project_accounts_stddev_fields
  • stddev_pop: project_accounts_stddev_pop_fields
  • stddev_samp: project_accounts_stddev_samp_fields
  • sum: project_accounts_sum_fields
  • var_pop: project_accounts_var_pop_fields
  • var_samp: project_accounts_var_samp_fields
  • variance: project_accounts_variance_fields

project_accounts_aggregate_order_by

order by aggregate values of table "project_accounts"

Fields:

  • avg: project_accounts_avg_order_by
  • count: order_by
  • max: project_accounts_max_order_by
  • min: project_accounts_min_order_by
  • stddev: project_accounts_stddev_order_by
  • stddev_pop: project_accounts_stddev_pop_order_by
  • stddev_samp: project_accounts_stddev_samp_order_by
  • sum: project_accounts_sum_order_by
  • var_pop: project_accounts_var_pop_order_by
  • var_samp: project_accounts_var_samp_order_by
  • variance: project_accounts_variance_order_by

project_accounts_arr_rel_insert_input

input type for inserting array relation for remote table "project_accounts"

Fields:

  • data: [project_accounts_insert_input!]!
  • on_conflict: project_accounts_on_conflict - upsert condition

project_accounts_avg_fields

aggregate avg on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_avg_order_by

order by avg() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_bool_exp

Boolean expression to filter rows from the table "project_accounts". All fields are combined with a logical 'AND'.

Fields:

  • _and: [project_accounts_bool_exp!]
  • _not: project_accounts_bool_exp
  • _or: [project_accounts_bool_exp!]
  • account_id: uuid_comparison_exp
  • allocation_end: timestamp_comparison_exp
  • allocation_pct: float8_comparison_exp
  • allocation_start: timestamp_comparison_exp
  • budget: float8_comparison_exp
  • cloud_accountById: cloud_accounts_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • projectById: projects_bool_exp
  • project_cloud_resources: project_cloud_resources_bool_exp
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate_bool_exp
  • project_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

project_accounts_constraint

unique or primary key constraints on table "project_accounts"

Values:

  • project_accounts_pkey - unique or primary key constraint on columns "id"
  • project_accounts_project_id_account_id_key - unique or primary key constraint on columns "project_id", "account_id"

project_accounts_inc_input

input type for incrementing numeric columns in table "project_accounts"

Fields:

  • allocation_pct: float8
  • budget: float8

project_accounts_insert_input

input type for inserting data into table "project_accounts"

Fields:

  • account_id: uuid
  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_accountById: cloud_accounts_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • projectById: projects_obj_rel_insert_input
  • project_cloud_resources: project_cloud_resources_arr_rel_insert_input
  • project_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_accounts_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_accounts_max_order_by

order by max() on columns of table "project_accounts"

Fields:

  • account_id: order_by
  • allocation_end: order_by
  • allocation_pct: order_by
  • allocation_start: order_by
  • budget: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project_id: order_by
  • updated_at: order_by
  • updated_by: order_by

project_accounts_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_accounts_min_order_by

order by min() on columns of table "project_accounts"

Fields:

  • account_id: order_by
  • allocation_end: order_by
  • allocation_pct: order_by
  • allocation_start: order_by
  • budget: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project_id: order_by
  • updated_at: order_by
  • updated_by: order_by

project_accounts_mutation_response

response of any mutation on the table "project_accounts"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [project_accounts!]! - data from the rows affected by the mutation

project_accounts_obj_rel_insert_input

input type for inserting object relation for remote table "project_accounts"

Fields:

  • data: project_accounts_insert_input!
  • on_conflict: project_accounts_on_conflict - upsert condition

project_accounts_on_conflict

on_conflict condition type for table "project_accounts"

Fields:

  • constraint: project_accounts_constraint!
  • update_columns: [project_accounts_update_column!]!
  • where: project_accounts_bool_exp

project_accounts_order_by

Ordering options when selecting data from "project_accounts".

Fields:

  • account_id: order_by
  • allocation_end: order_by
  • allocation_pct: order_by
  • allocation_start: order_by
  • budget: order_by
  • cloud_accountById: cloud_accounts_order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • projectById: projects_order_by
  • project_cloud_resources_aggregate: project_cloud_resources_aggregate_order_by
  • project_id: order_by
  • updated_at: order_by
  • updated_by: order_by

project_accounts_pk_columns_input

primary key columns input for table: project_accounts

Fields:

  • id: uuid!

project_accounts_select_column

select columns of table "project_accounts"

Values:

  • account_id - column name
  • allocation_end - column name
  • allocation_pct - column name
  • allocation_start - column name
  • budget - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • project_id - column name
  • updated_at - column name
  • updated_by - column name

project_accounts_set_input

input type for updating data in table "project_accounts"

Fields:

  • account_id: uuid
  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_accounts_stddev_fields

aggregate stddev on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_stddev_order_by

order by stddev() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_stddev_pop_order_by

order by stddev_pop() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_stddev_samp_order_by

order by stddev_samp() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_stream_cursor_input

Streaming cursor of the table "project_accounts"

Fields:

  • initial_value: project_accounts_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

project_accounts_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_accounts_sum_fields

aggregate sum on columns

Fields:

  • allocation_pct: float8
  • budget: float8

project_accounts_sum_order_by

order by sum() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_update_column

update columns of table "project_accounts"

Values:

  • account_id - column name
  • allocation_end - column name
  • allocation_pct - column name
  • allocation_start - column name
  • budget - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • project_id - column name
  • updated_at - column name
  • updated_by - column name

project_accounts_var_pop_fields

aggregate var_pop on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_var_pop_order_by

order by var_pop() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_var_samp_fields

aggregate var_samp on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_var_samp_order_by

order by var_samp() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_accounts_variance_fields

aggregate variance on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_accounts_variance_order_by

order by variance() on columns of table "project_accounts"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_category_type_aggregate_fields

aggregate fields of "project_category_type"

Fields:

  • count: Int!
  • max: project_category_type_max_fields
  • min: project_category_type_min_fields

project_category_type_bool_exp

Boolean expression to filter rows from the table "project_category_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [project_category_type_bool_exp!]
  • _not: project_category_type_bool_exp
  • _or: [project_category_type_bool_exp!]
  • projects: projects_bool_exp
  • projects_aggregate: projects_aggregate_bool_exp
  • value: String_comparison_exp

project_category_type_constraint

unique or primary key constraints on table "project_category_type"

Values:

  • project_category_type_pkey - unique or primary key constraint on columns "value"

project_category_type_insert_input

input type for inserting data into table "project_category_type"

Fields:

  • projects: projects_arr_rel_insert_input
  • value: String

project_category_type_max_fields

aggregate max on columns

Fields:

  • value: String

project_category_type_min_fields

aggregate min on columns

Fields:

  • value: String

project_category_type_mutation_response

response of any mutation on the table "project_category_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [project_category_type!]! - data from the rows affected by the mutation

project_category_type_obj_rel_insert_input

input type for inserting object relation for remote table "project_category_type"

Fields:

  • data: project_category_type_insert_input!
  • on_conflict: project_category_type_on_conflict - upsert condition

project_category_type_on_conflict

on_conflict condition type for table "project_category_type"

Fields:

  • constraint: project_category_type_constraint!
  • update_columns: [project_category_type_update_column!]!
  • where: project_category_type_bool_exp

project_category_type_order_by

Ordering options when selecting data from "project_category_type".

Fields:

  • projects_aggregate: projects_aggregate_order_by
  • value: order_by

project_category_type_pk_columns_input

primary key columns input for table: project_category_type

Fields:

  • value: String!

project_category_type_select_column

select columns of table "project_category_type"

Values:

  • value - column name

project_category_type_set_input

input type for updating data in table "project_category_type"

Fields:

  • value: String

project_category_type_stream_cursor_input

Streaming cursor of the table "project_category_type"

Fields:

  • initial_value: project_category_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

project_category_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

project_category_type_update_column

update columns of table "project_category_type"

Values:

  • value - column name

project_cloud_resources_aggregate_bool_exp

Fields:

  • avg: project_cloud_resources_aggregate_bool_exp_avg
  • corr: project_cloud_resources_aggregate_bool_exp_corr
  • count: project_cloud_resources_aggregate_bool_exp_count
  • covar_samp: project_cloud_resources_aggregate_bool_exp_covar_samp
  • max: project_cloud_resources_aggregate_bool_exp_max
  • min: project_cloud_resources_aggregate_bool_exp_min
  • stddev_samp: project_cloud_resources_aggregate_bool_exp_stddev_samp
  • sum: project_cloud_resources_aggregate_bool_exp_sum
  • var_samp: project_cloud_resources_aggregate_bool_exp_var_samp

project_cloud_resources_aggregate_bool_exp_count

Fields:

  • arguments: [project_cloud_resources_select_column!]
  • distinct: Boolean
  • filter: project_cloud_resources_bool_exp
  • predicate: Int_comparison_exp!

project_cloud_resources_aggregate_fields

aggregate fields of "project_cloud_resources"

Fields:

  • avg: project_cloud_resources_avg_fields
  • count: Int!
  • max: project_cloud_resources_max_fields
  • min: project_cloud_resources_min_fields
  • stddev: project_cloud_resources_stddev_fields
  • stddev_pop: project_cloud_resources_stddev_pop_fields
  • stddev_samp: project_cloud_resources_stddev_samp_fields
  • sum: project_cloud_resources_sum_fields
  • var_pop: project_cloud_resources_var_pop_fields
  • var_samp: project_cloud_resources_var_samp_fields
  • variance: project_cloud_resources_variance_fields

project_cloud_resources_aggregate_order_by

order by aggregate values of table "project_cloud_resources"

Fields:

  • avg: project_cloud_resources_avg_order_by
  • count: order_by
  • max: project_cloud_resources_max_order_by
  • min: project_cloud_resources_min_order_by
  • stddev: project_cloud_resources_stddev_order_by
  • stddev_pop: project_cloud_resources_stddev_pop_order_by
  • stddev_samp: project_cloud_resources_stddev_samp_order_by
  • sum: project_cloud_resources_sum_order_by
  • var_pop: project_cloud_resources_var_pop_order_by
  • var_samp: project_cloud_resources_var_samp_order_by
  • variance: project_cloud_resources_variance_order_by

project_cloud_resources_arr_rel_insert_input

input type for inserting array relation for remote table "project_cloud_resources"

Fields:

  • data: [project_cloud_resources_insert_input!]!
  • on_conflict: project_cloud_resources_on_conflict - upsert condition

project_cloud_resources_avg_fields

aggregate avg on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_avg_order_by

order by avg() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_bool_exp

Boolean expression to filter rows from the table "project_cloud_resources". All fields are combined with a logical 'AND'.

Fields:

  • _and: [project_cloud_resources_bool_exp!]
  • _not: project_cloud_resources_bool_exp
  • _or: [project_cloud_resources_bool_exp!]
  • allocation_end: timestamp_comparison_exp
  • allocation_pct: float8_comparison_exp
  • allocation_start: timestamp_comparison_exp
  • budget: float8_comparison_exp
  • cloud_resource_id: uuid_comparison_exp
  • cloud_resourse: cloud_resourses_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • project_account: project_accounts_bool_exp
  • project_account_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

project_cloud_resources_constraint

unique or primary key constraints on table "project_cloud_resources"

Values:

  • project_cloud_resources_pkey - unique or primary key constraint on columns "id"
  • project_cloud_resources_project_account_id_cloud_resource_i_key - unique or primary key constraint on columns "project_account_id", "cloud_resource_id"

project_cloud_resources_inc_input

input type for incrementing numeric columns in table "project_cloud_resources"

Fields:

  • allocation_pct: float8
  • budget: float8

project_cloud_resources_insert_input

input type for inserting data into table "project_cloud_resources"

Fields:

  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_resource_id: uuid
  • cloud_resourse: cloud_resourses_obj_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_account: project_accounts_obj_rel_insert_input
  • project_account_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_cloud_resources_max_fields

aggregate max on columns

Fields:

  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_resource_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_account_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_cloud_resources_max_order_by

order by max() on columns of table "project_cloud_resources"

Fields:

  • allocation_end: order_by
  • allocation_pct: order_by
  • allocation_start: order_by
  • budget: order_by
  • cloud_resource_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project_account_id: order_by
  • updated_at: order_by
  • updated_by: order_by

project_cloud_resources_min_fields

aggregate min on columns

Fields:

  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_resource_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_account_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_cloud_resources_min_order_by

order by min() on columns of table "project_cloud_resources"

Fields:

  • allocation_end: order_by
  • allocation_pct: order_by
  • allocation_start: order_by
  • budget: order_by
  • cloud_resource_id: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project_account_id: order_by
  • updated_at: order_by
  • updated_by: order_by

project_cloud_resources_mutation_response

response of any mutation on the table "project_cloud_resources"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [project_cloud_resources!]! - data from the rows affected by the mutation

project_cloud_resources_on_conflict

on_conflict condition type for table "project_cloud_resources"

Fields:

  • constraint: project_cloud_resources_constraint!
  • update_columns: [project_cloud_resources_update_column!]!
  • where: project_cloud_resources_bool_exp

project_cloud_resources_order_by

Ordering options when selecting data from "project_cloud_resources".

Fields:

  • allocation_end: order_by
  • allocation_pct: order_by
  • allocation_start: order_by
  • budget: order_by
  • cloud_resource_id: order_by
  • cloud_resourse: cloud_resourses_order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project_account: project_accounts_order_by
  • project_account_id: order_by
  • updated_at: order_by
  • updated_by: order_by

project_cloud_resources_pk_columns_input

primary key columns input for table: project_cloud_resources

Fields:

  • id: uuid!

project_cloud_resources_select_column

select columns of table "project_cloud_resources"

Values:

  • allocation_end - column name
  • allocation_pct - column name
  • allocation_start - column name
  • budget - column name
  • cloud_resource_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • project_account_id - column name
  • updated_at - column name
  • updated_by - column name

project_cloud_resources_set_input

input type for updating data in table "project_cloud_resources"

Fields:

  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_resource_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_account_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_cloud_resources_stddev_fields

aggregate stddev on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_stddev_order_by

order by stddev() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_stddev_pop_order_by

order by stddev_pop() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_stddev_samp_order_by

order by stddev_samp() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_stream_cursor_input

Streaming cursor of the table "project_cloud_resources"

Fields:

  • initial_value: project_cloud_resources_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

project_cloud_resources_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • allocation_end: timestamp
  • allocation_pct: float8
  • allocation_start: timestamp
  • budget: float8
  • cloud_resource_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project_account_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

project_cloud_resources_sum_fields

aggregate sum on columns

Fields:

  • allocation_pct: float8
  • budget: float8

project_cloud_resources_sum_order_by

order by sum() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_update_column

update columns of table "project_cloud_resources"

Values:

  • allocation_end - column name
  • allocation_pct - column name
  • allocation_start - column name
  • budget - column name
  • cloud_resource_id - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • project_account_id - column name
  • updated_at - column name
  • updated_by - column name

project_cloud_resources_var_pop_fields

aggregate var_pop on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_var_pop_order_by

order by var_pop() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_var_samp_fields

aggregate var_samp on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_var_samp_order_by

order by var_samp() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_cloud_resources_variance_fields

aggregate variance on columns

Fields:

  • allocation_pct: Float
  • budget: Float

project_cloud_resources_variance_order_by

order by variance() on columns of table "project_cloud_resources"

Fields:

  • allocation_pct: order_by
  • budget: order_by

project_fundings_aggregate_bool_exp

Fields:

  • avg: project_fundings_aggregate_bool_exp_avg
  • corr: project_fundings_aggregate_bool_exp_corr
  • count: project_fundings_aggregate_bool_exp_count
  • covar_samp: project_fundings_aggregate_bool_exp_covar_samp
  • max: project_fundings_aggregate_bool_exp_max
  • min: project_fundings_aggregate_bool_exp_min
  • stddev_samp: project_fundings_aggregate_bool_exp_stddev_samp
  • sum: project_fundings_aggregate_bool_exp_sum
  • var_samp: project_fundings_aggregate_bool_exp_var_samp

project_fundings_aggregate_bool_exp_count

Fields:

  • arguments: [project_fundings_select_column!]
  • distinct: Boolean
  • filter: project_fundings_bool_exp
  • predicate: Int_comparison_exp!

project_fundings_aggregate_fields

aggregate fields of "project_fundings"

Fields:

  • avg: project_fundings_avg_fields
  • count: Int!
  • max: project_fundings_max_fields
  • min: project_fundings_min_fields
  • stddev: project_fundings_stddev_fields
  • stddev_pop: project_fundings_stddev_pop_fields
  • stddev_samp: project_fundings_stddev_samp_fields
  • sum: project_fundings_sum_fields
  • var_pop: project_fundings_var_pop_fields
  • var_samp: project_fundings_var_samp_fields
  • variance: project_fundings_variance_fields

project_fundings_aggregate_order_by

order by aggregate values of table "project_fundings"

Fields:

  • avg: project_fundings_avg_order_by
  • count: order_by
  • max: project_fundings_max_order_by
  • min: project_fundings_min_order_by
  • stddev: project_fundings_stddev_order_by
  • stddev_pop: project_fundings_stddev_pop_order_by
  • stddev_samp: project_fundings_stddev_samp_order_by
  • sum: project_fundings_sum_order_by
  • var_pop: project_fundings_var_pop_order_by
  • var_samp: project_fundings_var_samp_order_by
  • variance: project_fundings_variance_order_by

project_fundings_arr_rel_insert_input

input type for inserting array relation for remote table "project_fundings"

Fields:

  • data: [project_fundings_insert_input!]!
  • on_conflict: project_fundings_on_conflict - upsert condition

project_fundings_avg_fields

aggregate avg on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_avg_order_by

order by avg() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_bool_exp

Boolean expression to filter rows from the table "project_fundings". All fields are combined with a logical 'AND'.

Fields:

  • _and: [project_fundings_bool_exp!]
  • _not: project_fundings_bool_exp
  • _or: [project_fundings_bool_exp!]
  • amount: float8_comparison_exp
  • businessunitFundingByBusinessunitFunding: businessunit_funding_bool_exp
  • businessunit_funding: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • end_date: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • planned_amount: float8_comparison_exp
  • project: uuid_comparison_exp
  • projectByProject: projects_bool_exp
  • start_date: timestamp_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp

project_fundings_constraint

unique or primary key constraints on table "project_fundings"

Values:

  • project_fundings_businessunit_funding_project_key - unique or primary key constraint on columns "businessunit_funding", "project"
  • project_fundings_pkey - unique or primary key constraint on columns "id"

project_fundings_inc_input

input type for incrementing numeric columns in table "project_fundings"

Fields:

  • amount: float8
  • planned_amount: float8

project_fundings_insert_input

input type for inserting data into table "project_fundings"

Fields:

  • amount: float8
  • businessunitFundingByBusinessunitFunding: businessunit_funding_obj_rel_insert_input
  • businessunit_funding: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • id: uuid
  • planned_amount: float8
  • project: uuid
  • projectByProject: projects_obj_rel_insert_input
  • start_date: timestamp
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input

project_fundings_max_fields

aggregate max on columns

Fields:

  • amount: float8
  • businessunit_funding: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • id: uuid
  • planned_amount: float8
  • project: uuid
  • start_date: timestamp
  • updated_at: timestamp
  • updated_by: uuid

project_fundings_max_order_by

order by max() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • businessunit_funding: order_by
  • created_at: order_by
  • created_by: order_by
  • end_date: order_by
  • id: order_by
  • planned_amount: order_by
  • project: order_by
  • start_date: order_by
  • updated_at: order_by
  • updated_by: order_by

project_fundings_min_fields

aggregate min on columns

Fields:

  • amount: float8
  • businessunit_funding: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • id: uuid
  • planned_amount: float8
  • project: uuid
  • start_date: timestamp
  • updated_at: timestamp
  • updated_by: uuid

project_fundings_min_order_by

order by min() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • businessunit_funding: order_by
  • created_at: order_by
  • created_by: order_by
  • end_date: order_by
  • id: order_by
  • planned_amount: order_by
  • project: order_by
  • start_date: order_by
  • updated_at: order_by
  • updated_by: order_by

project_fundings_mutation_response

response of any mutation on the table "project_fundings"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [project_fundings!]! - data from the rows affected by the mutation

project_fundings_on_conflict

on_conflict condition type for table "project_fundings"

Fields:

  • constraint: project_fundings_constraint!
  • update_columns: [project_fundings_update_column!]!
  • where: project_fundings_bool_exp

project_fundings_order_by

Ordering options when selecting data from "project_fundings".

Fields:

  • amount: order_by
  • businessunitFundingByBusinessunitFunding: businessunit_funding_order_by
  • businessunit_funding: order_by
  • created_at: order_by
  • created_by: order_by
  • end_date: order_by
  • id: order_by
  • planned_amount: order_by
  • project: order_by
  • projectByProject: projects_order_by
  • start_date: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by

project_fundings_pk_columns_input

primary key columns input for table: project_fundings

Fields:

  • id: uuid!

project_fundings_select_column

select columns of table "project_fundings"

Values:

  • amount - column name
  • businessunit_funding - column name
  • created_at - column name
  • created_by - column name
  • end_date - column name
  • id - column name
  • planned_amount - column name
  • project - column name
  • start_date - column name
  • updated_at - column name
  • updated_by - column name

project_fundings_set_input

input type for updating data in table "project_fundings"

Fields:

  • amount: float8
  • businessunit_funding: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • id: uuid
  • planned_amount: float8
  • project: uuid
  • start_date: timestamp
  • updated_at: timestamp
  • updated_by: uuid

project_fundings_stddev_fields

aggregate stddev on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_stddev_order_by

order by stddev() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_stddev_pop_order_by

order by stddev_pop() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_stddev_samp_order_by

order by stddev_samp() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_stream_cursor_input

Streaming cursor of the table "project_fundings"

Fields:

  • initial_value: project_fundings_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

project_fundings_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • amount: float8
  • businessunit_funding: uuid
  • created_at: timestamp
  • created_by: uuid
  • end_date: timestamp
  • id: uuid
  • planned_amount: float8
  • project: uuid
  • start_date: timestamp
  • updated_at: timestamp
  • updated_by: uuid

project_fundings_sum_fields

aggregate sum on columns

Fields:

  • amount: float8
  • planned_amount: float8

project_fundings_sum_order_by

order by sum() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_update_column

update columns of table "project_fundings"

Values:

  • amount - column name
  • businessunit_funding - column name
  • created_at - column name
  • created_by - column name
  • end_date - column name
  • id - column name
  • planned_amount - column name
  • project - column name
  • start_date - column name
  • updated_at - column name
  • updated_by - column name

project_fundings_var_pop_fields

aggregate var_pop on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_var_pop_order_by

order by var_pop() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_var_samp_fields

aggregate var_samp on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_var_samp_order_by

order by var_samp() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_fundings_variance_fields

aggregate variance on columns

Fields:

  • amount: Float
  • planned_amount: Float

project_fundings_variance_order_by

order by variance() on columns of table "project_fundings"

Fields:

  • amount: order_by
  • planned_amount: order_by

project_users_aggregate_bool_exp

Fields:

  • count: project_users_aggregate_bool_exp_count

project_users_aggregate_bool_exp_count

Fields:

  • arguments: [project_users_select_column!]
  • distinct: Boolean
  • filter: project_users_bool_exp
  • predicate: Int_comparison_exp!

project_users_aggregate_fields

aggregate fields of "project_users"

Fields:

  • count: Int!
  • max: project_users_max_fields
  • min: project_users_min_fields

project_users_aggregate_order_by

order by aggregate values of table "project_users"

Fields:

  • count: order_by
  • max: project_users_max_order_by
  • min: project_users_min_order_by

project_users_arr_rel_insert_input

input type for inserting array relation for remote table "project_users"

Fields:

  • data: [project_users_insert_input!]!
  • on_conflict: project_users_on_conflict - upsert condition

project_users_bool_exp

Boolean expression to filter rows from the table "project_users". All fields are combined with a logical 'AND'.

Fields:

  • _and: [project_users_bool_exp!]
  • _not: project_users_bool_exp
  • _or: [project_users_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • project: uuid_comparison_exp
  • projectByProject: projects_bool_exp
  • updated_at: timestamp_comparison_exp
  • user: uuid_comparison_exp
  • userByCreatedBy: users_bool_exp
  • userByUser: users_bool_exp

project_users_constraint

unique or primary key constraints on table "project_users"

Values:

  • project_users_pkey - unique or primary key constraint on columns "id"
  • project_users_user_project_key - unique or primary key constraint on columns "project", "user"

project_users_insert_input

input type for inserting data into table "project_users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project: uuid
  • projectByProject: projects_obj_rel_insert_input
  • updated_at: timestamp
  • user: uuid
  • userByCreatedBy: users_obj_rel_insert_input
  • userByUser: users_obj_rel_insert_input

project_users_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project: uuid
  • updated_at: timestamp
  • user: uuid

project_users_max_order_by

order by max() on columns of table "project_users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project: order_by
  • updated_at: order_by
  • user: order_by

project_users_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project: uuid
  • updated_at: timestamp
  • user: uuid

project_users_min_order_by

order by min() on columns of table "project_users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project: order_by
  • updated_at: order_by
  • user: order_by

project_users_mutation_response

response of any mutation on the table "project_users"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [project_users!]! - data from the rows affected by the mutation

project_users_on_conflict

on_conflict condition type for table "project_users"

Fields:

  • constraint: project_users_constraint!
  • update_columns: [project_users_update_column!]!
  • where: project_users_bool_exp

project_users_order_by

Ordering options when selecting data from "project_users".

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • project: order_by
  • projectByProject: projects_order_by
  • updated_at: order_by
  • user: order_by
  • userByCreatedBy: users_order_by
  • userByUser: users_order_by

project_users_pk_columns_input

primary key columns input for table: project_users

Fields:

  • id: uuid!

project_users_select_column

select columns of table "project_users"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • project - column name
  • updated_at - column name
  • user - column name

project_users_set_input

input type for updating data in table "project_users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project: uuid
  • updated_at: timestamp
  • user: uuid

project_users_stream_cursor_input

Streaming cursor of the table "project_users"

Fields:

  • initial_value: project_users_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

project_users_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • project: uuid
  • updated_at: timestamp
  • user: uuid

project_users_update_column

update columns of table "project_users"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • project - column name
  • updated_at - column name
  • user - column name

roles_aggregate_fields

aggregate fields of "roles"

Fields:

  • count: Int!
  • max: roles_max_fields
  • min: roles_min_fields

roles_bool_exp

Boolean expression to filter rows from the table "roles". All fields are combined with a logical 'AND'.

Fields:

  • _and: [roles_bool_exp!]
  • _not: roles_bool_exp
  • _or: [roles_bool_exp!]
  • display_name: String_comparison_exp
  • group_roles: group_roles_bool_exp
  • group_roles_aggregate: group_roles_aggregate_bool_exp
  • user_roles: user_roles_bool_exp
  • user_roles_aggregate: user_roles_aggregate_bool_exp
  • value: citext_comparison_exp

roles_constraint

unique or primary key constraints on table "roles"

Values:

  • roles_pkey - unique or primary key constraint on columns "value"

roles_insert_input

input type for inserting data into table "roles"

Fields:

  • display_name: String
  • group_roles: group_roles_arr_rel_insert_input
  • user_roles: user_roles_arr_rel_insert_input
  • value: citext

roles_max_fields

aggregate max on columns

Fields:

  • display_name: String
  • value: citext

roles_min_fields

aggregate min on columns

Fields:

  • display_name: String
  • value: citext

roles_mutation_response

response of any mutation on the table "roles"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [roles!]! - data from the rows affected by the mutation

roles_obj_rel_insert_input

input type for inserting object relation for remote table "roles"

Fields:

  • data: roles_insert_input!
  • on_conflict: roles_on_conflict - upsert condition

roles_on_conflict

on_conflict condition type for table "roles"

Fields:

  • constraint: roles_constraint!
  • update_columns: [roles_update_column!]!
  • where: roles_bool_exp

roles_order_by

Ordering options when selecting data from "roles".

Fields:

  • display_name: order_by
  • group_roles_aggregate: group_roles_aggregate_order_by
  • user_roles_aggregate: user_roles_aggregate_order_by
  • value: order_by

roles_pk_columns_input

primary key columns input for table: roles

Fields:

  • value: citext!

roles_select_column

select columns of table "roles"

Values:

  • display_name - column name
  • value - column name

roles_set_input

input type for updating data in table "roles"

Fields:

  • display_name: String
  • value: citext

roles_stream_cursor_input

Streaming cursor of the table "roles"

Fields:

  • initial_value: roles_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

roles_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • display_name: String
  • value: citext

roles_update_column

update columns of table "roles"

Values:

  • display_name - column name
  • value - column name

tenant_aggregate_bool_exp

Fields:

  • count: tenant_aggregate_bool_exp_count

tenant_aggregate_bool_exp_count

Fields:

  • arguments: [tenant_select_column!]
  • distinct: Boolean
  • filter: tenant_bool_exp
  • predicate: Int_comparison_exp!

tenant_aggregate_fields

aggregate fields of "tenant"

Fields:

  • count: Int!
  • max: tenant_max_fields
  • min: tenant_min_fields

tenant_aggregate_order_by

order by aggregate values of table "tenant"

Fields:

  • count: order_by
  • max: tenant_max_order_by
  • min: tenant_min_order_by

tenant_arr_rel_insert_input

input type for inserting array relation for remote table "tenant"

Fields:

  • data: [tenant_insert_input!]!
  • on_conflict: tenant_on_conflict - upsert condition

tenant_attrs_aggregate_bool_exp

Fields:

  • count: tenant_attrs_aggregate_bool_exp_count

tenant_attrs_aggregate_bool_exp_count

Fields:

  • arguments: [tenant_attrs_select_column!]
  • distinct: Boolean
  • filter: tenant_attrs_bool_exp
  • predicate: Int_comparison_exp!

tenant_attrs_aggregate_fields

aggregate fields of "tenant_attrs"

Fields:

  • count: Int!
  • max: tenant_attrs_max_fields
  • min: tenant_attrs_min_fields

tenant_attrs_aggregate_order_by

order by aggregate values of table "tenant_attrs"

Fields:

  • count: order_by
  • max: tenant_attrs_max_order_by
  • min: tenant_attrs_min_order_by

tenant_attrs_arr_rel_insert_input

input type for inserting array relation for remote table "tenant_attrs"

Fields:

  • data: [tenant_attrs_insert_input!]!
  • on_conflict: tenant_attrs_on_conflict - upsert condition

tenant_attrs_bool_exp

Boolean expression to filter rows from the table "tenant_attrs". All fields are combined with a logical 'AND'.

Fields:

  • _and: [tenant_attrs_bool_exp!]
  • _not: tenant_attrs_bool_exp
  • _or: [tenant_attrs_bool_exp!]
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • value: String_comparison_exp

tenant_attrs_constraint

unique or primary key constraints on table "tenant_attrs"

Values:

  • tenant_attrs_pkey - unique or primary key constraint on columns "id"
  • tenant_attrs_tenant_id_name_key - unique or primary key constraint on columns "tenant_id", "name"

tenant_attrs_insert_input

input type for inserting data into table "tenant_attrs"

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • value: String

tenant_attrs_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: String

tenant_attrs_max_order_by

order by max() on columns of table "tenant_attrs"

Fields:

  • created_at: order_by
  • id: order_by
  • name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • value: order_by

tenant_attrs_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: String

tenant_attrs_min_order_by

order by min() on columns of table "tenant_attrs"

Fields:

  • created_at: order_by
  • id: order_by
  • name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • value: order_by

tenant_attrs_mutation_response

response of any mutation on the table "tenant_attrs"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [tenant_attrs!]! - data from the rows affected by the mutation

tenant_attrs_on_conflict

on_conflict condition type for table "tenant_attrs"

Fields:

  • constraint: tenant_attrs_constraint!
  • update_columns: [tenant_attrs_update_column!]!
  • where: tenant_attrs_bool_exp

tenant_attrs_order_by

Ordering options when selecting data from "tenant_attrs".

Fields:

  • created_at: order_by
  • id: order_by
  • name: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • value: order_by

tenant_attrs_pk_columns_input

primary key columns input for table: tenant_attrs

Fields:

  • id: uuid!

tenant_attrs_select_column

select columns of table "tenant_attrs"

Values:

  • created_at - column name
  • id - column name
  • name - column name
  • tenant_id - column name
  • updated_at - column name
  • value - column name

tenant_attrs_set_input

input type for updating data in table "tenant_attrs"

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: String

tenant_attrs_stream_cursor_input

Streaming cursor of the table "tenant_attrs"

Fields:

  • initial_value: tenant_attrs_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

tenant_attrs_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • value: String

tenant_attrs_update_column

update columns of table "tenant_attrs"

Values:

  • created_at - column name
  • id - column name
  • name - column name
  • tenant_id - column name
  • updated_at - column name
  • value - column name

tenant_bool_exp

Boolean expression to filter rows from the table "tenant". All fields are combined with a logical 'AND'.

Fields:

  • _and: [tenant_bool_exp!]
  • _not: tenant_bool_exp
  • _or: [tenant_bool_exp!]
  • business_units: business_unit_bool_exp
  • business_units_aggregate: business_unit_aggregate_bool_exp
  • businessunit_funding_sources: businessunit_funding_bool_exp
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_bool_exp
  • cloud_accounts: cloud_accounts_bool_exp
  • cloud_accounts_aggregate: cloud_accounts_aggregate_bool_exp
  • cloud_resourses: cloud_resourses_bool_exp
  • cloud_resourses_aggregate: cloud_resourses_aggregate_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • funding_sources: funding_sources_bool_exp
  • funding_sources_aggregate: funding_sources_aggregate_bool_exp
  • id: uuid_comparison_exp
  • jira_configurations: jira_configurations_bool_exp
  • jira_configurations_aggregate: jira_configurations_aggregate_bool_exp
  • name: citext_comparison_exp
  • notifications: notifications_bool_exp
  • notifications_aggregate: notifications_aggregate_bool_exp
  • projects: projects_bool_exp
  • projects_aggregate: projects_aggregate_bool_exp
  • recommendations: recommendation_bool_exp
  • recommendations_aggregate: recommendation_aggregate_bool_exp
  • spends: spends_bool_exp
  • spends_aggregate: spends_aggregate_bool_exp
  • tenant_attrs: tenant_attrs_bool_exp
  • tenant_attrs_aggregate: tenant_attrs_aggregate_bool_exp
  • tenant_users: tenant_users_bool_exp
  • tenant_users_aggregate: tenant_users_aggregate_bool_exp
  • tickets: tickets_bool_exp
  • tickets_aggregate: tickets_aggregate_bool_exp
  • type: tenant_type_enum_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • user_groups: user_groups_bool_exp
  • user_groups_aggregate: user_groups_aggregate_bool_exp

tenant_constraint

unique or primary key constraints on table "tenant"

Values:

  • tenant_name_created_by_key - unique or primary key constraint on columns "created_by", "name"
  • tenant_pkey - unique or primary key constraint on columns "id"

tenant_insert_input

input type for inserting data into table "tenant"

Fields:

  • business_units: business_unit_arr_rel_insert_input
  • businessunit_funding_sources: businessunit_funding_arr_rel_insert_input
  • cloud_accounts: cloud_accounts_arr_rel_insert_input
  • cloud_resourses: cloud_resourses_arr_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • funding_sources: funding_sources_arr_rel_insert_input
  • id: uuid
  • jira_configurations: jira_configurations_arr_rel_insert_input
  • name: citext
  • notifications: notifications_arr_rel_insert_input
  • projects: projects_arr_rel_insert_input
  • recommendations: recommendation_arr_rel_insert_input
  • spends: spends_arr_rel_insert_input
  • tenant_attrs: tenant_attrs_arr_rel_insert_input
  • tenant_users: tenant_users_arr_rel_insert_input
  • tickets: tickets_arr_rel_insert_input
  • type: tenant_type_enum
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • user_groups: user_groups_arr_rel_insert_input

tenant_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • name: citext
  • updated_at: timestamp
  • updated_by: uuid

tenant_max_order_by

order by max() on columns of table "tenant"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • updated_by: order_by

tenant_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • name: citext
  • updated_at: timestamp
  • updated_by: uuid

tenant_min_order_by

order by min() on columns of table "tenant"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • updated_by: order_by

tenant_mutation_response

response of any mutation on the table "tenant"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [tenant!]! - data from the rows affected by the mutation

tenant_obj_rel_insert_input

input type for inserting object relation for remote table "tenant"

Fields:

  • data: tenant_insert_input!
  • on_conflict: tenant_on_conflict - upsert condition

tenant_on_conflict

on_conflict condition type for table "tenant"

Fields:

  • constraint: tenant_constraint!
  • update_columns: [tenant_update_column!]!
  • where: tenant_bool_exp

tenant_onboarding_aggregate_fields

aggregate fields of "tenant_onboarding"

Fields:

  • count: Int!
  • max: tenant_onboarding_max_fields
  • min: tenant_onboarding_min_fields

tenant_onboarding_bool_exp

Boolean expression to filter rows from the table "tenant_onboarding". All fields are combined with a logical 'AND'.

Fields:

  • _and: [tenant_onboarding_bool_exp!]
  • _not: tenant_onboarding_bool_exp
  • _or: [tenant_onboarding_bool_exp!]
  • contact_phone: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • tenant_name: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user_displayname: String_comparison_exp
  • username: String_comparison_exp
  • verification_status: String_comparison_exp
  • verification_token: String_comparison_exp
  • verification_token_expiration: timestamp_comparison_exp

tenant_onboarding_constraint

unique or primary key constraints on table "tenant_onboarding"

Values:

  • tenant_onboarding_pkey - unique or primary key constraint on columns "id"
  • tenant_onboarding_username_key - unique or primary key constraint on columns "username"
  • tenant_onboarding_verification_token_key - unique or primary key constraint on columns "verification_token"

tenant_onboarding_insert_input

input type for inserting data into table "tenant_onboarding"

Fields:

  • contact_phone: String
  • created_at: timestamp
  • id: uuid
  • tenant_name: String
  • updated_at: timestamp
  • user_displayname: String
  • username: String
  • verification_status: String
  • verification_token: String
  • verification_token_expiration: timestamp

tenant_onboarding_max_fields

aggregate max on columns

Fields:

  • contact_phone: String
  • created_at: timestamp
  • id: uuid
  • tenant_name: String
  • updated_at: timestamp
  • user_displayname: String
  • username: String
  • verification_status: String
  • verification_token: String
  • verification_token_expiration: timestamp

tenant_onboarding_min_fields

aggregate min on columns

Fields:

  • contact_phone: String
  • created_at: timestamp
  • id: uuid
  • tenant_name: String
  • updated_at: timestamp
  • user_displayname: String
  • username: String
  • verification_status: String
  • verification_token: String
  • verification_token_expiration: timestamp

tenant_onboarding_mutation_response

response of any mutation on the table "tenant_onboarding"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [tenant_onboarding!]! - data from the rows affected by the mutation

tenant_onboarding_on_conflict

on_conflict condition type for table "tenant_onboarding"

Fields:

  • constraint: tenant_onboarding_constraint!
  • update_columns: [tenant_onboarding_update_column!]!
  • where: tenant_onboarding_bool_exp

tenant_onboarding_order_by

Ordering options when selecting data from "tenant_onboarding".

Fields:

  • contact_phone: order_by
  • created_at: order_by
  • id: order_by
  • tenant_name: order_by
  • updated_at: order_by
  • user_displayname: order_by
  • username: order_by
  • verification_status: order_by
  • verification_token: order_by
  • verification_token_expiration: order_by

tenant_onboarding_pk_columns_input

primary key columns input for table: tenant_onboarding

Fields:

  • id: uuid!

tenant_onboarding_select_column

select columns of table "tenant_onboarding"

Values:

  • contact_phone - column name
  • created_at - column name
  • id - column name
  • tenant_name - column name
  • updated_at - column name
  • user_displayname - column name
  • username - column name
  • verification_status - column name
  • verification_token - column name
  • verification_token_expiration - column name

tenant_onboarding_set_input

input type for updating data in table "tenant_onboarding"

Fields:

  • contact_phone: String
  • created_at: timestamp
  • id: uuid
  • tenant_name: String
  • updated_at: timestamp
  • user_displayname: String
  • username: String
  • verification_status: String
  • verification_token: String
  • verification_token_expiration: timestamp

tenant_onboarding_stream_cursor_input

Streaming cursor of the table "tenant_onboarding"

Fields:

  • initial_value: tenant_onboarding_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

tenant_onboarding_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • contact_phone: String
  • created_at: timestamp
  • id: uuid
  • tenant_name: String
  • updated_at: timestamp
  • user_displayname: String
  • username: String
  • verification_status: String
  • verification_token: String
  • verification_token_expiration: timestamp

tenant_onboarding_update_column

update columns of table "tenant_onboarding"

Values:

  • contact_phone - column name
  • created_at - column name
  • id - column name
  • tenant_name - column name
  • updated_at - column name
  • user_displayname - column name
  • username - column name
  • verification_status - column name
  • verification_token - column name
  • verification_token_expiration - column name

tenant_order_by

Ordering options when selecting data from "tenant".

Fields:

  • business_units_aggregate: business_unit_aggregate_order_by
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_order_by
  • cloud_accounts_aggregate: cloud_accounts_aggregate_order_by
  • cloud_resourses_aggregate: cloud_resourses_aggregate_order_by
  • created_at: order_by
  • created_by: order_by
  • funding_sources_aggregate: funding_sources_aggregate_order_by
  • id: order_by
  • jira_configurations_aggregate: jira_configurations_aggregate_order_by
  • name: order_by
  • notifications_aggregate: notifications_aggregate_order_by
  • projects_aggregate: projects_aggregate_order_by
  • recommendations_aggregate: recommendation_aggregate_order_by
  • spends_aggregate: spends_aggregate_order_by
  • tenant_attrs_aggregate: tenant_attrs_aggregate_order_by
  • tenant_users_aggregate: tenant_users_aggregate_order_by
  • tickets_aggregate: tickets_aggregate_order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by
  • user_groups_aggregate: user_groups_aggregate_order_by

tenant_pk_columns_input

primary key columns input for table: tenant

Fields:

  • id: uuid!

tenant_select_column

select columns of table "tenant"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • name - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

tenant_set_input

input type for updating data in table "tenant"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • name: citext
  • type: tenant_type_enum
  • updated_at: timestamp
  • updated_by: uuid

tenant_stream_cursor_input

Streaming cursor of the table "tenant"

Fields:

  • initial_value: tenant_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

tenant_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • name: citext
  • type: tenant_type_enum
  • updated_at: timestamp
  • updated_by: uuid

tenant_type_aggregate_fields

aggregate fields of "tenant_type"

Fields:

  • count: Int!
  • max: tenant_type_max_fields
  • min: tenant_type_min_fields

tenant_type_bool_exp

Boolean expression to filter rows from the table "tenant_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [tenant_type_bool_exp!]
  • _not: tenant_type_bool_exp
  • _or: [tenant_type_bool_exp!]
  • tenants: tenant_bool_exp
  • tenants_aggregate: tenant_aggregate_bool_exp
  • value: String_comparison_exp

tenant_type_constraint

unique or primary key constraints on table "tenant_type"

Values:

  • tenant_type_pkey - unique or primary key constraint on columns "value"

tenant_type_insert_input

input type for inserting data into table "tenant_type"

Fields:

  • tenants: tenant_arr_rel_insert_input
  • value: String

tenant_type_max_fields

aggregate max on columns

Fields:

  • value: String

tenant_type_min_fields

aggregate min on columns

Fields:

  • value: String

tenant_type_mutation_response

response of any mutation on the table "tenant_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [tenant_type!]! - data from the rows affected by the mutation

tenant_type_on_conflict

on_conflict condition type for table "tenant_type"

Fields:

  • constraint: tenant_type_constraint!
  • update_columns: [tenant_type_update_column!]!
  • where: tenant_type_bool_exp

tenant_type_order_by

Ordering options when selecting data from "tenant_type".

Fields:

  • tenants_aggregate: tenant_aggregate_order_by
  • value: order_by

tenant_type_pk_columns_input

primary key columns input for table: tenant_type

Fields:

  • value: String!

tenant_type_select_column

select columns of table "tenant_type"

Values:

  • value - column name

tenant_type_set_input

input type for updating data in table "tenant_type"

Fields:

  • value: String

tenant_type_stream_cursor_input

Streaming cursor of the table "tenant_type"

Fields:

  • initial_value: tenant_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

tenant_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

tenant_type_update_column

update columns of table "tenant_type"

Values:

  • value - column name

tenant_update_column

update columns of table "tenant"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • name - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

tenant_users_aggregate_bool_exp

Fields:

  • bool_and: tenant_users_aggregate_bool_exp_bool_and
  • bool_or: tenant_users_aggregate_bool_exp_bool_or
  • count: tenant_users_aggregate_bool_exp_count

tenant_users_aggregate_bool_exp_count

Fields:

  • arguments: [tenant_users_select_column!]
  • distinct: Boolean
  • filter: tenant_users_bool_exp
  • predicate: Int_comparison_exp!

tenant_users_aggregate_fields

aggregate fields of "tenant_users"

Fields:

  • count: Int!
  • max: tenant_users_max_fields
  • min: tenant_users_min_fields

tenant_users_aggregate_order_by

order by aggregate values of table "tenant_users"

Fields:

  • count: order_by
  • max: tenant_users_max_order_by
  • min: tenant_users_min_order_by

tenant_users_arr_rel_insert_input

input type for inserting array relation for remote table "tenant_users"

Fields:

  • data: [tenant_users_insert_input!]!
  • on_conflict: tenant_users_on_conflict - upsert condition

tenant_users_bool_exp

Boolean expression to filter rows from the table "tenant_users". All fields are combined with a logical 'AND'.

Fields:

  • _and: [tenant_users_bool_exp!]
  • _not: tenant_users_bool_exp
  • _or: [tenant_users_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • is_default: Boolean_comparison_exp
  • is_owner: Boolean_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: uuid_comparison_exp
  • userByCreatedBy: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • userByUser: users_bool_exp

tenant_users_constraint

unique or primary key constraints on table "tenant_users"

Values:

  • tenant_users_pkey - unique or primary key constraint on columns "id"
  • tenant_users_tenant_user_key - unique or primary key constraint on columns "tenant", "user"

tenant_users_insert_input

input type for inserting data into table "tenant_users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_default: Boolean
  • is_owner: Boolean
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid
  • userByCreatedBy: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • userByUser: users_obj_rel_insert_input

tenant_users_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

tenant_users_max_order_by

order by max() on columns of table "tenant_users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: order_by

tenant_users_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

tenant_users_min_order_by

order by min() on columns of table "tenant_users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: order_by

tenant_users_mutation_response

response of any mutation on the table "tenant_users"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [tenant_users!]! - data from the rows affected by the mutation

tenant_users_on_conflict

on_conflict condition type for table "tenant_users"

Fields:

  • constraint: tenant_users_constraint!
  • update_columns: [tenant_users_update_column!]!
  • where: tenant_users_bool_exp

tenant_users_order_by

Ordering options when selecting data from "tenant_users".

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • is_default: order_by
  • is_owner: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: order_by
  • userByCreatedBy: users_order_by
  • userByUpdatedBy: users_order_by
  • userByUser: users_order_by

tenant_users_pk_columns_input

primary key columns input for table: tenant_users

Fields:

  • id: uuid!

tenant_users_select_column

select columns of table "tenant_users"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • is_default - column name
  • is_owner - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name
  • user - column name

tenant_users_set_input

input type for updating data in table "tenant_users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_default: Boolean
  • is_owner: Boolean
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

tenant_users_stream_cursor_input

Streaming cursor of the table "tenant_users"

Fields:

  • initial_value: tenant_users_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

tenant_users_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_default: Boolean
  • is_owner: Boolean
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

tenant_users_update_column

update columns of table "tenant_users"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • is_default - column name
  • is_owner - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name
  • user - column name

user_attrs_aggregate_bool_exp

Fields:

  • count: user_attrs_aggregate_bool_exp_count

user_attrs_aggregate_bool_exp_count

Fields:

  • arguments: [user_attrs_select_column!]
  • distinct: Boolean
  • filter: user_attrs_bool_exp
  • predicate: Int_comparison_exp!

user_attrs_aggregate_fields

aggregate fields of "user_attrs"

Fields:

  • count: Int!
  • max: user_attrs_max_fields
  • min: user_attrs_min_fields

user_attrs_aggregate_order_by

order by aggregate values of table "user_attrs"

Fields:

  • count: order_by
  • max: user_attrs_max_order_by
  • min: user_attrs_min_order_by

user_attrs_arr_rel_insert_input

input type for inserting array relation for remote table "user_attrs"

Fields:

  • data: [user_attrs_insert_input!]!
  • on_conflict: user_attrs_on_conflict - upsert condition

user_attrs_bool_exp

Boolean expression to filter rows from the table "user_attrs". All fields are combined with a logical 'AND'.

Fields:

  • _and: [user_attrs_bool_exp!]
  • _not: user_attrs_bool_exp
  • _or: [user_attrs_bool_exp!]
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user: uuid_comparison_exp
  • userByUser: users_bool_exp
  • value: String_comparison_exp

user_attrs_constraint

unique or primary key constraints on table "user_attrs"

Values:

  • user_attrs_pkey - unique or primary key constraint on columns "id"

user_attrs_insert_input

input type for inserting data into table "user_attrs"

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • user: uuid
  • userByUser: users_obj_rel_insert_input
  • value: String

user_attrs_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • user: uuid
  • value: String

user_attrs_max_order_by

order by max() on columns of table "user_attrs"

Fields:

  • created_at: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • user: order_by
  • value: order_by

user_attrs_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • user: uuid
  • value: String

user_attrs_min_order_by

order by min() on columns of table "user_attrs"

Fields:

  • created_at: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • user: order_by
  • value: order_by

user_attrs_mutation_response

response of any mutation on the table "user_attrs"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [user_attrs!]! - data from the rows affected by the mutation

user_attrs_on_conflict

on_conflict condition type for table "user_attrs"

Fields:

  • constraint: user_attrs_constraint!
  • update_columns: [user_attrs_update_column!]!
  • where: user_attrs_bool_exp

user_attrs_order_by

Ordering options when selecting data from "user_attrs".

Fields:

  • created_at: order_by
  • id: order_by
  • name: order_by
  • updated_at: order_by
  • user: order_by
  • userByUser: users_order_by
  • value: order_by

user_attrs_pk_columns_input

primary key columns input for table: user_attrs

Fields:

  • id: uuid!

user_attrs_select_column

select columns of table "user_attrs"

Values:

  • created_at - column name
  • id - column name
  • name - column name
  • updated_at - column name
  • user - column name
  • value - column name

user_attrs_set_input

input type for updating data in table "user_attrs"

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • user: uuid
  • value: String

user_attrs_stream_cursor_input

Streaming cursor of the table "user_attrs"

Fields:

  • initial_value: user_attrs_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

user_attrs_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • id: uuid
  • name: String
  • updated_at: timestamp
  • user: uuid
  • value: String

user_attrs_update_column

update columns of table "user_attrs"

Values:

  • created_at - column name
  • id - column name
  • name - column name
  • updated_at - column name
  • user - column name
  • value - column name

user_auths_aggregate_bool_exp

Fields:

  • count: user_auths_aggregate_bool_exp_count

user_auths_aggregate_bool_exp_count

Fields:

  • arguments: [user_auths_select_column!]
  • distinct: Boolean
  • filter: user_auths_bool_exp
  • predicate: Int_comparison_exp!

user_auths_aggregate_fields

aggregate fields of "user_auths"

Fields:

  • count: Int!
  • max: user_auths_max_fields
  • min: user_auths_min_fields

user_auths_aggregate_order_by

order by aggregate values of table "user_auths"

Fields:

  • count: order_by
  • max: user_auths_max_order_by
  • min: user_auths_min_order_by

user_auths_arr_rel_insert_input

input type for inserting array relation for remote table "user_auths"

Fields:

  • data: [user_auths_insert_input!]!
  • on_conflict: user_auths_on_conflict - upsert condition

user_auths_bool_exp

Boolean expression to filter rows from the table "user_auths". All fields are combined with a logical 'AND'.

Fields:

  • _and: [user_auths_bool_exp!]
  • _not: user_auths_bool_exp
  • _or: [user_auths_bool_exp!]
  • accessed_at: timestamp_comparison_exp
  • account_id: String_comparison_exp
  • auth_provider_type: auth_provider_type_bool_exp
  • auth_type: auth_type_bool_exp
  • avatar: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • credential: String_comparison_exp
  • expires_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • provider: auth_type_enum_comparison_exp
  • provider_type: auth_provider_type_enum_comparison_exp
  • status: user_status_type_enum_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user: uuid_comparison_exp
  • userByUser: users_bool_exp
  • user_status_type: user_status_type_bool_exp

user_auths_constraint

unique or primary key constraints on table "user_auths"

Values:

  • user_auths_pkey - unique or primary key constraint on columns "id"
  • user_auths_provider_account_id_key - unique or primary key constraint on columns "provider", "account_id"
  • user_auths_provider_credential_user_key - unique or primary key constraint on columns "credential", "provider", "user"
  • user_auths_user_name_provider_key - unique or primary key constraint on columns "provider", "user", "name"

user_auths_insert_input

input type for inserting data into table "user_auths"

Fields:

  • accessed_at: timestamp
  • account_id: String
  • auth_provider_type: auth_provider_type_obj_rel_insert_input
  • auth_type: auth_type_obj_rel_insert_input
  • avatar: String
  • created_at: timestamp
  • credential: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • provider: auth_type_enum
  • provider_type: auth_provider_type_enum
  • status: user_status_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • user: uuid
  • userByUser: users_obj_rel_insert_input
  • user_status_type: user_status_type_obj_rel_insert_input

user_auths_max_fields

aggregate max on columns

Fields:

  • accessed_at: timestamp
  • account_id: String
  • avatar: String
  • created_at: timestamp
  • credential: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user: uuid

user_auths_max_order_by

order by max() on columns of table "user_auths"

Fields:

  • accessed_at: order_by
  • account_id: order_by
  • avatar: order_by
  • created_at: order_by
  • credential: order_by
  • expires_at: order_by
  • id: order_by
  • name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user: order_by

user_auths_min_fields

aggregate min on columns

Fields:

  • accessed_at: timestamp
  • account_id: String
  • avatar: String
  • created_at: timestamp
  • credential: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user: uuid

user_auths_min_order_by

order by min() on columns of table "user_auths"

Fields:

  • accessed_at: order_by
  • account_id: order_by
  • avatar: order_by
  • created_at: order_by
  • credential: order_by
  • expires_at: order_by
  • id: order_by
  • name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user: order_by

user_auths_mutation_response

response of any mutation on the table "user_auths"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [user_auths!]! - data from the rows affected by the mutation

user_auths_on_conflict

on_conflict condition type for table "user_auths"

Fields:

  • constraint: user_auths_constraint!
  • update_columns: [user_auths_update_column!]!
  • where: user_auths_bool_exp

user_auths_order_by

Ordering options when selecting data from "user_auths".

Fields:

  • accessed_at: order_by
  • account_id: order_by
  • auth_provider_type: auth_provider_type_order_by
  • auth_type: auth_type_order_by
  • avatar: order_by
  • created_at: order_by
  • credential: order_by
  • expires_at: order_by
  • id: order_by
  • name: order_by
  • provider: order_by
  • provider_type: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user: order_by
  • userByUser: users_order_by
  • user_status_type: user_status_type_order_by

user_auths_pk_columns_input

primary key columns input for table: user_auths

Fields:

  • id: uuid!

user_auths_select_column

select columns of table "user_auths"

Values:

  • accessed_at - column name
  • account_id - column name
  • avatar - column name
  • created_at - column name
  • credential - column name
  • expires_at - column name
  • id - column name
  • name - column name
  • provider - column name
  • provider_type - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • user - column name

user_auths_set_input

input type for updating data in table "user_auths"

Fields:

  • accessed_at: timestamp
  • account_id: String
  • avatar: String
  • created_at: timestamp
  • credential: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • provider: auth_type_enum
  • provider_type: auth_provider_type_enum
  • status: user_status_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • user: uuid

user_auths_stream_cursor_input

Streaming cursor of the table "user_auths"

Fields:

  • initial_value: user_auths_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

user_auths_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • accessed_at: timestamp
  • account_id: String
  • avatar: String
  • created_at: timestamp
  • credential: String
  • expires_at: timestamp
  • id: uuid
  • name: String
  • provider: auth_type_enum
  • provider_type: auth_provider_type_enum
  • status: user_status_type_enum
  • tenant_id: uuid
  • updated_at: timestamp
  • user: uuid

user_auths_update_column

update columns of table "user_auths"

Values:

  • accessed_at - column name
  • account_id - column name
  • avatar - column name
  • created_at - column name
  • credential - column name
  • expires_at - column name
  • id - column name
  • name - column name
  • provider - column name
  • provider_type - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • user - column name

user_groups_aggregate_bool_exp

Fields:

  • count: user_groups_aggregate_bool_exp_count

user_groups_aggregate_bool_exp_count

Fields:

  • arguments: [user_groups_select_column!]
  • distinct: Boolean
  • filter: user_groups_bool_exp
  • predicate: Int_comparison_exp!

user_groups_aggregate_fields

aggregate fields of "user_groups"

Fields:

  • count: Int!
  • max: user_groups_max_fields
  • min: user_groups_min_fields

user_groups_aggregate_order_by

order by aggregate values of table "user_groups"

Fields:

  • count: order_by
  • max: user_groups_max_order_by
  • min: user_groups_min_order_by

user_groups_arr_rel_insert_input

input type for inserting array relation for remote table "user_groups"

Fields:

  • data: [user_groups_insert_input!]!
  • on_conflict: user_groups_on_conflict - upsert condition

user_groups_bool_exp

Boolean expression to filter rows from the table "user_groups". All fields are combined with a logical 'AND'.

Fields:

  • _and: [user_groups_bool_exp!]
  • _not: user_groups_bool_exp
  • _or: [user_groups_bool_exp!]
  • businessUnitByBusinessUnit: business_unit_bool_exp
  • business_unit: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • description: String_comparison_exp
  • funding_sources: funding_sources_bool_exp
  • funding_sources_aggregate: funding_sources_aggregate_bool_exp
  • group_roles: group_roles_bool_exp
  • group_roles_aggregate: group_roles_aggregate_bool_exp
  • id: uuid_comparison_exp
  • name: String_comparison_exp
  • owner: uuid_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • user: users_bool_exp
  • usergroup_users: usergroup_users_bool_exp
  • usergroup_users_aggregate: usergroup_users_aggregate_bool_exp

user_groups_constraint

unique or primary key constraints on table "user_groups"

Values:

  • user_groups_pkey - unique or primary key constraint on columns "id"
  • user_groups_tenant_business_unit_name_key - unique or primary key constraint on columns "business_unit", "tenant", "name"

user_groups_insert_input

input type for inserting data into table "user_groups"

Fields:

  • businessUnitByBusinessUnit: business_unit_obj_rel_insert_input
  • business_unit: uuid
  • created_at: timestamptz
  • description: String
  • funding_sources: funding_sources_arr_rel_insert_input
  • group_roles: group_roles_arr_rel_insert_input
  • id: uuid
  • name: String
  • owner: uuid
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • user: users_obj_rel_insert_input
  • usergroup_users: usergroup_users_arr_rel_insert_input

user_groups_max_fields

aggregate max on columns

Fields:

  • business_unit: uuid
  • created_at: timestamptz
  • description: String
  • id: uuid
  • name: String
  • owner: uuid
  • tenant: uuid

user_groups_max_order_by

order by max() on columns of table "user_groups"

Fields:

  • business_unit: order_by
  • created_at: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • owner: order_by
  • tenant: order_by

user_groups_min_fields

aggregate min on columns

Fields:

  • business_unit: uuid
  • created_at: timestamptz
  • description: String
  • id: uuid
  • name: String
  • owner: uuid
  • tenant: uuid

user_groups_min_order_by

order by min() on columns of table "user_groups"

Fields:

  • business_unit: order_by
  • created_at: order_by
  • description: order_by
  • id: order_by
  • name: order_by
  • owner: order_by
  • tenant: order_by

user_groups_mutation_response

response of any mutation on the table "user_groups"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [user_groups!]! - data from the rows affected by the mutation

user_groups_obj_rel_insert_input

input type for inserting object relation for remote table "user_groups"

Fields:

  • data: user_groups_insert_input!
  • on_conflict: user_groups_on_conflict - upsert condition

user_groups_on_conflict

on_conflict condition type for table "user_groups"

Fields:

  • constraint: user_groups_constraint!
  • update_columns: [user_groups_update_column!]!
  • where: user_groups_bool_exp

user_groups_order_by

Ordering options when selecting data from "user_groups".

Fields:

  • businessUnitByBusinessUnit: business_unit_order_by
  • business_unit: order_by
  • created_at: order_by
  • description: order_by
  • funding_sources_aggregate: funding_sources_aggregate_order_by
  • group_roles_aggregate: group_roles_aggregate_order_by
  • id: order_by
  • name: order_by
  • owner: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • user: users_order_by
  • usergroup_users_aggregate: usergroup_users_aggregate_order_by

user_groups_pk_columns_input

primary key columns input for table: user_groups

Fields:

  • id: uuid!

user_groups_select_column

select columns of table "user_groups"

Values:

  • business_unit - column name
  • created_at - column name
  • description - column name
  • id - column name
  • name - column name
  • owner - column name
  • tenant - column name

user_groups_set_input

input type for updating data in table "user_groups"

Fields:

  • business_unit: uuid
  • created_at: timestamptz
  • description: String
  • id: uuid
  • name: String
  • owner: uuid
  • tenant: uuid

user_groups_stream_cursor_input

Streaming cursor of the table "user_groups"

Fields:

  • initial_value: user_groups_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

user_groups_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • business_unit: uuid
  • created_at: timestamptz
  • description: String
  • id: uuid
  • name: String
  • owner: uuid
  • tenant: uuid

user_groups_update_column

update columns of table "user_groups"

Values:

  • business_unit - column name
  • created_at - column name
  • description - column name
  • id - column name
  • name - column name
  • owner - column name
  • tenant - column name

user_history_aggregate_fields

aggregate fields of "user_history"

Fields:

  • avg: user_history_avg_fields
  • count: Int!
  • max: user_history_max_fields
  • min: user_history_min_fields
  • stddev: user_history_stddev_fields
  • stddev_pop: user_history_stddev_pop_fields
  • stddev_samp: user_history_stddev_samp_fields
  • sum: user_history_sum_fields
  • var_pop: user_history_var_pop_fields
  • var_samp: user_history_var_samp_fields
  • variance: user_history_variance_fields

user_history_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • meta: jsonb

user_history_avg_fields

aggregate avg on columns

Fields:

  • duration: Float

user_history_bool_exp

Boolean expression to filter rows from the table "user_history". All fields are combined with a logical 'AND'.

Fields:

  • _and: [user_history_bool_exp!]
  • _not: user_history_bool_exp
  • _or: [user_history_bool_exp!]
  • account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • data: String_comparison_exp
  • duration: float8_comparison_exp
  • id: uuid_comparison_exp
  • meta: jsonb_comparison_exp
  • module: String_comparison_exp
  • status: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user_id: uuid_comparison_exp

user_history_constraint

unique or primary key constraints on table "user_history"

Values:

  • user_history_pkey - unique or primary key constraint on columns "id"

user_history_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • meta: [String!]

user_history_delete_elem_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

Fields:

  • meta: Int

user_history_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • meta: String

user_history_inc_input

input type for incrementing numeric columns in table "user_history"

Fields:

  • duration: float8

user_history_insert_input

input type for inserting data into table "user_history"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • data: String
  • duration: float8
  • id: uuid
  • meta: jsonb
  • module: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_history_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • data: String
  • duration: float8
  • id: uuid
  • module: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_history_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • data: String
  • duration: float8
  • id: uuid
  • module: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_history_mutation_response

response of any mutation on the table "user_history"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [user_history!]! - data from the rows affected by the mutation

user_history_on_conflict

on_conflict condition type for table "user_history"

Fields:

  • constraint: user_history_constraint!
  • update_columns: [user_history_update_column!]!
  • where: user_history_bool_exp

user_history_order_by

Ordering options when selecting data from "user_history".

Fields:

  • account_id: order_by
  • created_at: order_by
  • data: order_by
  • duration: order_by
  • id: order_by
  • meta: order_by
  • module: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user_id: order_by

user_history_pk_columns_input

primary key columns input for table: user_history

Fields:

  • id: uuid!

user_history_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • meta: jsonb

user_history_select_column

select columns of table "user_history"

Values:

  • account_id - column name
  • created_at - column name
  • data - column name
  • duration - column name
  • id - column name
  • meta - column name
  • module - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • user_id - column name

user_history_set_input

input type for updating data in table "user_history"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • data: String
  • duration: float8
  • id: uuid
  • meta: jsonb
  • module: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_history_stddev_fields

aggregate stddev on columns

Fields:

  • duration: Float

user_history_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • duration: Float

user_history_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • duration: Float

user_history_stream_cursor_input

Streaming cursor of the table "user_history"

Fields:

  • initial_value: user_history_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

user_history_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • data: String
  • duration: float8
  • id: uuid
  • meta: jsonb
  • module: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_history_sum_fields

aggregate sum on columns

Fields:

  • duration: float8

user_history_update_column

update columns of table "user_history"

Values:

  • account_id - column name
  • created_at - column name
  • data - column name
  • duration - column name
  • id - column name
  • meta - column name
  • module - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • user_id - column name

user_history_var_pop_fields

aggregate var_pop on columns

Fields:

  • duration: Float

user_history_var_samp_fields

aggregate var_samp on columns

Fields:

  • duration: Float

user_history_variance_fields

aggregate variance on columns

Fields:

  • duration: Float

user_roles_aggregate_bool_exp

Fields:

  • count: user_roles_aggregate_bool_exp_count

user_roles_aggregate_bool_exp_count

Fields:

  • arguments: [user_roles_select_column!]
  • distinct: Boolean
  • filter: user_roles_bool_exp
  • predicate: Int_comparison_exp!

user_roles_aggregate_fields

aggregate fields of "user_roles"

Fields:

  • count: Int!
  • max: user_roles_max_fields
  • min: user_roles_min_fields

user_roles_aggregate_order_by

order by aggregate values of table "user_roles"

Fields:

  • count: order_by
  • max: user_roles_max_order_by
  • min: user_roles_min_order_by

user_roles_arr_rel_insert_input

input type for inserting array relation for remote table "user_roles"

Fields:

  • data: [user_roles_insert_input!]!
  • on_conflict: user_roles_on_conflict - upsert condition

user_roles_bool_exp

Boolean expression to filter rows from the table "user_roles". All fields are combined with a logical 'AND'.

Fields:

  • _and: [user_roles_bool_exp!]
  • _not: user_roles_bool_exp
  • _or: [user_roles_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • entity_id: String_comparison_exp
  • entity_type: citext_comparison_exp
  • id: uuid_comparison_exp
  • role: citext_comparison_exp
  • roleByRole: roles_bool_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user: users_bool_exp
  • user_id: uuid_comparison_exp

user_roles_constraint

unique or primary key constraints on table "user_roles"

Values:

  • user_roles_pkey - unique or primary key constraint on columns "id"
  • user_roles_role_user_id_entity_type_entity_id_key - unique or primary key constraint on columns "entity_type", "user_id", "entity_id", "role"

user_roles_insert_input

input type for inserting data into table "user_roles"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • id: uuid
  • role: citext
  • roleByRole: roles_obj_rel_insert_input
  • tenant_id: uuid
  • updated_at: timestamp
  • user: users_obj_rel_insert_input
  • user_id: uuid

user_roles_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • id: uuid
  • role: citext
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_roles_max_order_by

order by max() on columns of table "user_roles"

Fields:

  • created_at: order_by
  • created_by: order_by
  • entity_id: order_by
  • entity_type: order_by
  • id: order_by
  • role: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user_id: order_by

user_roles_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • id: uuid
  • role: citext
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_roles_min_order_by

order by min() on columns of table "user_roles"

Fields:

  • created_at: order_by
  • created_by: order_by
  • entity_id: order_by
  • entity_type: order_by
  • id: order_by
  • role: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user_id: order_by

user_roles_mutation_response

response of any mutation on the table "user_roles"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [user_roles!]! - data from the rows affected by the mutation

user_roles_on_conflict

on_conflict condition type for table "user_roles"

Fields:

  • constraint: user_roles_constraint!
  • update_columns: [user_roles_update_column!]!
  • where: user_roles_bool_exp

user_roles_order_by

Ordering options when selecting data from "user_roles".

Fields:

  • created_at: order_by
  • created_by: order_by
  • entity_id: order_by
  • entity_type: order_by
  • id: order_by
  • role: order_by
  • roleByRole: roles_order_by
  • tenant_id: order_by
  • updated_at: order_by
  • user: users_order_by
  • user_id: order_by

user_roles_pk_columns_input

primary key columns input for table: user_roles

Fields:

  • id: uuid!

user_roles_select_column

select columns of table "user_roles"

Values:

  • created_at - column name
  • created_by - column name
  • entity_id - column name
  • entity_type - column name
  • id - column name
  • role - column name
  • tenant_id - column name
  • updated_at - column name
  • user_id - column name

user_roles_set_input

input type for updating data in table "user_roles"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • id: uuid
  • role: citext
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_roles_stream_cursor_input

Streaming cursor of the table "user_roles"

Fields:

  • initial_value: user_roles_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

user_roles_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • id: uuid
  • role: citext
  • tenant_id: uuid
  • updated_at: timestamp
  • user_id: uuid

user_roles_update_column

update columns of table "user_roles"

Values:

  • created_at - column name
  • created_by - column name
  • entity_id - column name
  • entity_type - column name
  • id - column name
  • role - column name
  • tenant_id - column name
  • updated_at - column name
  • user_id - column name

user_status_type_aggregate_fields

aggregate fields of "user_status_type"

Fields:

  • count: Int!
  • max: user_status_type_max_fields
  • min: user_status_type_min_fields

user_status_type_bool_exp

Boolean expression to filter rows from the table "user_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [user_status_type_bool_exp!]
  • _not: user_status_type_bool_exp
  • _or: [user_status_type_bool_exp!]
  • comment: String_comparison_exp
  • user_auths: user_auths_bool_exp
  • user_auths_aggregate: user_auths_aggregate_bool_exp
  • users: users_bool_exp
  • users_aggregate: users_aggregate_bool_exp
  • value: String_comparison_exp

user_status_type_constraint

unique or primary key constraints on table "user_status_type"

Values:

  • user_status_types_pkey - unique or primary key constraint on columns "value"

user_status_type_insert_input

input type for inserting data into table "user_status_type"

Fields:

  • comment: String
  • user_auths: user_auths_arr_rel_insert_input
  • users: users_arr_rel_insert_input
  • value: String

user_status_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

user_status_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

user_status_type_mutation_response

response of any mutation on the table "user_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [user_status_type!]! - data from the rows affected by the mutation

user_status_type_obj_rel_insert_input

input type for inserting object relation for remote table "user_status_type"

Fields:

  • data: user_status_type_insert_input!
  • on_conflict: user_status_type_on_conflict - upsert condition

user_status_type_on_conflict

on_conflict condition type for table "user_status_type"

Fields:

  • constraint: user_status_type_constraint!
  • update_columns: [user_status_type_update_column!]!
  • where: user_status_type_bool_exp

user_status_type_order_by

Ordering options when selecting data from "user_status_type".

Fields:

  • comment: order_by
  • user_auths_aggregate: user_auths_aggregate_order_by
  • users_aggregate: users_aggregate_order_by
  • value: order_by

user_status_type_pk_columns_input

primary key columns input for table: user_status_type

Fields:

  • value: String!

user_status_type_select_column

select columns of table "user_status_type"

Values:

  • comment - column name
  • value - column name

user_status_type_set_input

input type for updating data in table "user_status_type"

Fields:

  • comment: String
  • value: String

user_status_type_stream_cursor_input

Streaming cursor of the table "user_status_type"

Fields:

  • initial_value: user_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

user_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

user_status_type_update_column

update columns of table "user_status_type"

Values:

  • comment - column name
  • value - column name

usergroup_users_aggregate_bool_exp

Fields:

  • count: usergroup_users_aggregate_bool_exp_count

usergroup_users_aggregate_bool_exp_count

Fields:

  • arguments: [usergroup_users_select_column!]
  • distinct: Boolean
  • filter: usergroup_users_bool_exp
  • predicate: Int_comparison_exp!

usergroup_users_aggregate_fields

aggregate fields of "usergroup_users"

Fields:

  • count: Int!
  • max: usergroup_users_max_fields
  • min: usergroup_users_min_fields

usergroup_users_aggregate_order_by

order by aggregate values of table "usergroup_users"

Fields:

  • count: order_by
  • max: usergroup_users_max_order_by
  • min: usergroup_users_min_order_by

usergroup_users_arr_rel_insert_input

input type for inserting array relation for remote table "usergroup_users"

Fields:

  • data: [usergroup_users_insert_input!]!
  • on_conflict: usergroup_users_on_conflict - upsert condition

usergroup_users_bool_exp

Boolean expression to filter rows from the table "usergroup_users". All fields are combined with a logical 'AND'.

Fields:

  • _and: [usergroup_users_bool_exp!]
  • _not: usergroup_users_bool_exp
  • _or: [usergroup_users_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • group: uuid_comparison_exp
  • id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: uuid_comparison_exp
  • userByCreatedBy: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • userByUser: users_bool_exp
  • user_group: user_groups_bool_exp

usergroup_users_constraint

unique or primary key constraints on table "usergroup_users"

Values:

  • usergroup_users_pkey - unique or primary key constraint on columns "id"
  • usergroup_users_user_group_key - unique or primary key constraint on columns "user", "group"

usergroup_users_insert_input

input type for inserting data into table "usergroup_users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • group: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid
  • userByCreatedBy: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • userByUser: users_obj_rel_insert_input
  • user_group: user_groups_obj_rel_insert_input

usergroup_users_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • group: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

usergroup_users_max_order_by

order by max() on columns of table "usergroup_users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • group: order_by
  • id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: order_by

usergroup_users_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • group: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

usergroup_users_min_order_by

order by min() on columns of table "usergroup_users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • group: order_by
  • id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: order_by

usergroup_users_mutation_response

response of any mutation on the table "usergroup_users"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [usergroup_users!]! - data from the rows affected by the mutation

usergroup_users_on_conflict

on_conflict condition type for table "usergroup_users"

Fields:

  • constraint: usergroup_users_constraint!
  • update_columns: [usergroup_users_update_column!]!
  • where: usergroup_users_bool_exp

usergroup_users_order_by

Ordering options when selecting data from "usergroup_users".

Fields:

  • created_at: order_by
  • created_by: order_by
  • group: order_by
  • id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: order_by
  • userByCreatedBy: users_order_by
  • userByUpdatedBy: users_order_by
  • userByUser: users_order_by
  • user_group: user_groups_order_by

usergroup_users_pk_columns_input

primary key columns input for table: usergroup_users

Fields:

  • id: uuid!

usergroup_users_select_column

select columns of table "usergroup_users"

Values:

  • created_at - column name
  • created_by - column name
  • group - column name
  • id - column name
  • updated_at - column name
  • updated_by - column name
  • user - column name

usergroup_users_set_input

input type for updating data in table "usergroup_users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • group: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

usergroup_users_stream_cursor_input

Streaming cursor of the table "usergroup_users"

Fields:

  • initial_value: usergroup_users_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

usergroup_users_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • group: uuid
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: uuid

usergroup_users_update_column

update columns of table "usergroup_users"

Values:

  • created_at - column name
  • created_by - column name
  • group - column name
  • id - column name
  • updated_at - column name
  • updated_by - column name
  • user - column name

users_aggregate_bool_exp

Fields:

  • count: users_aggregate_bool_exp_count

users_aggregate_bool_exp_count

Fields:

  • arguments: [users_select_column!]
  • distinct: Boolean
  • filter: users_bool_exp
  • predicate: Int_comparison_exp!

users_aggregate_fields

aggregate fields of "users"

Fields:

  • count: Int!
  • max: users_max_fields
  • min: users_min_fields

users_aggregate_order_by

order by aggregate values of table "users"

Fields:

  • count: order_by
  • max: users_max_order_by
  • min: users_min_order_by

users_arr_rel_insert_input

input type for inserting array relation for remote table "users"

Fields:

  • data: [users_insert_input!]!
  • on_conflict: users_on_conflict - upsert condition

users_bool_exp

Boolean expression to filter rows from the table "users". All fields are combined with a logical 'AND'.

Fields:

  • _and: [users_bool_exp!]
  • _not: users_bool_exp
  • _or: [users_bool_exp!]
  • businessUnitsByUpdatedBy: business_unit_bool_exp
  • businessUnitsByUpdatedBy_aggregate: business_unit_aggregate_bool_exp
  • business_units: business_unit_bool_exp
  • business_units_aggregate: business_unit_aggregate_bool_exp
  • businessunitFundingSourcesByUpdatedBy: businessunit_funding_bool_exp
  • businessunitFundingSourcesByUpdatedBy_aggregate: businessunit_funding_aggregate_bool_exp
  • businessunit_funding_sources: businessunit_funding_bool_exp
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_bool_exp
  • businessunit_users: businessunit_users_bool_exp
  • businessunit_users_aggregate: businessunit_users_aggregate_bool_exp
  • cloudAccountsByUpdatedBy: cloud_accounts_bool_exp
  • cloudAccountsByUpdatedBy_aggregate: cloud_accounts_aggregate_bool_exp
  • cloudResoursesByUpdatedBy: cloud_resourses_bool_exp
  • cloudResoursesByUpdatedBy_aggregate: cloud_resourses_aggregate_bool_exp
  • cloud_accounts: cloud_accounts_bool_exp
  • cloud_accounts_aggregate: cloud_accounts_aggregate_bool_exp
  • cloud_resourses: cloud_resourses_bool_exp
  • cloud_resourses_aggregate: cloud_resourses_aggregate_bool_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • display_name: String_comparison_exp
  • fundingSourcesByUpdatedBy: funding_sources_bool_exp
  • fundingSourcesByUpdatedBy_aggregate: funding_sources_aggregate_bool_exp
  • funding_sources: funding_sources_bool_exp
  • funding_sources_aggregate: funding_sources_aggregate_bool_exp
  • group_roles: group_roles_bool_exp
  • group_roles_aggregate: group_roles_aggregate_bool_exp
  • id: uuid_comparison_exp
  • jiraConfigurationsByUpdatedBy: jira_configurations_bool_exp
  • jiraConfigurationsByUpdatedBy_aggregate: jira_configurations_aggregate_bool_exp
  • jira_configurations: jira_configurations_bool_exp
  • jira_configurations_aggregate: jira_configurations_aggregate_bool_exp
  • llm_conversation_saved: llm_conversation_saved_bool_exp
  • llm_conversations: llm_conversations_bool_exp
  • llm_conversations_aggregate: llm_conversations_aggregate_bool_exp
  • notification_users: notification_user_bool_exp
  • notification_users_aggregate: notification_user_aggregate_bool_exp
  • projectFundingsByUpdatedBy: project_fundings_bool_exp
  • projectFundingsByUpdatedBy_aggregate: project_fundings_aggregate_bool_exp
  • projectUsersByUser: project_users_bool_exp
  • projectUsersByUser_aggregate: project_users_aggregate_bool_exp
  • project_fundings: project_fundings_bool_exp
  • project_fundings_aggregate: project_fundings_aggregate_bool_exp
  • project_users: project_users_bool_exp
  • project_users_aggregate: project_users_aggregate_bool_exp
  • projects: projects_bool_exp
  • projectsByCreatedBy: projects_bool_exp
  • projectsByCreatedBy_aggregate: projects_aggregate_bool_exp
  • projectsByItManager: projects_bool_exp
  • projectsByItManager_aggregate: projects_aggregate_bool_exp
  • projectsByProjectManager: projects_bool_exp
  • projectsByProjectManager_aggregate: projects_aggregate_bool_exp
  • projectsByUpdatedBy: projects_bool_exp
  • projectsByUpdatedBy_aggregate: projects_aggregate_bool_exp
  • projects_aggregate: projects_aggregate_bool_exp
  • status: user_status_type_enum_comparison_exp
  • tenantUsersByUpdatedBy: tenant_users_bool_exp
  • tenantUsersByUpdatedBy_aggregate: tenant_users_aggregate_bool_exp
  • tenantUsersByUser: tenant_users_bool_exp
  • tenantUsersByUser_aggregate: tenant_users_aggregate_bool_exp
  • tenant_users: tenant_users_bool_exp
  • tenant_users_aggregate: tenant_users_aggregate_bool_exp
  • tenants: tenant_bool_exp
  • tenantsByUpdatedBy: tenant_bool_exp
  • tenantsByUpdatedBy_aggregate: tenant_aggregate_bool_exp
  • tenants_aggregate: tenant_aggregate_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • user_attrs: user_attrs_bool_exp
  • user_attrs_aggregate: user_attrs_aggregate_bool_exp
  • user_auths: user_auths_bool_exp
  • user_auths_aggregate: user_auths_aggregate_bool_exp
  • user_groups_owner: user_groups_bool_exp
  • user_groups_owner_aggregate: user_groups_aggregate_bool_exp
  • user_roles: user_roles_bool_exp
  • user_roles_aggregate: user_roles_aggregate_bool_exp
  • user_status_type: user_status_type_bool_exp
  • usergroupUsersByUpdatedBy: usergroup_users_bool_exp
  • usergroupUsersByUpdatedBy_aggregate: usergroup_users_aggregate_bool_exp
  • usergroupUsersByUser: usergroup_users_bool_exp
  • usergroupUsersByUser_aggregate: usergroup_users_aggregate_bool_exp
  • usergroup_users: usergroup_users_bool_exp
  • usergroup_users_aggregate: usergroup_users_aggregate_bool_exp
  • username: citext_comparison_exp
  • users: users_bool_exp
  • usersByUpdatedBy: users_bool_exp
  • usersByUpdatedBy_aggregate: users_aggregate_bool_exp
  • users_aggregate: users_aggregate_bool_exp

users_constraint

unique or primary key constraints on table "users"

Values:

  • users_pkey - unique or primary key constraint on columns "id"
  • users_username_key - unique or primary key constraint on columns "username"

users_insert_input

input type for inserting data into table "users"

Fields:

  • businessUnitsByUpdatedBy: business_unit_arr_rel_insert_input
  • business_units: business_unit_arr_rel_insert_input
  • businessunitFundingSourcesByUpdatedBy: businessunit_funding_arr_rel_insert_input
  • businessunit_funding_sources: businessunit_funding_arr_rel_insert_input
  • businessunit_users: businessunit_users_arr_rel_insert_input
  • cloudAccountsByUpdatedBy: cloud_accounts_arr_rel_insert_input
  • cloudResoursesByUpdatedBy: cloud_resourses_arr_rel_insert_input
  • cloud_accounts: cloud_accounts_arr_rel_insert_input
  • cloud_resourses: cloud_resourses_arr_rel_insert_input
  • created_at: timestamp
  • created_by: uuid
  • display_name: String
  • fundingSourcesByUpdatedBy: funding_sources_arr_rel_insert_input
  • funding_sources: funding_sources_arr_rel_insert_input
  • group_roles: group_roles_arr_rel_insert_input
  • id: uuid
  • jiraConfigurationsByUpdatedBy: jira_configurations_arr_rel_insert_input
  • jira_configurations: jira_configurations_arr_rel_insert_input
  • llm_conversation_saved: llm_conversation_saved_obj_rel_insert_input
  • llm_conversations: llm_conversations_arr_rel_insert_input
  • notification_users: notification_user_arr_rel_insert_input
  • projectFundingsByUpdatedBy: project_fundings_arr_rel_insert_input
  • projectUsersByUser: project_users_arr_rel_insert_input
  • project_fundings: project_fundings_arr_rel_insert_input
  • project_users: project_users_arr_rel_insert_input
  • projects: projects_arr_rel_insert_input
  • projectsByCreatedBy: projects_arr_rel_insert_input
  • projectsByItManager: projects_arr_rel_insert_input
  • projectsByProjectManager: projects_arr_rel_insert_input
  • projectsByUpdatedBy: projects_arr_rel_insert_input
  • status: user_status_type_enum
  • tenantUsersByUpdatedBy: tenant_users_arr_rel_insert_input
  • tenantUsersByUser: tenant_users_arr_rel_insert_input
  • tenant_users: tenant_users_arr_rel_insert_input
  • tenants: tenant_arr_rel_insert_input
  • tenantsByUpdatedBy: tenant_arr_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • user_attrs: user_attrs_arr_rel_insert_input
  • user_auths: user_auths_arr_rel_insert_input
  • user_groups_owner: user_groups_arr_rel_insert_input
  • user_roles: user_roles_arr_rel_insert_input
  • user_status_type: user_status_type_obj_rel_insert_input
  • usergroupUsersByUpdatedBy: usergroup_users_arr_rel_insert_input
  • usergroupUsersByUser: usergroup_users_arr_rel_insert_input
  • usergroup_users: usergroup_users_arr_rel_insert_input
  • username: citext
  • users: users_arr_rel_insert_input
  • usersByUpdatedBy: users_arr_rel_insert_input

users_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • display_name: String
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • username: citext

users_max_order_by

order by max() on columns of table "users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • display_name: order_by
  • id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • username: order_by

users_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • display_name: String
  • id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • username: citext

users_min_order_by

order by min() on columns of table "users"

Fields:

  • created_at: order_by
  • created_by: order_by
  • display_name: order_by
  • id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • username: order_by

users_mutation_response

response of any mutation on the table "users"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [users!]! - data from the rows affected by the mutation

users_obj_rel_insert_input

input type for inserting object relation for remote table "users"

Fields:

  • data: users_insert_input!
  • on_conflict: users_on_conflict - upsert condition

users_on_conflict

on_conflict condition type for table "users"

Fields:

  • constraint: users_constraint!
  • update_columns: [users_update_column!]!
  • where: users_bool_exp

users_order_by

Ordering options when selecting data from "users".

Fields:

  • businessUnitsByUpdatedBy_aggregate: business_unit_aggregate_order_by
  • business_units_aggregate: business_unit_aggregate_order_by
  • businessunitFundingSourcesByUpdatedBy_aggregate: businessunit_funding_aggregate_order_by
  • businessunit_funding_sources_aggregate: businessunit_funding_aggregate_order_by
  • businessunit_users_aggregate: businessunit_users_aggregate_order_by
  • cloudAccountsByUpdatedBy_aggregate: cloud_accounts_aggregate_order_by
  • cloudResoursesByUpdatedBy_aggregate: cloud_resourses_aggregate_order_by
  • cloud_accounts_aggregate: cloud_accounts_aggregate_order_by
  • cloud_resourses_aggregate: cloud_resourses_aggregate_order_by
  • created_at: order_by
  • created_by: order_by
  • display_name: order_by
  • fundingSourcesByUpdatedBy_aggregate: funding_sources_aggregate_order_by
  • funding_sources_aggregate: funding_sources_aggregate_order_by
  • group_roles_aggregate: group_roles_aggregate_order_by
  • id: order_by
  • jiraConfigurationsByUpdatedBy_aggregate: jira_configurations_aggregate_order_by
  • jira_configurations_aggregate: jira_configurations_aggregate_order_by
  • llm_conversation_saved: llm_conversation_saved_order_by
  • llm_conversations_aggregate: llm_conversations_aggregate_order_by
  • notification_users_aggregate: notification_user_aggregate_order_by
  • projectFundingsByUpdatedBy_aggregate: project_fundings_aggregate_order_by
  • projectUsersByUser_aggregate: project_users_aggregate_order_by
  • project_fundings_aggregate: project_fundings_aggregate_order_by
  • project_users_aggregate: project_users_aggregate_order_by
  • projectsByCreatedBy_aggregate: projects_aggregate_order_by
  • projectsByItManager_aggregate: projects_aggregate_order_by
  • projectsByProjectManager_aggregate: projects_aggregate_order_by
  • projectsByUpdatedBy_aggregate: projects_aggregate_order_by
  • projects_aggregate: projects_aggregate_order_by
  • status: order_by
  • tenantUsersByUpdatedBy_aggregate: tenant_users_aggregate_order_by
  • tenantUsersByUser_aggregate: tenant_users_aggregate_order_by
  • tenant_users_aggregate: tenant_users_aggregate_order_by
  • tenantsByUpdatedBy_aggregate: tenant_aggregate_order_by
  • tenants_aggregate: tenant_aggregate_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by
  • user_attrs_aggregate: user_attrs_aggregate_order_by
  • user_auths_aggregate: user_auths_aggregate_order_by
  • user_groups_owner_aggregate: user_groups_aggregate_order_by
  • user_roles_aggregate: user_roles_aggregate_order_by
  • user_status_type: user_status_type_order_by
  • usergroupUsersByUpdatedBy_aggregate: usergroup_users_aggregate_order_by
  • usergroupUsersByUser_aggregate: usergroup_users_aggregate_order_by
  • usergroup_users_aggregate: usergroup_users_aggregate_order_by
  • username: order_by
  • usersByUpdatedBy_aggregate: users_aggregate_order_by
  • users_aggregate: users_aggregate_order_by

users_pk_columns_input

primary key columns input for table: users

Fields:

  • id: uuid!

users_select_column

select columns of table "users"

Values:

  • created_at - column name
  • created_by - column name
  • display_name - column name
  • id - column name
  • status - column name
  • updated_at - column name
  • updated_by - column name
  • username - column name

users_set_input

input type for updating data in table "users"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • display_name: String
  • id: uuid
  • status: user_status_type_enum
  • updated_at: timestamp
  • updated_by: uuid
  • username: citext

users_stream_cursor_input

Streaming cursor of the table "users"

Fields:

  • initial_value: users_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

users_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • display_name: String
  • id: uuid
  • status: user_status_type_enum
  • updated_at: timestamp
  • updated_by: uuid
  • username: citext

users_update_column

update columns of table "users"

Values:

  • created_at - column name
  • created_by - column name
  • display_name - column name
  • id - column name
  • status - column name
  • updated_at - column name
  • updated_by - column name
  • username - column name
Integrations (187 types)

integration_categories_aggregate_fields

aggregate fields of "integration_categories"

Fields:

  • count: Int!
  • max: integration_categories_max_fields
  • min: integration_categories_min_fields

integration_categories_bool_exp

Boolean expression to filter rows from the table "integration_categories". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integration_categories_bool_exp!]
  • _not: integration_categories_bool_exp
  • _or: [integration_categories_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

integration_categories_constraint

unique or primary key constraints on table "integration_categories"

Values:

  • integration_categories_pkey - unique or primary key constraint on columns "value"

integration_categories_insert_input

input type for inserting data into table "integration_categories"

Fields:

  • description: String
  • value: String

integration_categories_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

integration_categories_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

integration_categories_mutation_response

response of any mutation on the table "integration_categories"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integration_categories!]! - data from the rows affected by the mutation

integration_categories_on_conflict

on_conflict condition type for table "integration_categories"

Fields:

  • constraint: integration_categories_constraint!
  • update_columns: [integration_categories_update_column!]!
  • where: integration_categories_bool_exp

integration_categories_order_by

Ordering options when selecting data from "integration_categories".

Fields:

  • description: order_by
  • value: order_by

integration_categories_pk_columns_input

primary key columns input for table: integration_categories

Fields:

  • value: String!

integration_categories_select_column

select columns of table "integration_categories"

Values:

  • description - column name
  • value - column name

integration_categories_set_input

input type for updating data in table "integration_categories"

Fields:

  • description: String
  • value: String

integration_categories_stream_cursor_input

Streaming cursor of the table "integration_categories"

Fields:

  • initial_value: integration_categories_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integration_categories_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

integration_categories_update_column

update columns of table "integration_categories"

Values:

  • description - column name
  • value - column name

integration_config_values_aggregate_bool_exp

Fields:

  • bool_and: integration_config_values_aggregate_bool_exp_bool_and
  • bool_or: integration_config_values_aggregate_bool_exp_bool_or
  • count: integration_config_values_aggregate_bool_exp_count

integration_config_values_aggregate_bool_exp_count

Fields:

  • arguments: [integration_config_values_select_column!]
  • distinct: Boolean
  • filter: integration_config_values_bool_exp
  • predicate: Int_comparison_exp!

integration_config_values_aggregate_fields

aggregate fields of "integration_config_values"

Fields:

  • count: Int!
  • max: integration_config_values_max_fields
  • min: integration_config_values_min_fields

integration_config_values_aggregate_order_by

order by aggregate values of table "integration_config_values"

Fields:

  • count: order_by
  • max: integration_config_values_max_order_by
  • min: integration_config_values_min_order_by

integration_config_values_arr_rel_insert_input

input type for inserting array relation for remote table "integration_config_values"

Fields:

  • data: [integration_config_values_insert_input!]!
  • on_conflict: integration_config_values_on_conflict - upsert condition

integration_config_values_bool_exp

Boolean expression to filter rows from the table "integration_config_values". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integration_config_values_bool_exp!]
  • _not: integration_config_values_bool_exp
  • _or: [integration_config_values_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • integration: integrations_bool_exp
  • integration_id: uuid_comparison_exp
  • is_encrypted: Boolean_comparison_exp
  • name: citext_comparison_exp
  • type: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • value: String_comparison_exp

integration_config_values_constraint

unique or primary key constraints on table "integration_config_values"

Values:

  • integration_config_values_config_config_name - unique or primary key constraint on columns "integration_id", "name"
  • integration_config_values_pkey - unique or primary key constraint on columns "id"

integration_config_values_insert_input

input type for inserting data into table "integration_config_values"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • integration: integrations_obj_rel_insert_input
  • integration_id: uuid
  • is_encrypted: Boolean
  • name: citext
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • value: String

integration_config_values_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • integration_id: uuid
  • name: citext
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • value: String

integration_config_values_max_order_by

order by max() on columns of table "integration_config_values"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • integration_id: order_by
  • name: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by
  • value: order_by

integration_config_values_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • integration_id: uuid
  • name: citext
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • value: String

integration_config_values_min_order_by

order by min() on columns of table "integration_config_values"

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • integration_id: order_by
  • name: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by
  • value: order_by

integration_config_values_mutation_response

response of any mutation on the table "integration_config_values"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integration_config_values!]! - data from the rows affected by the mutation

integration_config_values_on_conflict

on_conflict condition type for table "integration_config_values"

Fields:

  • constraint: integration_config_values_constraint!
  • update_columns: [integration_config_values_update_column!]!
  • where: integration_config_values_bool_exp

integration_config_values_order_by

Ordering options when selecting data from "integration_config_values".

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • integration: integrations_order_by
  • integration_id: order_by
  • is_encrypted: order_by
  • name: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by
  • value: order_by

integration_config_values_pk_columns_input

primary key columns input for table: integration_config_values

Fields:

  • id: uuid!

integration_config_values_select_column

select columns of table "integration_config_values"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • integration_id - column name
  • is_encrypted - column name
  • name - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name
  • value - column name

integration_config_values_set_input

input type for updating data in table "integration_config_values"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • integration_id: uuid
  • is_encrypted: Boolean
  • name: citext
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • value: String

integration_config_values_stream_cursor_input

Streaming cursor of the table "integration_config_values"

Fields:

  • initial_value: integration_config_values_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integration_config_values_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • integration_id: uuid
  • is_encrypted: Boolean
  • name: citext
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • value: String

integration_config_values_update_column

update columns of table "integration_config_values"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • integration_id - column name
  • is_encrypted - column name
  • name - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name
  • value - column name

integration_sources_aggregate_fields

aggregate fields of "integration_sources"

Fields:

  • count: Int!
  • max: integration_sources_max_fields
  • min: integration_sources_min_fields

integration_sources_bool_exp

Boolean expression to filter rows from the table "integration_sources". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integration_sources_bool_exp!]
  • _not: integration_sources_bool_exp
  • _or: [integration_sources_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

integration_sources_constraint

unique or primary key constraints on table "integration_sources"

Values:

  • integration_sources_pkey - unique or primary key constraint on columns "value"

integration_sources_insert_input

input type for inserting data into table "integration_sources"

Fields:

  • description: String
  • value: String

integration_sources_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

integration_sources_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

integration_sources_mutation_response

response of any mutation on the table "integration_sources"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integration_sources!]! - data from the rows affected by the mutation

integration_sources_obj_rel_insert_input

input type for inserting object relation for remote table "integration_sources"

Fields:

  • data: integration_sources_insert_input!
  • on_conflict: integration_sources_on_conflict - upsert condition

integration_sources_on_conflict

on_conflict condition type for table "integration_sources"

Fields:

  • constraint: integration_sources_constraint!
  • update_columns: [integration_sources_update_column!]!
  • where: integration_sources_bool_exp

integration_sources_order_by

Ordering options when selecting data from "integration_sources".

Fields:

  • description: order_by
  • value: order_by

integration_sources_pk_columns_input

primary key columns input for table: integration_sources

Fields:

  • value: String!

integration_sources_select_column

select columns of table "integration_sources"

Values:

  • description - column name
  • value - column name

integration_sources_set_input

input type for updating data in table "integration_sources"

Fields:

  • description: String
  • value: String

integration_sources_stream_cursor_input

Streaming cursor of the table "integration_sources"

Fields:

  • initial_value: integration_sources_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integration_sources_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

integration_sources_update_column

update columns of table "integration_sources"

Values:

  • description - column name
  • value - column name

integration_statuses_aggregate_fields

aggregate fields of "integration_statuses"

Fields:

  • count: Int!
  • max: integration_statuses_max_fields
  • min: integration_statuses_min_fields

integration_statuses_bool_exp

Boolean expression to filter rows from the table "integration_statuses". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integration_statuses_bool_exp!]
  • _not: integration_statuses_bool_exp
  • _or: [integration_statuses_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

integration_statuses_constraint

unique or primary key constraints on table "integration_statuses"

Values:

  • integration_statuses_pkey - unique or primary key constraint on columns "value"

integration_statuses_insert_input

input type for inserting data into table "integration_statuses"

Fields:

  • description: String
  • value: String

integration_statuses_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

integration_statuses_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

integration_statuses_mutation_response

response of any mutation on the table "integration_statuses"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integration_statuses!]! - data from the rows affected by the mutation

integration_statuses_obj_rel_insert_input

input type for inserting object relation for remote table "integration_statuses"

Fields:

  • data: integration_statuses_insert_input!
  • on_conflict: integration_statuses_on_conflict - upsert condition

integration_statuses_on_conflict

on_conflict condition type for table "integration_statuses"

Fields:

  • constraint: integration_statuses_constraint!
  • update_columns: [integration_statuses_update_column!]!
  • where: integration_statuses_bool_exp

integration_statuses_order_by

Ordering options when selecting data from "integration_statuses".

Fields:

  • description: order_by
  • value: order_by

integration_statuses_pk_columns_input

primary key columns input for table: integration_statuses

Fields:

  • value: String!

integration_statuses_select_column

select columns of table "integration_statuses"

Values:

  • description - column name
  • value - column name

integration_statuses_set_input

input type for updating data in table "integration_statuses"

Fields:

  • description: String
  • value: String

integration_statuses_stream_cursor_input

Streaming cursor of the table "integration_statuses"

Fields:

  • initial_value: integration_statuses_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integration_statuses_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

integration_statuses_update_column

update columns of table "integration_statuses"

Values:

  • description - column name
  • value - column name

integration_types_aggregate_fields

aggregate fields of "integration_types"

Fields:

  • count: Int!
  • max: integration_types_max_fields
  • min: integration_types_min_fields

integration_types_bool_exp

Boolean expression to filter rows from the table "integration_types". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integration_types_bool_exp!]
  • _not: integration_types_bool_exp
  • _or: [integration_types_bool_exp!]
  • category: String_comparison_exp
  • description: String_comparison_exp
  • name: String_comparison_exp

integration_types_constraint

unique or primary key constraints on table "integration_types"

Values:

  • integration_types_pkey - unique or primary key constraint on columns "name"

integration_types_insert_input

input type for inserting data into table "integration_types"

Fields:

  • category: String
  • description: String
  • name: String

integration_types_max_fields

aggregate max on columns

Fields:

  • category: String
  • description: String
  • name: String

integration_types_min_fields

aggregate min on columns

Fields:

  • category: String
  • description: String
  • name: String

integration_types_mutation_response

response of any mutation on the table "integration_types"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integration_types!]! - data from the rows affected by the mutation

integration_types_obj_rel_insert_input

input type for inserting object relation for remote table "integration_types"

Fields:

  • data: integration_types_insert_input!
  • on_conflict: integration_types_on_conflict - upsert condition

integration_types_on_conflict

on_conflict condition type for table "integration_types"

Fields:

  • constraint: integration_types_constraint!
  • update_columns: [integration_types_update_column!]!
  • where: integration_types_bool_exp

integration_types_order_by

Ordering options when selecting data from "integration_types".

Fields:

  • category: order_by
  • description: order_by
  • name: order_by

integration_types_pk_columns_input

primary key columns input for table: integration_types

Fields:

  • name: String!

integration_types_select_column

select columns of table "integration_types"

Values:

  • category - column name
  • description - column name
  • name - column name

integration_types_set_input

input type for updating data in table "integration_types"

Fields:

  • category: String
  • description: String
  • name: String

integration_types_stream_cursor_input

Streaming cursor of the table "integration_types"

Fields:

  • initial_value: integration_types_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integration_types_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • category: String
  • description: String
  • name: String

integration_types_update_column

update columns of table "integration_types"

Values:

  • category - column name
  • description - column name
  • name - column name

integrations_aggregate_fields

aggregate fields of "integrations"

Fields:

  • count: Int!
  • max: integrations_max_fields
  • min: integrations_min_fields

integrations_bool_exp

Boolean expression to filter rows from the table "integrations". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integrations_bool_exp!]
  • _not: integrations_bool_exp
  • _or: [integrations_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • integration_config_values: integration_config_values_bool_exp
  • integration_config_values_aggregate: integration_config_values_aggregate_bool_exp
  • integration_source: integration_sources_bool_exp
  • integration_status: integration_statuses_bool_exp
  • integration_type: integration_types_bool_exp
  • integrations_cloud_accounts: integrations_cloud_accounts_bool_exp
  • integrations_cloud_accounts_aggregate: integrations_cloud_accounts_aggregate_bool_exp
  • labels: json_comparison_exp
  • name: String_comparison_exp
  • source: String_comparison_exp
  • status: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • type: String_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userCreatedBy: users_bool_exp

integrations_cloud_accounts_aggregate_bool_exp

Fields:

  • bool_and: integrations_cloud_accounts_aggregate_bool_exp_bool_and
  • bool_or: integrations_cloud_accounts_aggregate_bool_exp_bool_or
  • count: integrations_cloud_accounts_aggregate_bool_exp_count

integrations_cloud_accounts_aggregate_bool_exp_count

Fields:

  • arguments: [integrations_cloud_accounts_select_column!]
  • distinct: Boolean
  • filter: integrations_cloud_accounts_bool_exp
  • predicate: Int_comparison_exp!

integrations_cloud_accounts_aggregate_fields

aggregate fields of "integrations_cloud_accounts"

Fields:

  • count: Int!
  • max: integrations_cloud_accounts_max_fields
  • min: integrations_cloud_accounts_min_fields

integrations_cloud_accounts_aggregate_order_by

order by aggregate values of table "integrations_cloud_accounts"

Fields:

  • count: order_by
  • max: integrations_cloud_accounts_max_order_by
  • min: integrations_cloud_accounts_min_order_by

integrations_cloud_accounts_arr_rel_insert_input

input type for inserting array relation for remote table "integrations_cloud_accounts"

Fields:

  • data: [integrations_cloud_accounts_insert_input!]!
  • on_conflict: integrations_cloud_accounts_on_conflict - upsert condition

integrations_cloud_accounts_bool_exp

Boolean expression to filter rows from the table "integrations_cloud_accounts". All fields are combined with a logical 'AND'.

Fields:

  • _and: [integrations_cloud_accounts_bool_exp!]
  • _not: integrations_cloud_accounts_bool_exp
  • _or: [integrations_cloud_accounts_bool_exp!]
  • cloud_account: cloud_accounts_bool_exp
  • cloud_account_id: uuid_comparison_exp
  • default_log_provider: Boolean_comparison_exp
  • default_metrics_provider: Boolean_comparison_exp
  • default_traces_provider: Boolean_comparison_exp
  • id: uuid_comparison_exp
  • integration_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp

integrations_cloud_accounts_constraint

unique or primary key constraints on table "integrations_cloud_accounts"

Values:

  • integrations_cloud_accounts_integration_id_cloud_account_id_ten - unique or primary key constraint on columns "integration_id", "tenant_id", "cloud_account_id"
  • integrations_cloud_accounts_pkey - unique or primary key constraint on columns "id"

integrations_cloud_accounts_insert_input

input type for inserting data into table "integrations_cloud_accounts"

Fields:

  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_account_id: uuid
  • default_log_provider: Boolean
  • default_metrics_provider: Boolean
  • default_traces_provider: Boolean
  • id: uuid
  • integration_id: uuid
  • tenant_id: uuid

integrations_cloud_accounts_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • id: uuid
  • integration_id: uuid
  • tenant_id: uuid

integrations_cloud_accounts_max_order_by

order by max() on columns of table "integrations_cloud_accounts"

Fields:

  • cloud_account_id: order_by
  • id: order_by
  • integration_id: order_by
  • tenant_id: order_by

integrations_cloud_accounts_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • id: uuid
  • integration_id: uuid
  • tenant_id: uuid

integrations_cloud_accounts_min_order_by

order by min() on columns of table "integrations_cloud_accounts"

Fields:

  • cloud_account_id: order_by
  • id: order_by
  • integration_id: order_by
  • tenant_id: order_by

integrations_cloud_accounts_mutation_response

response of any mutation on the table "integrations_cloud_accounts"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integrations_cloud_accounts!]! - data from the rows affected by the mutation

integrations_cloud_accounts_on_conflict

on_conflict condition type for table "integrations_cloud_accounts"

Fields:

  • constraint: integrations_cloud_accounts_constraint!
  • update_columns: [integrations_cloud_accounts_update_column!]!
  • where: integrations_cloud_accounts_bool_exp

integrations_cloud_accounts_order_by

Ordering options when selecting data from "integrations_cloud_accounts".

Fields:

  • cloud_account: cloud_accounts_order_by
  • cloud_account_id: order_by
  • default_log_provider: order_by
  • default_metrics_provider: order_by
  • default_traces_provider: order_by
  • id: order_by
  • integration_id: order_by
  • tenant_id: order_by

integrations_cloud_accounts_pk_columns_input

primary key columns input for table: integrations_cloud_accounts

Fields:

  • id: uuid!

integrations_cloud_accounts_select_column

select columns of table "integrations_cloud_accounts"

Values:

  • cloud_account_id - column name
  • default_log_provider - column name
  • default_metrics_provider - column name
  • default_traces_provider - column name
  • id - column name
  • integration_id - column name
  • tenant_id - column name

integrations_cloud_accounts_set_input

input type for updating data in table "integrations_cloud_accounts"

Fields:

  • cloud_account_id: uuid
  • default_log_provider: Boolean
  • default_metrics_provider: Boolean
  • default_traces_provider: Boolean
  • id: uuid
  • integration_id: uuid
  • tenant_id: uuid

integrations_cloud_accounts_stream_cursor_input

Streaming cursor of the table "integrations_cloud_accounts"

Fields:

  • initial_value: integrations_cloud_accounts_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integrations_cloud_accounts_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • default_log_provider: Boolean
  • default_metrics_provider: Boolean
  • default_traces_provider: Boolean
  • id: uuid
  • integration_id: uuid
  • tenant_id: uuid

integrations_cloud_accounts_update_column

update columns of table "integrations_cloud_accounts"

Values:

  • cloud_account_id - column name
  • default_log_provider - column name
  • default_metrics_provider - column name
  • default_traces_provider - column name
  • id - column name
  • integration_id - column name
  • tenant_id - column name

integrations_constraint

unique or primary key constraints on table "integrations"

Values:

  • integrations_pkey - unique or primary key constraint on columns "id"
  • integrations_source_type_name_tenant_id_key - unique or primary key constraint on columns "source", "type", "tenant_id", "name"

integrations_insert_input

input type for inserting data into table "integrations"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • integration_config_values: integration_config_values_arr_rel_insert_input
  • integration_source: integration_sources_obj_rel_insert_input
  • integration_status: integration_statuses_obj_rel_insert_input
  • integration_type: integration_types_obj_rel_insert_input
  • integrations_cloud_accounts: integrations_cloud_accounts_arr_rel_insert_input
  • labels: json
  • name: String
  • source: String
  • status: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userCreatedBy: users_obj_rel_insert_input

integrations_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • name: String
  • source: String
  • status: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

integrations_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • name: String
  • source: String
  • status: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

integrations_mutation_response

response of any mutation on the table "integrations"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [integrations!]! - data from the rows affected by the mutation

integrations_obj_rel_insert_input

input type for inserting object relation for remote table "integrations"

Fields:

  • data: integrations_insert_input!
  • on_conflict: integrations_on_conflict - upsert condition

integrations_on_conflict

on_conflict condition type for table "integrations"

Fields:

  • constraint: integrations_constraint!
  • update_columns: [integrations_update_column!]!
  • where: integrations_bool_exp

integrations_order_by

Ordering options when selecting data from "integrations".

Fields:

  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • integration_config_values_aggregate: integration_config_values_aggregate_order_by
  • integration_source: integration_sources_order_by
  • integration_status: integration_statuses_order_by
  • integration_type: integration_types_order_by
  • integrations_cloud_accounts_aggregate: integrations_cloud_accounts_aggregate_order_by
  • labels: order_by
  • name: order_by
  • source: order_by
  • status: order_by
  • tenant_id: order_by
  • type: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userCreatedBy: users_order_by

integrations_pk_columns_input

primary key columns input for table: integrations

Fields:

  • id: uuid!

integrations_select_column

select columns of table "integrations"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • labels - column name
  • name - column name
  • source - column name
  • status - column name
  • tenant_id - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

integrations_set_input

input type for updating data in table "integrations"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • labels: json
  • name: String
  • source: String
  • status: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

integrations_stream_cursor_input

Streaming cursor of the table "integrations"

Fields:

  • initial_value: integrations_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

integrations_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • labels: json
  • name: String
  • source: String
  • status: String
  • tenant_id: uuid
  • type: String
  • updated_at: timestamp
  • updated_by: uuid

integrations_update_column

update columns of table "integrations"

Values:

  • created_at - column name
  • created_by - column name
  • id - column name
  • labels - column name
  • name - column name
  • source - column name
  • status - column name
  • tenant_id - column name
  • type - column name
  • updated_at - column name
  • updated_by - column name

jira_configurations_aggregate_bool_exp

Fields:

  • bool_and: jira_configurations_aggregate_bool_exp_bool_and
  • bool_or: jira_configurations_aggregate_bool_exp_bool_or
  • count: jira_configurations_aggregate_bool_exp_count

jira_configurations_aggregate_bool_exp_count

Fields:

  • arguments: [jira_configurations_select_column!]
  • distinct: Boolean
  • filter: jira_configurations_bool_exp
  • predicate: Int_comparison_exp!

jira_configurations_aggregate_fields

aggregate fields of "jira_configurations"

Fields:

  • count: Int!
  • max: jira_configurations_max_fields
  • min: jira_configurations_min_fields

jira_configurations_aggregate_order_by

order by aggregate values of table "jira_configurations"

Fields:

  • count: order_by
  • max: jira_configurations_max_order_by
  • min: jira_configurations_min_order_by

jira_configurations_arr_rel_insert_input

input type for inserting array relation for remote table "jira_configurations"

Fields:

  • data: [jira_configurations_insert_input!]!
  • on_conflict: jira_configurations_on_conflict - upsert condition

jira_configurations_bool_exp

Boolean expression to filter rows from the table "jira_configurations". All fields are combined with a logical 'AND'.

Fields:

  • _and: [jira_configurations_bool_exp!]
  • _not: jira_configurations_bool_exp
  • _or: [jira_configurations_bool_exp!]
  • auth_type: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • is_active: Boolean_comparison_exp
  • last_connected: timestamp_comparison_exp
  • name: String_comparison_exp
  • password: String_comparison_exp
  • priorities: json_comparison_exp
  • projects: json_comparison_exp
  • status: String_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • tool: ticket_tool_types_enum_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • url: String_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp
  • username: String_comparison_exp
  • users: json_comparison_exp

jira_configurations_constraint

unique or primary key constraints on table "jira_configurations"

Values:

  • jira_configurations_pkey - unique or primary key constraint on columns "id"
  • jira_configurations_tenant_name_key - unique or primary key constraint on columns "tenant", "name"

jira_configurations_insert_input

input type for inserting data into table "jira_configurations"

Fields:

  • auth_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_active: Boolean
  • last_connected: timestamp
  • name: String
  • password: String
  • priorities: json
  • projects: json
  • status: String
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • tool: ticket_tool_types_enum
  • updated_at: timestamp
  • updated_by: uuid
  • url: String
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input
  • username: String
  • users: json

jira_configurations_max_fields

aggregate max on columns

Fields:

  • auth_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • last_connected: timestamp
  • name: String
  • password: String
  • status: String
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • url: String
  • username: String

jira_configurations_max_order_by

order by max() on columns of table "jira_configurations"

Fields:

  • auth_type: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • last_connected: order_by
  • name: order_by
  • password: order_by
  • status: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by
  • url: order_by
  • username: order_by

jira_configurations_min_fields

aggregate min on columns

Fields:

  • auth_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • last_connected: timestamp
  • name: String
  • password: String
  • status: String
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • url: String
  • username: String

jira_configurations_min_order_by

order by min() on columns of table "jira_configurations"

Fields:

  • auth_type: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • last_connected: order_by
  • name: order_by
  • password: order_by
  • status: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by
  • url: order_by
  • username: order_by

jira_configurations_mutation_response

response of any mutation on the table "jira_configurations"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [jira_configurations!]! - data from the rows affected by the mutation

jira_configurations_on_conflict

on_conflict condition type for table "jira_configurations"

Fields:

  • constraint: jira_configurations_constraint!
  • update_columns: [jira_configurations_update_column!]!
  • where: jira_configurations_bool_exp

jira_configurations_order_by

Ordering options when selecting data from "jira_configurations".

Fields:

  • auth_type: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • is_active: order_by
  • last_connected: order_by
  • name: order_by
  • password: order_by
  • priorities: order_by
  • projects: order_by
  • status: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • tool: order_by
  • updated_at: order_by
  • updated_by: order_by
  • url: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by
  • username: order_by
  • users: order_by

jira_configurations_pk_columns_input

primary key columns input for table: jira_configurations

Fields:

  • id: uuid!

jira_configurations_select_column

select columns of table "jira_configurations"

Values:

  • auth_type - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • is_active - column name
  • last_connected - column name
  • name - column name
  • password - column name
  • priorities - column name
  • projects - column name
  • status - column name
  • tenant - column name
  • tool - column name
  • updated_at - column name
  • updated_by - column name
  • url - column name
  • username - column name
  • users - column name

jira_configurations_set_input

input type for updating data in table "jira_configurations"

Fields:

  • auth_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_active: Boolean
  • last_connected: timestamp
  • name: String
  • password: String
  • priorities: json
  • projects: json
  • status: String
  • tenant: uuid
  • tool: ticket_tool_types_enum
  • updated_at: timestamp
  • updated_by: uuid
  • url: String
  • username: String
  • users: json

jira_configurations_stream_cursor_input

Streaming cursor of the table "jira_configurations"

Fields:

  • initial_value: jira_configurations_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

jira_configurations_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • auth_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_active: Boolean
  • last_connected: timestamp
  • name: String
  • password: String
  • priorities: json
  • projects: json
  • status: String
  • tenant: uuid
  • tool: ticket_tool_types_enum
  • updated_at: timestamp
  • updated_by: uuid
  • url: String
  • username: String
  • users: json

jira_configurations_update_column

update columns of table "jira_configurations"

Values:

  • auth_type - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • is_active - column name
  • last_connected - column name
  • name - column name
  • password - column name
  • priorities - column name
  • projects - column name
  • status - column name
  • tenant - column name
  • tool - column name
  • updated_at - column name
  • updated_by - column name
  • url - column name
  • username - column name
  • users - column name

ms_teams_channels_aggregate_fields

aggregate fields of "ms_teams_channels"

Fields:

  • count: Int!
  • max: ms_teams_channels_max_fields
  • min: ms_teams_channels_min_fields

ms_teams_channels_bool_exp

Boolean expression to filter rows from the table "ms_teams_channels". All fields are combined with a logical 'AND'.

Fields:

  • _and: [ms_teams_channels_bool_exp!]
  • _not: ms_teams_channels_bool_exp
  • _or: [ms_teams_channels_bool_exp!]
  • channels: json_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • installation_id: uuid_comparison_exp
  • team_id: String_comparison_exp
  • team_name: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

ms_teams_channels_constraint

unique or primary key constraints on table "ms_teams_channels"

Values:

  • ms_teams_channels_pkey - unique or primary key constraint on columns "id"
  • ms_teams_channels_tenant_id_installation_id_key - unique or primary key constraint on columns "installation_id", "tenant_id"

ms_teams_channels_insert_input

input type for inserting data into table "ms_teams_channels"

Fields:

  • channels: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • installation_id: uuid
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

ms_teams_channels_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • installation_id: uuid
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

ms_teams_channels_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • installation_id: uuid
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

ms_teams_channels_mutation_response

response of any mutation on the table "ms_teams_channels"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [ms_teams_channels!]! - data from the rows affected by the mutation

ms_teams_channels_on_conflict

on_conflict condition type for table "ms_teams_channels"

Fields:

  • constraint: ms_teams_channels_constraint!
  • update_columns: [ms_teams_channels_update_column!]!
  • where: ms_teams_channels_bool_exp

ms_teams_channels_order_by

Ordering options when selecting data from "ms_teams_channels".

Fields:

  • channels: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • installation_id: order_by
  • team_id: order_by
  • team_name: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

ms_teams_channels_pk_columns_input

primary key columns input for table: ms_teams_channels

Fields:

  • id: uuid!

ms_teams_channels_select_column

select columns of table "ms_teams_channels"

Values:

  • channels - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • installation_id - column name
  • team_id - column name
  • team_name - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

ms_teams_channels_set_input

input type for updating data in table "ms_teams_channels"

Fields:

  • channels: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • installation_id: uuid
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

ms_teams_channels_stream_cursor_input

Streaming cursor of the table "ms_teams_channels"

Fields:

  • initial_value: ms_teams_channels_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

ms_teams_channels_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • channels: json
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • installation_id: uuid
  • team_id: String
  • team_name: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

ms_teams_channels_update_column

update columns of table "ms_teams_channels"

Values:

  • channels - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • installation_id - column name
  • team_id - column name
  • team_name - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

slack_bots_aggregate_fields

aggregate fields of "slack_bots"

Fields:

  • count: Int!
  • max: slack_bots_max_fields
  • min: slack_bots_min_fields

slack_bots_bool_exp

Boolean expression to filter rows from the table "slack_bots". All fields are combined with a logical 'AND'.

Fields:

  • _and: [slack_bots_bool_exp!]
  • _not: slack_bots_bool_exp
  • _or: [slack_bots_bool_exp!]
  • app_id: String_comparison_exp
  • bot_id: String_comparison_exp
  • bot_refresh_token: String_comparison_exp
  • bot_scopes: String_comparison_exp
  • bot_token: String_comparison_exp
  • bot_token_expires_at: String_comparison_exp
  • bot_user_id: String_comparison_exp
  • client_id: String_comparison_exp
  • enterprise_id: String_comparison_exp
  • enterprise_name: String_comparison_exp
  • id: uuid_comparison_exp
  • installed_at: timestamp_comparison_exp
  • is_enterprise_install: Boolean_comparison_exp
  • team_id: String_comparison_exp
  • team_name: String_comparison_exp
  • tenant_id: uuid_comparison_exp

slack_bots_constraint

unique or primary key constraints on table "slack_bots"

Values:

  • slack_bots_pkey - unique or primary key constraint on columns "id"

slack_bots_insert_input

input type for inserting data into table "slack_bots"

Fields:

  • app_id: String
  • bot_id: String
  • bot_refresh_token: String
  • bot_scopes: String
  • bot_token: String
  • bot_token_expires_at: String
  • bot_user_id: String
  • client_id: String
  • enterprise_id: String
  • enterprise_name: String
  • id: uuid
  • installed_at: timestamp
  • is_enterprise_install: Boolean
  • team_id: String
  • team_name: String
  • tenant_id: uuid

slack_bots_max_fields

aggregate max on columns

Fields:

  • app_id: String
  • bot_id: String
  • bot_refresh_token: String
  • bot_scopes: String
  • bot_token: String
  • bot_token_expires_at: String
  • bot_user_id: String
  • client_id: String
  • enterprise_id: String
  • enterprise_name: String
  • id: uuid
  • installed_at: timestamp
  • team_id: String
  • team_name: String
  • tenant_id: uuid

slack_bots_min_fields

aggregate min on columns

Fields:

  • app_id: String
  • bot_id: String
  • bot_refresh_token: String
  • bot_scopes: String
  • bot_token: String
  • bot_token_expires_at: String
  • bot_user_id: String
  • client_id: String
  • enterprise_id: String
  • enterprise_name: String
  • id: uuid
  • installed_at: timestamp
  • team_id: String
  • team_name: String
  • tenant_id: uuid

slack_bots_mutation_response

response of any mutation on the table "slack_bots"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [slack_bots!]! - data from the rows affected by the mutation

slack_bots_on_conflict

on_conflict condition type for table "slack_bots"

Fields:

  • constraint: slack_bots_constraint!
  • update_columns: [slack_bots_update_column!]!
  • where: slack_bots_bool_exp

slack_bots_order_by

Ordering options when selecting data from "slack_bots".

Fields:

  • app_id: order_by
  • bot_id: order_by
  • bot_refresh_token: order_by
  • bot_scopes: order_by
  • bot_token: order_by
  • bot_token_expires_at: order_by
  • bot_user_id: order_by
  • client_id: order_by
  • enterprise_id: order_by
  • enterprise_name: order_by
  • id: order_by
  • installed_at: order_by
  • is_enterprise_install: order_by
  • team_id: order_by
  • team_name: order_by
  • tenant_id: order_by

slack_bots_pk_columns_input

primary key columns input for table: slack_bots

Fields:

  • id: uuid!

slack_bots_select_column

select columns of table "slack_bots"

Values:

  • app_id - column name
  • bot_id - column name
  • bot_refresh_token - column name
  • bot_scopes - column name
  • bot_token - column name
  • bot_token_expires_at - column name
  • bot_user_id - column name
  • client_id - column name
  • enterprise_id - column name
  • enterprise_name - column name
  • id - column name
  • installed_at - column name
  • is_enterprise_install - column name
  • team_id - column name
  • team_name - column name
  • tenant_id - column name

slack_bots_set_input

input type for updating data in table "slack_bots"

Fields:

  • app_id: String
  • bot_id: String
  • bot_refresh_token: String
  • bot_scopes: String
  • bot_token: String
  • bot_token_expires_at: String
  • bot_user_id: String
  • client_id: String
  • enterprise_id: String
  • enterprise_name: String
  • id: uuid
  • installed_at: timestamp
  • is_enterprise_install: Boolean
  • team_id: String
  • team_name: String
  • tenant_id: uuid

slack_bots_stream_cursor_input

Streaming cursor of the table "slack_bots"

Fields:

  • initial_value: slack_bots_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

slack_bots_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • app_id: String
  • bot_id: String
  • bot_refresh_token: String
  • bot_scopes: String
  • bot_token: String
  • bot_token_expires_at: String
  • bot_user_id: String
  • client_id: String
  • enterprise_id: String
  • enterprise_name: String
  • id: uuid
  • installed_at: timestamp
  • is_enterprise_install: Boolean
  • team_id: String
  • team_name: String
  • tenant_id: uuid

slack_bots_update_column

update columns of table "slack_bots"

Values:

  • app_id - column name
  • bot_id - column name
  • bot_refresh_token - column name
  • bot_scopes - column name
  • bot_token - column name
  • bot_token_expires_at - column name
  • bot_user_id - column name
  • client_id - column name
  • enterprise_id - column name
  • enterprise_name - column name
  • id - column name
  • installed_at - column name
  • is_enterprise_install - column name
  • team_id - column name
  • team_name - column name
  • tenant_id - column name

slack_oauth_states_aggregate_fields

aggregate fields of "slack_oauth_states"

Fields:

  • count: Int!
  • max: slack_oauth_states_max_fields
  • min: slack_oauth_states_min_fields

slack_oauth_states_bool_exp

Boolean expression to filter rows from the table "slack_oauth_states". All fields are combined with a logical 'AND'.

Fields:

  • _and: [slack_oauth_states_bool_exp!]
  • _not: slack_oauth_states_bool_exp
  • _or: [slack_oauth_states_bool_exp!]
  • expire_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • state: String_comparison_exp
  • tenant_id: uuid_comparison_exp

slack_oauth_states_constraint

unique or primary key constraints on table "slack_oauth_states"

Values:

  • slack_oauth_states_pkey - unique or primary key constraint on columns "id"

slack_oauth_states_insert_input

input type for inserting data into table "slack_oauth_states"

Fields:

  • expire_at: timestamp
  • id: uuid
  • state: String
  • tenant_id: uuid

slack_oauth_states_max_fields

aggregate max on columns

Fields:

  • expire_at: timestamp
  • id: uuid
  • state: String
  • tenant_id: uuid

slack_oauth_states_min_fields

aggregate min on columns

Fields:

  • expire_at: timestamp
  • id: uuid
  • state: String
  • tenant_id: uuid

slack_oauth_states_mutation_response

response of any mutation on the table "slack_oauth_states"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [slack_oauth_states!]! - data from the rows affected by the mutation

slack_oauth_states_on_conflict

on_conflict condition type for table "slack_oauth_states"

Fields:

  • constraint: slack_oauth_states_constraint!
  • update_columns: [slack_oauth_states_update_column!]!
  • where: slack_oauth_states_bool_exp

slack_oauth_states_order_by

Ordering options when selecting data from "slack_oauth_states".

Fields:

  • expire_at: order_by
  • id: order_by
  • state: order_by
  • tenant_id: order_by

slack_oauth_states_pk_columns_input

primary key columns input for table: slack_oauth_states

Fields:

  • id: uuid!

slack_oauth_states_select_column

select columns of table "slack_oauth_states"

Values:

  • expire_at - column name
  • id - column name
  • state - column name
  • tenant_id - column name

slack_oauth_states_set_input

input type for updating data in table "slack_oauth_states"

Fields:

  • expire_at: timestamp
  • id: uuid
  • state: String
  • tenant_id: uuid

slack_oauth_states_stream_cursor_input

Streaming cursor of the table "slack_oauth_states"

Fields:

  • initial_value: slack_oauth_states_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

slack_oauth_states_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • expire_at: timestamp
  • id: uuid
  • state: String
  • tenant_id: uuid

slack_oauth_states_update_column

update columns of table "slack_oauth_states"

Values:

  • expire_at - column name
  • id - column name
  • state - column name
  • tenant_id - column name
Configuration (237 types)

configuration_store_aggregate_fields

aggregate fields of "configuration_store"

Fields:

  • count: Int!
  • max: configuration_store_max_fields
  • min: configuration_store_min_fields

configuration_store_bool_exp

Boolean expression to filter rows from the table "configuration_store". All fields are combined with a logical 'AND'.

Fields:

  • _and: [configuration_store_bool_exp!]
  • _not: configuration_store_bool_exp
  • _or: [configuration_store_bool_exp!]
  • account_id: uuid_comparison_exp
  • config_type: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • id: uuid_comparison_exp
  • is_active: Boolean_comparison_exp
  • key: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • value: String_comparison_exp

configuration_store_constraint

unique or primary key constraints on table "configuration_store"

Values:

  • configuration_store_pkey - unique or primary key constraint on columns "id"

configuration_store_insert_input

input type for inserting data into table "configuration_store"

Fields:

  • account_id: uuid
  • config_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_active: Boolean
  • key: String
  • tenant_id: uuid
  • value: String

configuration_store_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • config_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • key: String
  • tenant_id: uuid
  • value: String

configuration_store_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • config_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • key: String
  • tenant_id: uuid
  • value: String

configuration_store_mutation_response

response of any mutation on the table "configuration_store"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [configuration_store!]! - data from the rows affected by the mutation

configuration_store_on_conflict

on_conflict condition type for table "configuration_store"

Fields:

  • constraint: configuration_store_constraint!
  • update_columns: [configuration_store_update_column!]!
  • where: configuration_store_bool_exp

configuration_store_order_by

Ordering options when selecting data from "configuration_store".

Fields:

  • account_id: order_by
  • config_type: order_by
  • created_at: order_by
  • created_by: order_by
  • id: order_by
  • is_active: order_by
  • key: order_by
  • tenant_id: order_by
  • value: order_by

configuration_store_pk_columns_input

primary key columns input for table: configuration_store

Fields:

  • id: uuid!

configuration_store_select_column

select columns of table "configuration_store"

Values:

  • account_id - column name
  • config_type - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • is_active - column name
  • key - column name
  • tenant_id - column name
  • value - column name

configuration_store_set_input

input type for updating data in table "configuration_store"

Fields:

  • account_id: uuid
  • config_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_active: Boolean
  • key: String
  • tenant_id: uuid
  • value: String

configuration_store_stream_cursor_input

Streaming cursor of the table "configuration_store"

Fields:

  • initial_value: configuration_store_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

configuration_store_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • config_type: String
  • created_at: timestamp
  • created_by: uuid
  • id: uuid
  • is_active: Boolean
  • key: String
  • tenant_id: uuid
  • value: String

configuration_store_update_column

update columns of table "configuration_store"

Values:

  • account_id - column name
  • config_type - column name
  • created_at - column name
  • created_by - column name
  • id - column name
  • is_active - column name
  • key - column name
  • tenant_id - column name
  • value - column name

etl_jobs_aggregate_fields

aggregate fields of "etl_jobs"

Fields:

  • avg: etl_jobs_avg_fields
  • count: Int!
  • max: etl_jobs_max_fields
  • min: etl_jobs_min_fields
  • stddev: etl_jobs_stddev_fields
  • stddev_pop: etl_jobs_stddev_pop_fields
  • stddev_samp: etl_jobs_stddev_samp_fields
  • sum: etl_jobs_sum_fields
  • var_pop: etl_jobs_var_pop_fields
  • var_samp: etl_jobs_var_samp_fields
  • variance: etl_jobs_variance_fields

etl_jobs_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • additional_data: jsonb
  • host_details: jsonb

etl_jobs_avg_fields

aggregate avg on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

etl_jobs_bool_exp

Boolean expression to filter rows from the table "etl_jobs". All fields are combined with a logical 'AND'.

Fields:

  • _and: [etl_jobs_bool_exp!]
  • _not: etl_jobs_bool_exp
  • _or: [etl_jobs_bool_exp!]
  • additional_data: jsonb_comparison_exp
  • created_at: timestamp_comparison_exp
  • duplicate_records: Int_comparison_exp
  • host_details: jsonb_comparison_exp
  • id: uuid_comparison_exp
  • job_trigger_id: String_comparison_exp
  • job_trigger_type: String_comparison_exp
  • job_type: String_comparison_exp
  • new_records: Int_comparison_exp
  • processed_records: Int_comparison_exp
  • status: String_comparison_exp
  • status_text: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • time_taken: Int_comparison_exp
  • updated_at: timestamp_comparison_exp

etl_jobs_constraint

unique or primary key constraints on table "etl_jobs"

Values:

  • etl_jobs_pkey - unique or primary key constraint on columns "id"

etl_jobs_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • additional_data: [String!]
  • host_details: [String!]

etl_jobs_delete_elem_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

Fields:

  • additional_data: Int
  • host_details: Int

etl_jobs_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • additional_data: String
  • host_details: String

etl_jobs_inc_input

input type for incrementing numeric columns in table "etl_jobs"

Fields:

  • duplicate_records: Int
  • new_records: Int
  • processed_records: Int
  • time_taken: Int

etl_jobs_insert_input

input type for inserting data into table "etl_jobs"

Fields:

  • additional_data: jsonb
  • created_at: timestamp
  • duplicate_records: Int
  • host_details: jsonb
  • id: uuid
  • job_trigger_id: String
  • job_trigger_type: String
  • job_type: String
  • new_records: Int
  • processed_records: Int
  • status: String
  • status_text: String
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp

etl_jobs_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • duplicate_records: Int
  • id: uuid
  • job_trigger_id: String
  • job_trigger_type: String
  • job_type: String
  • new_records: Int
  • processed_records: Int
  • status: String
  • status_text: String
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp

etl_jobs_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • duplicate_records: Int
  • id: uuid
  • job_trigger_id: String
  • job_trigger_type: String
  • job_type: String
  • new_records: Int
  • processed_records: Int
  • status: String
  • status_text: String
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp

etl_jobs_mutation_response

response of any mutation on the table "etl_jobs"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [etl_jobs!]! - data from the rows affected by the mutation

etl_jobs_on_conflict

on_conflict condition type for table "etl_jobs"

Fields:

  • constraint: etl_jobs_constraint!
  • update_columns: [etl_jobs_update_column!]!
  • where: etl_jobs_bool_exp

etl_jobs_order_by

Ordering options when selecting data from "etl_jobs".

Fields:

  • additional_data: order_by
  • created_at: order_by
  • duplicate_records: order_by
  • host_details: order_by
  • id: order_by
  • job_trigger_id: order_by
  • job_trigger_type: order_by
  • job_type: order_by
  • new_records: order_by
  • processed_records: order_by
  • status: order_by
  • status_text: order_by
  • tenant_id: order_by
  • time_taken: order_by
  • updated_at: order_by

etl_jobs_pk_columns_input

primary key columns input for table: etl_jobs

Fields:

  • id: uuid!

etl_jobs_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • additional_data: jsonb
  • host_details: jsonb

etl_jobs_select_column

select columns of table "etl_jobs"

Values:

  • additional_data - column name
  • created_at - column name
  • duplicate_records - column name
  • host_details - column name
  • id - column name
  • job_trigger_id - column name
  • job_trigger_type - column name
  • job_type - column name
  • new_records - column name
  • processed_records - column name
  • status - column name
  • status_text - column name
  • tenant_id - column name
  • time_taken - column name
  • updated_at - column name

etl_jobs_set_input

input type for updating data in table "etl_jobs"

Fields:

  • additional_data: jsonb
  • created_at: timestamp
  • duplicate_records: Int
  • host_details: jsonb
  • id: uuid
  • job_trigger_id: String
  • job_trigger_type: String
  • job_type: String
  • new_records: Int
  • processed_records: Int
  • status: String
  • status_text: String
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp

etl_jobs_stddev_fields

aggregate stddev on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

etl_jobs_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

etl_jobs_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

etl_jobs_stream_cursor_input

Streaming cursor of the table "etl_jobs"

Fields:

  • initial_value: etl_jobs_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

etl_jobs_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • additional_data: jsonb
  • created_at: timestamp
  • duplicate_records: Int
  • host_details: jsonb
  • id: uuid
  • job_trigger_id: String
  • job_trigger_type: String
  • job_type: String
  • new_records: Int
  • processed_records: Int
  • status: String
  • status_text: String
  • tenant_id: uuid
  • time_taken: Int
  • updated_at: timestamp

etl_jobs_sum_fields

aggregate sum on columns

Fields:

  • duplicate_records: Int
  • new_records: Int
  • processed_records: Int
  • time_taken: Int

etl_jobs_update_column

update columns of table "etl_jobs"

Values:

  • additional_data - column name
  • created_at - column name
  • duplicate_records - column name
  • host_details - column name
  • id - column name
  • job_trigger_id - column name
  • job_trigger_type - column name
  • job_type - column name
  • new_records - column name
  • processed_records - column name
  • status - column name
  • status_text - column name
  • tenant_id - column name
  • time_taken - column name
  • updated_at - column name

etl_jobs_var_pop_fields

aggregate var_pop on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

etl_jobs_var_samp_fields

aggregate var_samp on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

etl_jobs_variance_fields

aggregate variance on columns

Fields:

  • duplicate_records: Float
  • new_records: Float
  • processed_records: Float
  • time_taken: Float

feature_aggregate_fields

aggregate fields of "feature"

Fields:

  • count: Int!
  • max: feature_max_fields
  • min: feature_min_fields

feature_bool_exp

Boolean expression to filter rows from the table "feature". All fields are combined with a logical 'AND'.

Fields:

  • _and: [feature_bool_exp!]
  • _not: feature_bool_exp
  • _or: [feature_bool_exp!]
  • description: String_comparison_exp
  • feature_flags: feature_flag_bool_exp
  • feature_flags_aggregate: feature_flag_aggregate_bool_exp
  • value: String_comparison_exp

feature_constraint

unique or primary key constraints on table "feature"

Values:

  • feature_pkey - unique or primary key constraint on columns "value"

feature_flag_aggregate_bool_exp

Fields:

  • count: feature_flag_aggregate_bool_exp_count

feature_flag_aggregate_bool_exp_count

Fields:

  • arguments: [feature_flag_select_column!]
  • distinct: Boolean
  • filter: feature_flag_bool_exp
  • predicate: Int_comparison_exp!

feature_flag_aggregate_fields

aggregate fields of "feature_flag"

Fields:

  • count: Int!
  • max: feature_flag_max_fields
  • min: feature_flag_min_fields

feature_flag_aggregate_order_by

order by aggregate values of table "feature_flag"

Fields:

  • count: order_by
  • max: feature_flag_max_order_by
  • min: feature_flag_min_order_by

feature_flag_arr_rel_insert_input

input type for inserting array relation for remote table "feature_flag"

Fields:

  • data: [feature_flag_insert_input!]!
  • on_conflict: feature_flag_on_conflict - upsert condition

feature_flag_bool_exp

Boolean expression to filter rows from the table "feature_flag". All fields are combined with a logical 'AND'.

Fields:

  • _and: [feature_flag_bool_exp!]
  • _not: feature_flag_bool_exp
  • _or: [feature_flag_bool_exp!]
  • account_id: uuid_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • cloud_account_aggregate: cloud_accounts_aggregate_bool_exp
  • created_at: timestamptz_comparison_exp
  • feature_id: feature_enum_comparison_exp
  • feature_module_id: String_comparison_exp
  • id: uuid_comparison_exp
  • status: String_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp

feature_flag_constraint

unique or primary key constraints on table "feature_flag"

Values:

  • feature_flag_feature_id_tenant_id_account_id_key - unique or primary key constraint on columns "account_id", "feature_id", "tenant_id"
  • feature_flag_pkey - unique or primary key constraint on columns "id"
  • feature_flag_unique_tenant_feature_null_account - unique or primary key constraint on columns "feature_id", "tenant_id"

feature_flag_insert_input

input type for inserting data into table "feature_flag"

Fields:

  • account_id: uuid
  • cloud_account: cloud_accounts_arr_rel_insert_input
  • created_at: timestamptz
  • feature_id: feature_enum
  • feature_module_id: String
  • id: uuid
  • status: String
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid

feature_flag_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamptz
  • feature_module_id: String
  • id: uuid
  • status: String
  • tenant_id: uuid

feature_flag_max_order_by

order by max() on columns of table "feature_flag"

Fields:

  • account_id: order_by
  • created_at: order_by
  • feature_module_id: order_by
  • id: order_by
  • status: order_by
  • tenant_id: order_by

feature_flag_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamptz
  • feature_module_id: String
  • id: uuid
  • status: String
  • tenant_id: uuid

feature_flag_min_order_by

order by min() on columns of table "feature_flag"

Fields:

  • account_id: order_by
  • created_at: order_by
  • feature_module_id: order_by
  • id: order_by
  • status: order_by
  • tenant_id: order_by

feature_flag_mutation_response

response of any mutation on the table "feature_flag"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [feature_flag!]! - data from the rows affected by the mutation

feature_flag_on_conflict

on_conflict condition type for table "feature_flag"

Fields:

  • constraint: feature_flag_constraint!
  • update_columns: [feature_flag_update_column!]!
  • where: feature_flag_bool_exp

feature_flag_order_by

Ordering options when selecting data from "feature_flag".

Fields:

  • account_id: order_by
  • cloud_account_aggregate: cloud_accounts_aggregate_order_by
  • created_at: order_by
  • feature_id: order_by
  • feature_module_id: order_by
  • id: order_by
  • status: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by

feature_flag_pk_columns_input

primary key columns input for table: feature_flag

Fields:

  • id: uuid!

feature_flag_select_column

select columns of table "feature_flag"

Values:

  • account_id - column name
  • created_at - column name
  • feature_id - column name
  • feature_module_id - column name
  • id - column name
  • status - column name
  • tenant_id - column name

feature_flag_set_input

input type for updating data in table "feature_flag"

Fields:

  • account_id: uuid
  • created_at: timestamptz
  • feature_id: feature_enum
  • feature_module_id: String
  • id: uuid
  • status: String
  • tenant_id: uuid

feature_flag_stream_cursor_input

Streaming cursor of the table "feature_flag"

Fields:

  • initial_value: feature_flag_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

feature_flag_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamptz
  • feature_id: feature_enum
  • feature_module_id: String
  • id: uuid
  • status: String
  • tenant_id: uuid

feature_flag_update_column

update columns of table "feature_flag"

Values:

  • account_id - column name
  • created_at - column name
  • feature_id - column name
  • feature_module_id - column name
  • id - column name
  • status - column name
  • tenant_id - column name

feature_insert_input

input type for inserting data into table "feature"

Fields:

  • description: String
  • feature_flags: feature_flag_arr_rel_insert_input
  • value: String

feature_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

feature_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

feature_mutation_response

response of any mutation on the table "feature"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [feature!]! - data from the rows affected by the mutation

feature_on_conflict

on_conflict condition type for table "feature"

Fields:

  • constraint: feature_constraint!
  • update_columns: [feature_update_column!]!
  • where: feature_bool_exp

feature_order_by

Ordering options when selecting data from "feature".

Fields:

  • description: order_by
  • feature_flags_aggregate: feature_flag_aggregate_order_by
  • value: order_by

feature_pk_columns_input

primary key columns input for table: feature

Fields:

  • value: String!

feature_select_column

select columns of table "feature"

Values:

  • description - column name
  • value - column name

feature_set_input

input type for updating data in table "feature"

Fields:

  • description: String
  • value: String

feature_stream_cursor_input

Streaming cursor of the table "feature"

Fields:

  • initial_value: feature_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

feature_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

feature_update_column

update columns of table "feature"

Values:

  • description - column name
  • value - column name

slo_config_aggregate_fields

aggregate fields of "slo_config"

Fields:

  • avg: slo_config_avg_fields
  • count: Int!
  • max: slo_config_max_fields
  • min: slo_config_min_fields
  • stddev: slo_config_stddev_fields
  • stddev_pop: slo_config_stddev_pop_fields
  • stddev_samp: slo_config_stddev_samp_fields
  • sum: slo_config_sum_fields
  • var_pop: slo_config_var_pop_fields
  • var_samp: slo_config_var_samp_fields
  • variance: slo_config_variance_fields

slo_config_avg_fields

aggregate avg on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_config_bool_exp

Boolean expression to filter rows from the table "slo_config". All fields are combined with a logical 'AND'.

Fields:

  • _and: [slo_config_bool_exp!]
  • _not: slo_config_bool_exp
  • _or: [slo_config_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: String_comparison_exp
  • description: String_comparison_exp
  • enabled: Boolean_comparison_exp
  • filter_bad_query: String_comparison_exp
  • filter_good_query: String_comparison_exp
  • goal: numeric_comparison_exp
  • histogram_query: String_comparison_exp
  • id: uuid_comparison_exp
  • method: String_comparison_exp
  • name: String_comparison_exp
  • schedule: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • threshold: numeric_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: String_comparison_exp
  • window: numeric_comparison_exp
  • workload_name: String_comparison_exp
  • workload_namespace: String_comparison_exp

slo_config_constraint

unique or primary key constraints on table "slo_config"

Values:

  • slo_config_pkey - unique or primary key constraint on columns "id"
  • slo_config_workload_namespace_name_workload_name_tenant_id_clou - unique or primary key constraint on columns "tenant_id", "workload_namespace", "cloud_account_id", "workload_name", "name"

slo_config_inc_input

input type for incrementing numeric columns in table "slo_config"

Fields:

  • goal: numeric
  • threshold: numeric
  • window: numeric

slo_config_insert_input

input type for inserting data into table "slo_config"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • description: String
  • enabled: Boolean
  • filter_bad_query: String
  • filter_good_query: String
  • goal: numeric
  • histogram_query: String
  • id: uuid
  • method: String
  • name: String
  • schedule: String
  • tenant_id: uuid
  • threshold: numeric
  • updated_at: timestamp
  • updated_by: String
  • window: numeric
  • workload_name: String
  • workload_namespace: String

slo_config_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • description: String
  • filter_bad_query: String
  • filter_good_query: String
  • goal: numeric
  • histogram_query: String
  • id: uuid
  • method: String
  • name: String
  • schedule: String
  • tenant_id: uuid
  • threshold: numeric
  • updated_at: timestamp
  • updated_by: String
  • window: numeric
  • workload_name: String
  • workload_namespace: String

slo_config_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • description: String
  • filter_bad_query: String
  • filter_good_query: String
  • goal: numeric
  • histogram_query: String
  • id: uuid
  • method: String
  • name: String
  • schedule: String
  • tenant_id: uuid
  • threshold: numeric
  • updated_at: timestamp
  • updated_by: String
  • window: numeric
  • workload_name: String
  • workload_namespace: String

slo_config_mutation_response

response of any mutation on the table "slo_config"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [slo_config!]! - data from the rows affected by the mutation

slo_config_obj_rel_insert_input

input type for inserting object relation for remote table "slo_config"

Fields:

  • data: slo_config_insert_input!
  • on_conflict: slo_config_on_conflict - upsert condition

slo_config_on_conflict

on_conflict condition type for table "slo_config"

Fields:

  • constraint: slo_config_constraint!
  • update_columns: [slo_config_update_column!]!
  • where: slo_config_bool_exp

slo_config_order_by

Ordering options when selecting data from "slo_config".

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • enabled: order_by
  • filter_bad_query: order_by
  • filter_good_query: order_by
  • goal: order_by
  • histogram_query: order_by
  • id: order_by
  • method: order_by
  • name: order_by
  • schedule: order_by
  • tenant_id: order_by
  • threshold: order_by
  • updated_at: order_by
  • updated_by: order_by
  • window: order_by
  • workload_name: order_by
  • workload_namespace: order_by

slo_config_pk_columns_input

primary key columns input for table: slo_config

Fields:

  • id: uuid!

slo_config_select_column

select columns of table "slo_config"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • enabled - column name
  • filter_bad_query - column name
  • filter_good_query - column name
  • goal - column name
  • histogram_query - column name
  • id - column name
  • method - column name
  • name - column name
  • schedule - column name
  • tenant_id - column name
  • threshold - column name
  • updated_at - column name
  • updated_by - column name
  • window - column name
  • workload_name - column name
  • workload_namespace - column name

slo_config_set_input

input type for updating data in table "slo_config"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • description: String
  • enabled: Boolean
  • filter_bad_query: String
  • filter_good_query: String
  • goal: numeric
  • histogram_query: String
  • id: uuid
  • method: String
  • name: String
  • schedule: String
  • tenant_id: uuid
  • threshold: numeric
  • updated_at: timestamp
  • updated_by: String
  • window: numeric
  • workload_name: String
  • workload_namespace: String

slo_config_stddev_fields

aggregate stddev on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_config_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_config_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_config_stream_cursor_input

Streaming cursor of the table "slo_config"

Fields:

  • initial_value: slo_config_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

slo_config_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamp
  • created_by: String
  • description: String
  • enabled: Boolean
  • filter_bad_query: String
  • filter_good_query: String
  • goal: numeric
  • histogram_query: String
  • id: uuid
  • method: String
  • name: String
  • schedule: String
  • tenant_id: uuid
  • threshold: numeric
  • updated_at: timestamp
  • updated_by: String
  • window: numeric
  • workload_name: String
  • workload_namespace: String

slo_config_sum_fields

aggregate sum on columns

Fields:

  • goal: numeric
  • threshold: numeric
  • window: numeric

slo_config_update_column

update columns of table "slo_config"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • enabled - column name
  • filter_bad_query - column name
  • filter_good_query - column name
  • goal - column name
  • histogram_query - column name
  • id - column name
  • method - column name
  • name - column name
  • schedule - column name
  • tenant_id - column name
  • threshold - column name
  • updated_at - column name
  • updated_by - column name
  • window - column name
  • workload_name - column name
  • workload_namespace - column name

slo_config_var_pop_fields

aggregate var_pop on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_config_var_samp_fields

aggregate var_samp on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_config_variance_fields

aggregate variance on columns

Fields:

  • goal: Float
  • threshold: Float
  • window: Float

slo_report_aggregate_fields

aggregate fields of "slo_report"

Fields:

  • avg: slo_report_avg_fields
  • count: Int!
  • max: slo_report_max_fields
  • min: slo_report_min_fields
  • stddev: slo_report_stddev_fields
  • stddev_pop: slo_report_stddev_pop_fields
  • stddev_samp: slo_report_stddev_samp_fields
  • sum: slo_report_sum_fields
  • var_pop: slo_report_var_pop_fields
  • var_samp: slo_report_var_samp_fields
  • variance: slo_report_variance_fields

slo_report_avg_fields

aggregate avg on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_report_bool_exp

Boolean expression to filter rows from the table "slo_report". All fields are combined with a logical 'AND'.

Fields:

  • _and: [slo_report_bool_exp!]
  • _not: slo_report_bool_exp
  • _or: [slo_report_bool_exp!]
  • bad_events_count: numeric_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • config_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • error_budget_burn_rate: numeric_comparison_exp
  • error_budget_burn_rate_threshold: numeric_comparison_exp
  • error_budget_consumed_ratio: numeric_comparison_exp
  • error_budget_measurement: numeric_comparison_exp
  • error_budget_minutes: numeric_comparison_exp
  • error_budget_remaining_minutes: numeric_comparison_exp
  • error_budget_target: numeric_comparison_exp
  • error_minutes: numeric_comparison_exp
  • events_count: numeric_comparison_exp
  • gap: numeric_comparison_exp
  • good_events_count: numeric_comparison_exp
  • id: uuid_comparison_exp
  • sli_measurement: numeric_comparison_exp
  • slo_config: slo_config_bool_exp
  • status: slo_status_enum_comparison_exp
  • tenant_id: uuid_comparison_exp
  • timestamp: timestamp_comparison_exp
  • updated_at: timestamptz_comparison_exp
  • workload_name: String_comparison_exp
  • workload_namespace: String_comparison_exp

slo_report_constraint

unique or primary key constraints on table "slo_report"

Values:

  • slo_report_config_id_tenant_id_workload_name_workload_namespace - unique or primary key constraint on columns "config_id", "tenant_id", "workload_namespace", "cloud_account_id", "workload_name", "timestamp"
  • slo_report_pkey - unique or primary key constraint on columns "id"

slo_report_inc_input

input type for incrementing numeric columns in table "slo_report"

Fields:

  • bad_events_count: numeric
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • sli_measurement: numeric

slo_report_insert_input

input type for inserting data into table "slo_report"

Fields:

  • bad_events_count: numeric
  • cloud_account_id: uuid
  • config_id: uuid
  • created_at: timestamptz
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • id: uuid
  • sli_measurement: numeric
  • slo_config: slo_config_obj_rel_insert_input
  • status: slo_status_enum
  • tenant_id: uuid
  • timestamp: timestamp
  • updated_at: timestamptz
  • workload_name: String
  • workload_namespace: String

slo_report_max_fields

aggregate max on columns

Fields:

  • bad_events_count: numeric
  • cloud_account_id: uuid
  • config_id: uuid
  • created_at: timestamptz
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • id: uuid
  • sli_measurement: numeric
  • tenant_id: uuid
  • timestamp: timestamp
  • updated_at: timestamptz
  • workload_name: String
  • workload_namespace: String

slo_report_min_fields

aggregate min on columns

Fields:

  • bad_events_count: numeric
  • cloud_account_id: uuid
  • config_id: uuid
  • created_at: timestamptz
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • id: uuid
  • sli_measurement: numeric
  • tenant_id: uuid
  • timestamp: timestamp
  • updated_at: timestamptz
  • workload_name: String
  • workload_namespace: String

slo_report_mutation_response

response of any mutation on the table "slo_report"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [slo_report!]! - data from the rows affected by the mutation

slo_report_on_conflict

on_conflict condition type for table "slo_report"

Fields:

  • constraint: slo_report_constraint!
  • update_columns: [slo_report_update_column!]!
  • where: slo_report_bool_exp

slo_report_order_by

Ordering options when selecting data from "slo_report".

Fields:

  • bad_events_count: order_by
  • cloud_account_id: order_by
  • config_id: order_by
  • created_at: order_by
  • error_budget_burn_rate: order_by
  • error_budget_burn_rate_threshold: order_by
  • error_budget_consumed_ratio: order_by
  • error_budget_measurement: order_by
  • error_budget_minutes: order_by
  • error_budget_remaining_minutes: order_by
  • error_budget_target: order_by
  • error_minutes: order_by
  • events_count: order_by
  • gap: order_by
  • good_events_count: order_by
  • id: order_by
  • sli_measurement: order_by
  • slo_config: slo_config_order_by
  • status: order_by
  • tenant_id: order_by
  • timestamp: order_by
  • updated_at: order_by
  • workload_name: order_by
  • workload_namespace: order_by

slo_report_pk_columns_input

primary key columns input for table: slo_report

Fields:

  • id: uuid!

slo_report_select_column

select columns of table "slo_report"

Values:

  • bad_events_count - column name
  • cloud_account_id - column name
  • config_id - column name
  • created_at - column name
  • error_budget_burn_rate - column name
  • error_budget_burn_rate_threshold - column name
  • error_budget_consumed_ratio - column name
  • error_budget_measurement - column name
  • error_budget_minutes - column name
  • error_budget_remaining_minutes - column name
  • error_budget_target - column name
  • error_minutes - column name
  • events_count - column name
  • gap - column name
  • good_events_count - column name
  • id - column name
  • sli_measurement - column name
  • status - column name
  • tenant_id - column name
  • timestamp - column name
  • updated_at - column name
  • workload_name - column name
  • workload_namespace - column name

slo_report_set_input

input type for updating data in table "slo_report"

Fields:

  • bad_events_count: numeric
  • cloud_account_id: uuid
  • config_id: uuid
  • created_at: timestamptz
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • id: uuid
  • sli_measurement: numeric
  • status: slo_status_enum
  • tenant_id: uuid
  • timestamp: timestamp
  • updated_at: timestamptz
  • workload_name: String
  • workload_namespace: String

slo_report_stddev_fields

aggregate stddev on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_report_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_report_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_report_stream_cursor_input

Streaming cursor of the table "slo_report"

Fields:

  • initial_value: slo_report_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

slo_report_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • bad_events_count: numeric
  • cloud_account_id: uuid
  • config_id: uuid
  • created_at: timestamptz
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • id: uuid
  • sli_measurement: numeric
  • status: slo_status_enum
  • tenant_id: uuid
  • timestamp: timestamp
  • updated_at: timestamptz
  • workload_name: String
  • workload_namespace: String

slo_report_sum_fields

aggregate sum on columns

Fields:

  • bad_events_count: numeric
  • error_budget_burn_rate: numeric
  • error_budget_burn_rate_threshold: numeric
  • error_budget_consumed_ratio: numeric
  • error_budget_measurement: numeric
  • error_budget_minutes: numeric
  • error_budget_remaining_minutes: numeric
  • error_budget_target: numeric
  • error_minutes: numeric
  • events_count: numeric
  • gap: numeric
  • good_events_count: numeric
  • sli_measurement: numeric

slo_report_update_column

update columns of table "slo_report"

Values:

  • bad_events_count - column name
  • cloud_account_id - column name
  • config_id - column name
  • created_at - column name
  • error_budget_burn_rate - column name
  • error_budget_burn_rate_threshold - column name
  • error_budget_consumed_ratio - column name
  • error_budget_measurement - column name
  • error_budget_minutes - column name
  • error_budget_remaining_minutes - column name
  • error_budget_target - column name
  • error_minutes - column name
  • events_count - column name
  • gap - column name
  • good_events_count - column name
  • id - column name
  • sli_measurement - column name
  • status - column name
  • tenant_id - column name
  • timestamp - column name
  • updated_at - column name
  • workload_name - column name
  • workload_namespace - column name

slo_report_var_pop_fields

aggregate var_pop on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_report_var_samp_fields

aggregate var_samp on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_report_variance_fields

aggregate variance on columns

Fields:

  • bad_events_count: Float
  • error_budget_burn_rate: Float
  • error_budget_burn_rate_threshold: Float
  • error_budget_consumed_ratio: Float
  • error_budget_measurement: Float
  • error_budget_minutes: Float
  • error_budget_remaining_minutes: Float
  • error_budget_target: Float
  • error_minutes: Float
  • events_count: Float
  • gap: Float
  • good_events_count: Float
  • sli_measurement: Float

slo_status_aggregate_fields

aggregate fields of "slo_status"

Fields:

  • count: Int!
  • max: slo_status_max_fields
  • min: slo_status_min_fields

slo_status_bool_exp

Boolean expression to filter rows from the table "slo_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [slo_status_bool_exp!]
  • _not: slo_status_bool_exp
  • _or: [slo_status_bool_exp!]
  • value: String_comparison_exp

slo_status_constraint

unique or primary key constraints on table "slo_status"

Values:

  • slo_status_pkey - unique or primary key constraint on columns "value"

slo_status_insert_input

input type for inserting data into table "slo_status"

Fields:

  • value: String

slo_status_max_fields

aggregate max on columns

Fields:

  • value: String

slo_status_min_fields

aggregate min on columns

Fields:

  • value: String

slo_status_mutation_response

response of any mutation on the table "slo_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [slo_status!]! - data from the rows affected by the mutation

slo_status_on_conflict

on_conflict condition type for table "slo_status"

Fields:

  • constraint: slo_status_constraint!
  • update_columns: [slo_status_update_column!]!
  • where: slo_status_bool_exp

slo_status_order_by

Ordering options when selecting data from "slo_status".

Fields:

  • value: order_by

slo_status_pk_columns_input

primary key columns input for table: slo_status

Fields:

  • value: String!

slo_status_select_column

select columns of table "slo_status"

Values:

  • value - column name

slo_status_set_input

input type for updating data in table "slo_status"

Fields:

  • value: String

slo_status_stream_cursor_input

Streaming cursor of the table "slo_status"

Fields:

  • initial_value: slo_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

slo_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

slo_status_update_column

update columns of table "slo_status"

Values:

  • value - column name

upgrade_plan_aggregate_fields

aggregate fields of "upgrade_plan"

Fields:

  • count: Int!
  • max: upgrade_plan_max_fields
  • min: upgrade_plan_min_fields

upgrade_plan_audit_aggregate_fields

aggregate fields of "upgrade_plan_audit"

Fields:

  • count: Int!
  • max: upgrade_plan_audit_max_fields
  • min: upgrade_plan_audit_min_fields

upgrade_plan_audit_bool_exp

Boolean expression to filter rows from the table "upgrade_plan_audit". All fields are combined with a logical 'AND'.

Fields:

  • _and: [upgrade_plan_audit_bool_exp!]
  • _not: upgrade_plan_audit_bool_exp
  • _or: [upgrade_plan_audit_bool_exp!]
  • account_id: uuid_comparison_exp
  • action: String_comparison_exp
  • actioned_by: uuid_comparison_exp
  • comments: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • field: String_comparison_exp
  • id: uuid_comparison_exp
  • new_value: String_comparison_exp
  • old_value: String_comparison_exp
  • plan_id: uuid_comparison_exp
  • step_id: uuid_comparison_exp
  • task_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp
  • userActionedBy: users_bool_exp

upgrade_plan_audit_constraint

unique or primary key constraints on table "upgrade_plan_audit"

Values:

  • upgrade_plan_audit_pkey - unique or primary key constraint on columns "id"

upgrade_plan_audit_insert_input

input type for inserting data into table "upgrade_plan_audit"

Fields:

  • account_id: uuid
  • action: String
  • actioned_by: uuid
  • comments: String
  • created_at: timestamp
  • field: String
  • id: uuid
  • new_value: String
  • old_value: String
  • plan_id: uuid
  • step_id: uuid
  • task_id: uuid
  • tenant_id: uuid
  • userActionedBy: users_obj_rel_insert_input

upgrade_plan_audit_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • action: String
  • actioned_by: uuid
  • comments: String
  • created_at: timestamp
  • field: String
  • id: uuid
  • new_value: String
  • old_value: String
  • plan_id: uuid
  • step_id: uuid
  • task_id: uuid
  • tenant_id: uuid

upgrade_plan_audit_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • action: String
  • actioned_by: uuid
  • comments: String
  • created_at: timestamp
  • field: String
  • id: uuid
  • new_value: String
  • old_value: String
  • plan_id: uuid
  • step_id: uuid
  • task_id: uuid
  • tenant_id: uuid

upgrade_plan_audit_mutation_response

response of any mutation on the table "upgrade_plan_audit"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [upgrade_plan_audit!]! - data from the rows affected by the mutation

upgrade_plan_audit_on_conflict

on_conflict condition type for table "upgrade_plan_audit"

Fields:

  • constraint: upgrade_plan_audit_constraint!
  • update_columns: [upgrade_plan_audit_update_column!]!
  • where: upgrade_plan_audit_bool_exp

upgrade_plan_audit_order_by

Ordering options when selecting data from "upgrade_plan_audit".

Fields:

  • account_id: order_by
  • action: order_by
  • actioned_by: order_by
  • comments: order_by
  • created_at: order_by
  • field: order_by
  • id: order_by
  • new_value: order_by
  • old_value: order_by
  • plan_id: order_by
  • step_id: order_by
  • task_id: order_by
  • tenant_id: order_by
  • userActionedBy: users_order_by

upgrade_plan_audit_pk_columns_input

primary key columns input for table: upgrade_plan_audit

Fields:

  • id: uuid!

upgrade_plan_audit_select_column

select columns of table "upgrade_plan_audit"

Values:

  • account_id - column name
  • action - column name
  • actioned_by - column name
  • comments - column name
  • created_at - column name
  • field - column name
  • id - column name
  • new_value - column name
  • old_value - column name
  • plan_id - column name
  • step_id - column name
  • task_id - column name
  • tenant_id - column name

upgrade_plan_audit_set_input

input type for updating data in table "upgrade_plan_audit"

Fields:

  • account_id: uuid
  • action: String
  • actioned_by: uuid
  • comments: String
  • created_at: timestamp
  • field: String
  • id: uuid
  • new_value: String
  • old_value: String
  • plan_id: uuid
  • step_id: uuid
  • task_id: uuid
  • tenant_id: uuid

upgrade_plan_audit_stream_cursor_input

Streaming cursor of the table "upgrade_plan_audit"

Fields:

  • initial_value: upgrade_plan_audit_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

upgrade_plan_audit_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • action: String
  • actioned_by: uuid
  • comments: String
  • created_at: timestamp
  • field: String
  • id: uuid
  • new_value: String
  • old_value: String
  • plan_id: uuid
  • step_id: uuid
  • task_id: uuid
  • tenant_id: uuid

upgrade_plan_audit_update_column

update columns of table "upgrade_plan_audit"

Values:

  • account_id - column name
  • action - column name
  • actioned_by - column name
  • comments - column name
  • created_at - column name
  • field - column name
  • id - column name
  • new_value - column name
  • old_value - column name
  • plan_id - column name
  • step_id - column name
  • task_id - column name
  • tenant_id - column name

upgrade_plan_bool_exp

Boolean expression to filter rows from the table "upgrade_plan". All fields are combined with a logical 'AND'.

Fields:

  • _and: [upgrade_plan_bool_exp!]
  • _not: upgrade_plan_bool_exp
  • _or: [upgrade_plan_bool_exp!]
  • account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • current_version: String_comparison_exp
  • id: uuid_comparison_exp
  • k8s_provider: String_comparison_exp
  • owner: uuid_comparison_exp
  • status: upgrade_plan_status_type_enum_comparison_exp
  • target_version: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp

upgrade_plan_constraint

unique or primary key constraints on table "upgrade_plan"

Values:

  • upgrade_plan_pkey - unique or primary key constraint on columns "id"

upgrade_plan_insert_input

input type for inserting data into table "upgrade_plan"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • current_version: String
  • id: uuid
  • k8s_provider: String
  • owner: uuid
  • status: upgrade_plan_status_type_enum
  • target_version: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

upgrade_plan_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • current_version: String
  • id: uuid
  • k8s_provider: String
  • owner: uuid
  • target_version: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

upgrade_plan_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • current_version: String
  • id: uuid
  • k8s_provider: String
  • owner: uuid
  • target_version: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

upgrade_plan_mutation_response

response of any mutation on the table "upgrade_plan"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [upgrade_plan!]! - data from the rows affected by the mutation

upgrade_plan_on_conflict

on_conflict condition type for table "upgrade_plan"

Fields:

  • constraint: upgrade_plan_constraint!
  • update_columns: [upgrade_plan_update_column!]!
  • where: upgrade_plan_bool_exp

upgrade_plan_order_by

Ordering options when selecting data from "upgrade_plan".

Fields:

  • account_id: order_by
  • created_at: order_by
  • created_by: order_by
  • current_version: order_by
  • id: order_by
  • k8s_provider: order_by
  • owner: order_by
  • status: order_by
  • target_version: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

upgrade_plan_pk_columns_input

primary key columns input for table: upgrade_plan

Fields:

  • id: uuid!

upgrade_plan_select_column

select columns of table "upgrade_plan"

Values:

  • account_id - column name
  • created_at - column name
  • created_by - column name
  • current_version - column name
  • id - column name
  • k8s_provider - column name
  • owner - column name
  • status - column name
  • target_version - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

upgrade_plan_set_input

input type for updating data in table "upgrade_plan"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • current_version: String
  • id: uuid
  • k8s_provider: String
  • owner: uuid
  • status: upgrade_plan_status_type_enum
  • target_version: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

upgrade_plan_status_type_aggregate_fields

aggregate fields of "upgrade_plan_status_type"

Fields:

  • count: Int!
  • max: upgrade_plan_status_type_max_fields
  • min: upgrade_plan_status_type_min_fields

upgrade_plan_status_type_bool_exp

Boolean expression to filter rows from the table "upgrade_plan_status_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [upgrade_plan_status_type_bool_exp!]
  • _not: upgrade_plan_status_type_bool_exp
  • _or: [upgrade_plan_status_type_bool_exp!]
  • comment: String_comparison_exp
  • value: String_comparison_exp

upgrade_plan_status_type_constraint

unique or primary key constraints on table "upgrade_plan_status_type"

Values:

  • upgrade_plan_status_type_pkey - unique or primary key constraint on columns "value"

upgrade_plan_status_type_insert_input

input type for inserting data into table "upgrade_plan_status_type"

Fields:

  • comment: String
  • value: String

upgrade_plan_status_type_max_fields

aggregate max on columns

Fields:

  • comment: String
  • value: String

upgrade_plan_status_type_min_fields

aggregate min on columns

Fields:

  • comment: String
  • value: String

upgrade_plan_status_type_mutation_response

response of any mutation on the table "upgrade_plan_status_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [upgrade_plan_status_type!]! - data from the rows affected by the mutation

upgrade_plan_status_type_on_conflict

on_conflict condition type for table "upgrade_plan_status_type"

Fields:

  • constraint: upgrade_plan_status_type_constraint!
  • update_columns: [upgrade_plan_status_type_update_column!]!
  • where: upgrade_plan_status_type_bool_exp

upgrade_plan_status_type_order_by

Ordering options when selecting data from "upgrade_plan_status_type".

Fields:

  • comment: order_by
  • value: order_by

upgrade_plan_status_type_pk_columns_input

primary key columns input for table: upgrade_plan_status_type

Fields:

  • value: String!

upgrade_plan_status_type_select_column

select columns of table "upgrade_plan_status_type"

Values:

  • comment - column name
  • value - column name

upgrade_plan_status_type_set_input

input type for updating data in table "upgrade_plan_status_type"

Fields:

  • comment: String
  • value: String

upgrade_plan_status_type_stream_cursor_input

Streaming cursor of the table "upgrade_plan_status_type"

Fields:

  • initial_value: upgrade_plan_status_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

upgrade_plan_status_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • comment: String
  • value: String

upgrade_plan_status_type_update_column

update columns of table "upgrade_plan_status_type"

Values:

  • comment - column name
  • value - column name

upgrade_plan_steps_aggregate_fields

aggregate fields of "upgrade_plan_steps"

Fields:

  • avg: upgrade_plan_steps_avg_fields
  • count: Int!
  • max: upgrade_plan_steps_max_fields
  • min: upgrade_plan_steps_min_fields
  • stddev: upgrade_plan_steps_stddev_fields
  • stddev_pop: upgrade_plan_steps_stddev_pop_fields
  • stddev_samp: upgrade_plan_steps_stddev_samp_fields
  • sum: upgrade_plan_steps_sum_fields
  • var_pop: upgrade_plan_steps_var_pop_fields
  • var_samp: upgrade_plan_steps_var_samp_fields
  • variance: upgrade_plan_steps_variance_fields

upgrade_plan_steps_avg_fields

aggregate avg on columns

Fields:

  • sequence: Float

upgrade_plan_steps_bool_exp

Boolean expression to filter rows from the table "upgrade_plan_steps". All fields are combined with a logical 'AND'.

Fields:

  • _and: [upgrade_plan_steps_bool_exp!]
  • _not: upgrade_plan_steps_bool_exp
  • _or: [upgrade_plan_steps_bool_exp!]
  • account_id: uuid_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • owner: uuid_comparison_exp
  • plan_id: uuid_comparison_exp
  • sequence: Int_comparison_exp
  • status: upgrade_plan_status_type_enum_comparison_exp
  • tenant_id: uuid_comparison_exp
  • title: String_comparison_exp
  • updated_by: uuid_comparison_exp

upgrade_plan_steps_constraint

unique or primary key constraints on table "upgrade_plan_steps"

Values:

  • upgrade_plan_steps_pkey - unique or primary key constraint on columns "id"

upgrade_plan_steps_inc_input

input type for incrementing numeric columns in table "upgrade_plan_steps"

Fields:

  • sequence: Int

upgrade_plan_steps_insert_input

input type for inserting data into table "upgrade_plan_steps"

Fields:

  • account_id: uuid
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • plan_id: uuid
  • sequence: Int
  • status: upgrade_plan_status_type_enum
  • tenant_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_steps_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • plan_id: uuid
  • sequence: Int
  • tenant_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_steps_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • plan_id: uuid
  • sequence: Int
  • tenant_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_steps_mutation_response

response of any mutation on the table "upgrade_plan_steps"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [upgrade_plan_steps!]! - data from the rows affected by the mutation

upgrade_plan_steps_on_conflict

on_conflict condition type for table "upgrade_plan_steps"

Fields:

  • constraint: upgrade_plan_steps_constraint!
  • update_columns: [upgrade_plan_steps_update_column!]!
  • where: upgrade_plan_steps_bool_exp

upgrade_plan_steps_order_by

Ordering options when selecting data from "upgrade_plan_steps".

Fields:

  • account_id: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • owner: order_by
  • plan_id: order_by
  • sequence: order_by
  • status: order_by
  • tenant_id: order_by
  • title: order_by
  • updated_by: order_by

upgrade_plan_steps_pk_columns_input

primary key columns input for table: upgrade_plan_steps

Fields:

  • id: uuid!

upgrade_plan_steps_select_column

select columns of table "upgrade_plan_steps"

Values:

  • account_id - column name
  • created_by - column name
  • description - column name
  • id - column name
  • owner - column name
  • plan_id - column name
  • sequence - column name
  • status - column name
  • tenant_id - column name
  • title - column name
  • updated_by - column name

upgrade_plan_steps_set_input

input type for updating data in table "upgrade_plan_steps"

Fields:

  • account_id: uuid
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • plan_id: uuid
  • sequence: Int
  • status: upgrade_plan_status_type_enum
  • tenant_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_steps_stddev_fields

aggregate stddev on columns

Fields:

  • sequence: Float

upgrade_plan_steps_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • sequence: Float

upgrade_plan_steps_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • sequence: Float

upgrade_plan_steps_stream_cursor_input

Streaming cursor of the table "upgrade_plan_steps"

Fields:

  • initial_value: upgrade_plan_steps_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

upgrade_plan_steps_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • plan_id: uuid
  • sequence: Int
  • status: upgrade_plan_status_type_enum
  • tenant_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_steps_sum_fields

aggregate sum on columns

Fields:

  • sequence: Int

upgrade_plan_steps_update_column

update columns of table "upgrade_plan_steps"

Values:

  • account_id - column name
  • created_by - column name
  • description - column name
  • id - column name
  • owner - column name
  • plan_id - column name
  • sequence - column name
  • status - column name
  • tenant_id - column name
  • title - column name
  • updated_by - column name

upgrade_plan_steps_var_pop_fields

aggregate var_pop on columns

Fields:

  • sequence: Float

upgrade_plan_steps_var_samp_fields

aggregate var_samp on columns

Fields:

  • sequence: Float

upgrade_plan_steps_variance_fields

aggregate variance on columns

Fields:

  • sequence: Float

upgrade_plan_stream_cursor_input

Streaming cursor of the table "upgrade_plan"

Fields:

  • initial_value: upgrade_plan_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

upgrade_plan_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • created_by: uuid
  • current_version: String
  • id: uuid
  • k8s_provider: String
  • owner: uuid
  • status: upgrade_plan_status_type_enum
  • target_version: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

upgrade_plan_tasks_aggregate_fields

aggregate fields of "upgrade_plan_tasks"

Fields:

  • avg: upgrade_plan_tasks_avg_fields
  • count: Int!
  • max: upgrade_plan_tasks_max_fields
  • min: upgrade_plan_tasks_min_fields
  • stddev: upgrade_plan_tasks_stddev_fields
  • stddev_pop: upgrade_plan_tasks_stddev_pop_fields
  • stddev_samp: upgrade_plan_tasks_stddev_samp_fields
  • sum: upgrade_plan_tasks_sum_fields
  • var_pop: upgrade_plan_tasks_var_pop_fields
  • var_samp: upgrade_plan_tasks_var_samp_fields
  • variance: upgrade_plan_tasks_variance_fields

upgrade_plan_tasks_avg_fields

aggregate avg on columns

Fields:

  • sequence: Float

upgrade_plan_tasks_bool_exp

Boolean expression to filter rows from the table "upgrade_plan_tasks". All fields are combined with a logical 'AND'.

Fields:

  • _and: [upgrade_plan_tasks_bool_exp!]
  • _not: upgrade_plan_tasks_bool_exp
  • _or: [upgrade_plan_tasks_bool_exp!]
  • action: String_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • is_required: Boolean_comparison_exp
  • owner: uuid_comparison_exp
  • resource_type: String_comparison_exp
  • sequence: Int_comparison_exp
  • status: upgrade_plan_status_type_enum_comparison_exp
  • step_id: uuid_comparison_exp
  • title: String_comparison_exp
  • updated_by: uuid_comparison_exp

upgrade_plan_tasks_constraint

unique or primary key constraints on table "upgrade_plan_tasks"

Values:

  • upgrade_plan_tasks_pkey - unique or primary key constraint on columns "id"

upgrade_plan_tasks_inc_input

input type for incrementing numeric columns in table "upgrade_plan_tasks"

Fields:

  • sequence: Int

upgrade_plan_tasks_insert_input

input type for inserting data into table "upgrade_plan_tasks"

Fields:

  • action: String
  • created_by: uuid
  • description: String
  • id: uuid
  • is_required: Boolean
  • owner: uuid
  • resource_type: String
  • sequence: Int
  • status: upgrade_plan_status_type_enum
  • step_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_tasks_max_fields

aggregate max on columns

Fields:

  • action: String
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • resource_type: String
  • sequence: Int
  • step_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_tasks_min_fields

aggregate min on columns

Fields:

  • action: String
  • created_by: uuid
  • description: String
  • id: uuid
  • owner: uuid
  • resource_type: String
  • sequence: Int
  • step_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_tasks_mutation_response

response of any mutation on the table "upgrade_plan_tasks"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [upgrade_plan_tasks!]! - data from the rows affected by the mutation

upgrade_plan_tasks_on_conflict

on_conflict condition type for table "upgrade_plan_tasks"

Fields:

  • constraint: upgrade_plan_tasks_constraint!
  • update_columns: [upgrade_plan_tasks_update_column!]!
  • where: upgrade_plan_tasks_bool_exp

upgrade_plan_tasks_order_by

Ordering options when selecting data from "upgrade_plan_tasks".

Fields:

  • action: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • is_required: order_by
  • owner: order_by
  • resource_type: order_by
  • sequence: order_by
  • status: order_by
  • step_id: order_by
  • title: order_by
  • updated_by: order_by

upgrade_plan_tasks_pk_columns_input

primary key columns input for table: upgrade_plan_tasks

Fields:

  • id: uuid!

upgrade_plan_tasks_select_column

select columns of table "upgrade_plan_tasks"

Values:

  • action - column name
  • created_by - column name
  • description - column name
  • id - column name
  • is_required - column name
  • owner - column name
  • resource_type - column name
  • sequence - column name
  • status - column name
  • step_id - column name
  • title - column name
  • updated_by - column name

upgrade_plan_tasks_set_input

input type for updating data in table "upgrade_plan_tasks"

Fields:

  • action: String
  • created_by: uuid
  • description: String
  • id: uuid
  • is_required: Boolean
  • owner: uuid
  • resource_type: String
  • sequence: Int
  • status: upgrade_plan_status_type_enum
  • step_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_tasks_stddev_fields

aggregate stddev on columns

Fields:

  • sequence: Float

upgrade_plan_tasks_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • sequence: Float

upgrade_plan_tasks_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • sequence: Float

upgrade_plan_tasks_stream_cursor_input

Streaming cursor of the table "upgrade_plan_tasks"

Fields:

  • initial_value: upgrade_plan_tasks_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

upgrade_plan_tasks_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • action: String
  • created_by: uuid
  • description: String
  • id: uuid
  • is_required: Boolean
  • owner: uuid
  • resource_type: String
  • sequence: Int
  • status: upgrade_plan_status_type_enum
  • step_id: uuid
  • title: String
  • updated_by: uuid

upgrade_plan_tasks_sum_fields

aggregate sum on columns

Fields:

  • sequence: Int

upgrade_plan_tasks_update_column

update columns of table "upgrade_plan_tasks"

Values:

  • action - column name
  • created_by - column name
  • description - column name
  • id - column name
  • is_required - column name
  • owner - column name
  • resource_type - column name
  • sequence - column name
  • status - column name
  • step_id - column name
  • title - column name
  • updated_by - column name

upgrade_plan_tasks_var_pop_fields

aggregate var_pop on columns

Fields:

  • sequence: Float

upgrade_plan_tasks_var_samp_fields

aggregate var_samp on columns

Fields:

  • sequence: Float

upgrade_plan_tasks_variance_fields

aggregate variance on columns

Fields:

  • sequence: Float

upgrade_plan_update_column

update columns of table "upgrade_plan"

Values:

  • account_id - column name
  • created_at - column name
  • created_by - column name
  • current_version - column name
  • id - column name
  • k8s_provider - column name
  • owner - column name
  • status - column name
  • target_version - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name
Data Warehouse (151 types)

dw_databases_aggregate_fields

aggregate fields of "dw_databases"

Fields:

  • avg: dw_databases_avg_fields
  • count: Int!
  • max: dw_databases_max_fields
  • min: dw_databases_min_fields
  • stddev: dw_databases_stddev_fields
  • stddev_pop: dw_databases_stddev_pop_fields
  • stddev_samp: dw_databases_stddev_samp_fields
  • sum: dw_databases_sum_fields
  • var_pop: dw_databases_var_pop_fields
  • var_samp: dw_databases_var_samp_fields
  • variance: dw_databases_variance_fields

dw_databases_avg_fields

aggregate avg on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_databases_bool_exp

Boolean expression to filter rows from the table "dw_databases". All fields are combined with a logical 'AND'.

Fields:

  • _and: [dw_databases_bool_exp!]
  • _not: dw_databases_bool_exp
  • _or: [dw_databases_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • database_name: String_comparison_exp
  • fail_safe_size: numeric_comparison_exp
  • row_count: numeric_comparison_exp
  • size: numeric_comparison_exp
  • table_count: bigint_comparison_exp
  • tenant_id: uuid_comparison_exp
  • time_travel_size: numeric_comparison_exp

dw_databases_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • fail_safe_size: numeric
  • row_count: numeric
  • size: numeric
  • table_count: bigint
  • tenant_id: uuid
  • time_travel_size: numeric

dw_databases_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • fail_safe_size: numeric
  • row_count: numeric
  • size: numeric
  • table_count: bigint
  • tenant_id: uuid
  • time_travel_size: numeric

dw_databases_order_by

Ordering options when selecting data from "dw_databases".

Fields:

  • cloud_account_id: order_by
  • database_name: order_by
  • fail_safe_size: order_by
  • row_count: order_by
  • size: order_by
  • table_count: order_by
  • tenant_id: order_by
  • time_travel_size: order_by

dw_databases_select_column

select columns of table "dw_databases"

Values:

  • cloud_account_id - column name
  • database_name - column name
  • fail_safe_size - column name
  • row_count - column name
  • size - column name
  • table_count - column name
  • tenant_id - column name
  • time_travel_size - column name

dw_databases_stddev_fields

aggregate stddev on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_databases_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_databases_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_databases_stream_cursor_input

Streaming cursor of the table "dw_databases"

Fields:

  • initial_value: dw_databases_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

dw_databases_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • fail_safe_size: numeric
  • row_count: numeric
  • size: numeric
  • table_count: bigint
  • tenant_id: uuid
  • time_travel_size: numeric

dw_databases_sum_fields

aggregate sum on columns

Fields:

  • fail_safe_size: numeric
  • row_count: numeric
  • size: numeric
  • table_count: bigint
  • time_travel_size: numeric

dw_databases_var_pop_fields

aggregate var_pop on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_databases_var_samp_fields

aggregate var_samp on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_databases_variance_fields

aggregate variance on columns

Fields:

  • fail_safe_size: Float
  • row_count: Float
  • size: Float
  • table_count: Float
  • time_travel_size: Float

dw_pipe_aggregate_fields

aggregate fields of "dw_pipe"

Fields:

  • avg: dw_pipe_avg_fields
  • count: Int!
  • max: dw_pipe_max_fields
  • min: dw_pipe_min_fields
  • stddev: dw_pipe_stddev_fields
  • stddev_pop: dw_pipe_stddev_pop_fields
  • stddev_samp: dw_pipe_stddev_samp_fields
  • sum: dw_pipe_sum_fields
  • var_pop: dw_pipe_var_pop_fields
  • var_samp: dw_pipe_var_samp_fields
  • variance: dw_pipe_variance_fields

dw_pipe_avg_fields

aggregate avg on columns

Fields:

  • pipe_id: Float

dw_pipe_bool_exp

Boolean expression to filter rows from the table "dw_pipe". All fields are combined with a logical 'AND'.

Fields:

  • _and: [dw_pipe_bool_exp!]
  • _not: dw_pipe_bool_exp
  • _or: [dw_pipe_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • created_at: timestamptz_comparison_exp
  • database_name: String_comparison_exp
  • deleted_at: timestamptz_comparison_exp
  • id: uuid_comparison_exp
  • owner: String_comparison_exp
  • pipe_id: Int_comparison_exp
  • pipe_name: String_comparison_exp
  • schema_name: String_comparison_exp
  • table_name: String_comparison_exp
  • tenant_id: uuid_comparison_exp

dw_pipe_constraint

unique or primary key constraints on table "dw_pipe"

Values:

  • dw_pipe_cloud_account_id_tenant_id_pipe_id_pipe_name_table__key - unique or primary key constraint on columns "pipe_name", "pipe_id", "tenant_id", "schema_name", "cloud_account_id", "table_name", "database_name"
  • dw_pipe_pkey - unique or primary key constraint on columns "id"

dw_pipe_inc_input

input type for incrementing numeric columns in table "dw_pipe"

Fields:

  • pipe_id: Int

dw_pipe_insert_input

input type for inserting data into table "dw_pipe"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamptz
  • database_name: String
  • deleted_at: timestamptz
  • id: uuid
  • owner: String
  • pipe_id: Int
  • pipe_name: String
  • schema_name: String
  • table_name: String
  • tenant_id: uuid

dw_pipe_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamptz
  • database_name: String
  • deleted_at: timestamptz
  • id: uuid
  • owner: String
  • pipe_id: Int
  • pipe_name: String
  • schema_name: String
  • table_name: String
  • tenant_id: uuid

dw_pipe_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • created_at: timestamptz
  • database_name: String
  • deleted_at: timestamptz
  • id: uuid
  • owner: String
  • pipe_id: Int
  • pipe_name: String
  • schema_name: String
  • table_name: String
  • tenant_id: uuid

dw_pipe_mutation_response

response of any mutation on the table "dw_pipe"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [dw_pipe!]! - data from the rows affected by the mutation

dw_pipe_on_conflict

on_conflict condition type for table "dw_pipe"

Fields:

  • constraint: dw_pipe_constraint!
  • update_columns: [dw_pipe_update_column!]!
  • where: dw_pipe_bool_exp

dw_pipe_order_by

Ordering options when selecting data from "dw_pipe".

Fields:

  • cloud_account_id: order_by
  • created_at: order_by
  • database_name: order_by
  • deleted_at: order_by
  • id: order_by
  • owner: order_by
  • pipe_id: order_by
  • pipe_name: order_by
  • schema_name: order_by
  • table_name: order_by
  • tenant_id: order_by

dw_pipe_pk_columns_input

primary key columns input for table: dw_pipe

Fields:

  • id: uuid!

dw_pipe_select_column

select columns of table "dw_pipe"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • database_name - column name
  • deleted_at - column name
  • id - column name
  • owner - column name
  • pipe_id - column name
  • pipe_name - column name
  • schema_name - column name
  • table_name - column name
  • tenant_id - column name

dw_pipe_set_input

input type for updating data in table "dw_pipe"

Fields:

  • cloud_account_id: uuid
  • created_at: timestamptz
  • database_name: String
  • deleted_at: timestamptz
  • id: uuid
  • owner: String
  • pipe_id: Int
  • pipe_name: String
  • schema_name: String
  • table_name: String
  • tenant_id: uuid

dw_pipe_stddev_fields

aggregate stddev on columns

Fields:

  • pipe_id: Float

dw_pipe_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • pipe_id: Float

dw_pipe_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • pipe_id: Float

dw_pipe_stream_cursor_input

Streaming cursor of the table "dw_pipe"

Fields:

  • initial_value: dw_pipe_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

dw_pipe_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • created_at: timestamptz
  • database_name: String
  • deleted_at: timestamptz
  • id: uuid
  • owner: String
  • pipe_id: Int
  • pipe_name: String
  • schema_name: String
  • table_name: String
  • tenant_id: uuid

dw_pipe_sum_fields

aggregate sum on columns

Fields:

  • pipe_id: Int

dw_pipe_update_column

update columns of table "dw_pipe"

Values:

  • cloud_account_id - column name
  • created_at - column name
  • database_name - column name
  • deleted_at - column name
  • id - column name
  • owner - column name
  • pipe_id - column name
  • pipe_name - column name
  • schema_name - column name
  • table_name - column name
  • tenant_id - column name

dw_pipe_usage_aggregate_fields

aggregate fields of "dw_pipe_usage"

Fields:

  • avg: dw_pipe_usage_avg_fields
  • count: Int!
  • max: dw_pipe_usage_max_fields
  • min: dw_pipe_usage_min_fields
  • stddev: dw_pipe_usage_stddev_fields
  • stddev_pop: dw_pipe_usage_stddev_pop_fields
  • stddev_samp: dw_pipe_usage_stddev_samp_fields
  • sum: dw_pipe_usage_sum_fields
  • var_pop: dw_pipe_usage_var_pop_fields
  • var_samp: dw_pipe_usage_var_samp_fields
  • variance: dw_pipe_usage_variance_fields

dw_pipe_usage_avg_fields

aggregate avg on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_usage_bool_exp

Boolean expression to filter rows from the table "dw_pipe_usage". All fields are combined with a logical 'AND'.

Fields:

  • _and: [dw_pipe_usage_bool_exp!]
  • _not: dw_pipe_usage_bool_exp
  • _or: [dw_pipe_usage_bool_exp!]
  • bytes_inserted: numeric_comparison_exp
  • cloud_account_id: uuid_comparison_exp
  • credit_used: numeric_comparison_exp
  • end_at: timestamptz_comparison_exp
  • files_inserted: numeric_comparison_exp
  • id: uuid_comparison_exp
  • pipe_id: Int_comparison_exp
  • pipe_name: String_comparison_exp
  • start_at: timestamptz_comparison_exp
  • tenant_id: uuid_comparison_exp

dw_pipe_usage_constraint

unique or primary key constraints on table "dw_pipe_usage"

Values:

  • dw_pipe_usage_cloud_account_id_tenant_id_pipe_id_start_at_end_a - unique or primary key constraint on columns "end_at", "pipe_id", "tenant_id", "start_at", "cloud_account_id"
  • dw_pipe_usage_pkey - unique or primary key constraint on columns "id"

dw_pipe_usage_inc_input

input type for incrementing numeric columns in table "dw_pipe_usage"

Fields:

  • bytes_inserted: numeric
  • credit_used: numeric
  • files_inserted: numeric
  • pipe_id: Int

dw_pipe_usage_insert_input

input type for inserting data into table "dw_pipe_usage"

Fields:

  • bytes_inserted: numeric
  • cloud_account_id: uuid
  • credit_used: numeric
  • end_at: timestamptz
  • files_inserted: numeric
  • id: uuid
  • pipe_id: Int
  • pipe_name: String
  • start_at: timestamptz
  • tenant_id: uuid

dw_pipe_usage_max_fields

aggregate max on columns

Fields:

  • bytes_inserted: numeric
  • cloud_account_id: uuid
  • credit_used: numeric
  • end_at: timestamptz
  • files_inserted: numeric
  • id: uuid
  • pipe_id: Int
  • pipe_name: String
  • start_at: timestamptz
  • tenant_id: uuid

dw_pipe_usage_min_fields

aggregate min on columns

Fields:

  • bytes_inserted: numeric
  • cloud_account_id: uuid
  • credit_used: numeric
  • end_at: timestamptz
  • files_inserted: numeric
  • id: uuid
  • pipe_id: Int
  • pipe_name: String
  • start_at: timestamptz
  • tenant_id: uuid

dw_pipe_usage_mutation_response

response of any mutation on the table "dw_pipe_usage"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [dw_pipe_usage!]! - data from the rows affected by the mutation

dw_pipe_usage_on_conflict

on_conflict condition type for table "dw_pipe_usage"

Fields:

  • constraint: dw_pipe_usage_constraint!
  • update_columns: [dw_pipe_usage_update_column!]!
  • where: dw_pipe_usage_bool_exp

dw_pipe_usage_order_by

Ordering options when selecting data from "dw_pipe_usage".

Fields:

  • bytes_inserted: order_by
  • cloud_account_id: order_by
  • credit_used: order_by
  • end_at: order_by
  • files_inserted: order_by
  • id: order_by
  • pipe_id: order_by
  • pipe_name: order_by
  • start_at: order_by
  • tenant_id: order_by

dw_pipe_usage_pk_columns_input

primary key columns input for table: dw_pipe_usage

Fields:

  • id: uuid!

dw_pipe_usage_select_column

select columns of table "dw_pipe_usage"

Values:

  • bytes_inserted - column name
  • cloud_account_id - column name
  • credit_used - column name
  • end_at - column name
  • files_inserted - column name
  • id - column name
  • pipe_id - column name
  • pipe_name - column name
  • start_at - column name
  • tenant_id - column name

dw_pipe_usage_set_input

input type for updating data in table "dw_pipe_usage"

Fields:

  • bytes_inserted: numeric
  • cloud_account_id: uuid
  • credit_used: numeric
  • end_at: timestamptz
  • files_inserted: numeric
  • id: uuid
  • pipe_id: Int
  • pipe_name: String
  • start_at: timestamptz
  • tenant_id: uuid

dw_pipe_usage_stddev_fields

aggregate stddev on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_usage_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_usage_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_usage_stream_cursor_input

Streaming cursor of the table "dw_pipe_usage"

Fields:

  • initial_value: dw_pipe_usage_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

dw_pipe_usage_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • bytes_inserted: numeric
  • cloud_account_id: uuid
  • credit_used: numeric
  • end_at: timestamptz
  • files_inserted: numeric
  • id: uuid
  • pipe_id: Int
  • pipe_name: String
  • start_at: timestamptz
  • tenant_id: uuid

dw_pipe_usage_sum_fields

aggregate sum on columns

Fields:

  • bytes_inserted: numeric
  • credit_used: numeric
  • files_inserted: numeric
  • pipe_id: Int

dw_pipe_usage_update_column

update columns of table "dw_pipe_usage"

Values:

  • bytes_inserted - column name
  • cloud_account_id - column name
  • credit_used - column name
  • end_at - column name
  • files_inserted - column name
  • id - column name
  • pipe_id - column name
  • pipe_name - column name
  • start_at - column name
  • tenant_id - column name

dw_pipe_usage_var_pop_fields

aggregate var_pop on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_usage_var_samp_fields

aggregate var_samp on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_usage_variance_fields

aggregate variance on columns

Fields:

  • bytes_inserted: Float
  • credit_used: Float
  • files_inserted: Float
  • pipe_id: Float

dw_pipe_var_pop_fields

aggregate var_pop on columns

Fields:

  • pipe_id: Float

dw_pipe_var_samp_fields

aggregate var_samp on columns

Fields:

  • pipe_id: Float

dw_pipe_variance_fields

aggregate variance on columns

Fields:

  • pipe_id: Float

dw_queries_aggregate_bool_exp

Fields:

  • avg: dw_queries_aggregate_bool_exp_avg
  • bool_and: dw_queries_aggregate_bool_exp_bool_and
  • bool_or: dw_queries_aggregate_bool_exp_bool_or
  • corr: dw_queries_aggregate_bool_exp_corr
  • count: dw_queries_aggregate_bool_exp_count
  • covar_samp: dw_queries_aggregate_bool_exp_covar_samp
  • max: dw_queries_aggregate_bool_exp_max
  • min: dw_queries_aggregate_bool_exp_min
  • stddev_samp: dw_queries_aggregate_bool_exp_stddev_samp
  • sum: dw_queries_aggregate_bool_exp_sum
  • var_samp: dw_queries_aggregate_bool_exp_var_samp

dw_queries_aggregate_bool_exp_count

Fields:

  • arguments: [dw_queries_select_column!]
  • distinct: Boolean
  • filter: dw_queries_bool_exp
  • predicate: Int_comparison_exp!

dw_queries_aggregate_fields

aggregate fields of "dw_queries"

Fields:

  • avg: dw_queries_avg_fields
  • count: Int!
  • max: dw_queries_max_fields
  • min: dw_queries_min_fields
  • stddev: dw_queries_stddev_fields
  • stddev_pop: dw_queries_stddev_pop_fields
  • stddev_samp: dw_queries_stddev_samp_fields
  • sum: dw_queries_sum_fields
  • var_pop: dw_queries_var_pop_fields
  • var_samp: dw_queries_var_samp_fields
  • variance: dw_queries_variance_fields

dw_queries_aggregate_order_by

order by aggregate values of table "dw_queries"

Fields:

  • avg: dw_queries_avg_order_by
  • count: order_by
  • max: dw_queries_max_order_by
  • min: dw_queries_min_order_by
  • stddev: dw_queries_stddev_order_by
  • stddev_pop: dw_queries_stddev_pop_order_by
  • stddev_samp: dw_queries_stddev_samp_order_by
  • sum: dw_queries_sum_order_by
  • var_pop: dw_queries_var_pop_order_by
  • var_samp: dw_queries_var_samp_order_by
  • variance: dw_queries_variance_order_by

dw_queries_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • tags: jsonb

dw_queries_arr_rel_insert_input

input type for inserting array relation for remote table "dw_queries"

Fields:

  • data: [dw_queries_insert_input!]!
  • on_conflict: dw_queries_on_conflict - upsert condition

dw_queries_avg_fields

aggregate avg on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_avg_order_by

order by avg() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_bool_exp

Boolean expression to filter rows from the table "dw_queries". All fields are combined with a logical 'AND'.

Fields:

  • _and: [dw_queries_bool_exp!]
  • _not: dw_queries_bool_exp
  • _or: [dw_queries_bool_exp!]
  • account_id: uuid_comparison_exp
  • bill: float8_comparison_exp
  • bill_interval_from: timestamp_comparison_exp
  • bill_interval_to: timestamp_comparison_exp
  • bill_total_duration_micro: numeric_comparison_exp
  • bytes_scanned: numeric_comparison_exp
  • bytes_spilled_locally: numeric_comparison_exp
  • bytes_spilled_remotely: numeric_comparison_exp
  • cloud_account: cloud_accounts_bool_exp
  • cloud_resourse: cloud_resourses_bool_exp
  • created_at: timestamp_comparison_exp
  • database_name: String_comparison_exp
  • db_username: String_comparison_exp
  • id: uuid_comparison_exp
  • partitions_scanned: numeric_comparison_exp
  • query_ended_at: timestamp_comparison_exp
  • query_error_message: String_comparison_exp
  • query_exec_duration_micro: numeric_comparison_exp
  • query_id: String_comparison_exp
  • query_md5: String_comparison_exp
  • query_normalized: String_comparison_exp
  • query_normalized_md5: String_comparison_exp
  • query_planning_duration_micro: numeric_comparison_exp
  • query_queue_duration_micro: Int_comparison_exp
  • query_remote_ip: String_comparison_exp
  • query_result_cache_hit: Boolean_comparison_exp
  • query_returned_bytes: numeric_comparison_exp
  • query_returned_rows: numeric_comparison_exp
  • query_session_id: String_comparison_exp
  • query_started_at: timestamp_comparison_exp
  • query_status: String_comparison_exp
  • query_text: String_comparison_exp
  • query_transaction_id: String_comparison_exp
  • query_type: String_comparison_exp
  • query_usage_limit: String_comparison_exp
  • queue_overload_time: numeric_comparison_exp
  • queue_provision_time: numeric_comparison_exp
  • queue_repair_time: numeric_comparison_exp
  • resource_id: uuid_comparison_exp
  • rpu: float8_comparison_exp
  • table_names: String_array_comparison_exp
  • tags: jsonb_comparison_exp
  • tenant: tenant_bool_exp
  • tenant_id: uuid_comparison_exp
  • transaction_block_time: numeric_comparison_exp

dw_queries_constraint

unique or primary key constraints on table "dw_queries"

Values:

  • cloud_resource_query_perf_pkey - unique or primary key constraint on columns "id"
  • cloud_resource_query_perf_tenant_id_resource_id_account_id_quer - unique or primary key constraint on columns "db_username", "account_id", "resource_id", "query_id", "tenant_id", "database_name"

dw_queries_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • tags: [String!]

dw_queries_delete_elem_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

Fields:

  • tags: Int

dw_queries_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • tags: String

dw_queries_inc_input

input type for incrementing numeric columns in table "dw_queries"

Fields:

  • bill: float8
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • partitions_scanned: numeric
  • query_exec_duration_micro: numeric
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • rpu: float8
  • transaction_block_time: numeric

dw_queries_insert_input

input type for inserting data into table "dw_queries"

Fields:

  • account_id: uuid
  • bill: float8
  • bill_interval_from: timestamp
  • bill_interval_to: timestamp
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • cloud_account: cloud_accounts_obj_rel_insert_input
  • cloud_resourse: cloud_resourses_obj_rel_insert_input
  • created_at: timestamp
  • database_name: String
  • db_username: String
  • id: uuid
  • partitions_scanned: numeric
  • query_ended_at: timestamp
  • query_error_message: String
  • query_exec_duration_micro: numeric
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_result_cache_hit: Boolean
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • query_session_id: String
  • query_started_at: timestamp
  • query_status: String
  • query_text: String
  • query_transaction_id: String
  • query_type: String
  • query_usage_limit: String
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • resource_id: uuid
  • rpu: float8
  • table_names: [String!]
  • tags: jsonb
  • tenant: tenant_obj_rel_insert_input
  • tenant_id: uuid
  • transaction_block_time: numeric

dw_queries_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • bill: float8
  • bill_interval_from: timestamp
  • bill_interval_to: timestamp
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • created_at: timestamp
  • database_name: String
  • db_username: String
  • id: uuid
  • partitions_scanned: numeric
  • query_ended_at: timestamp
  • query_error_message: String
  • query_exec_duration_micro: numeric
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • query_session_id: String
  • query_started_at: timestamp
  • query_status: String
  • query_text: String
  • query_transaction_id: String
  • query_type: String
  • query_usage_limit: String
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • resource_id: uuid
  • rpu: float8
  • table_names: [String!]
  • tenant_id: uuid
  • transaction_block_time: numeric

dw_queries_max_order_by

order by max() on columns of table "dw_queries"

Fields:

  • account_id: order_by
  • bill: order_by
  • bill_interval_from: order_by
  • bill_interval_to: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • created_at: order_by
  • database_name: order_by
  • db_username: order_by
  • id: order_by
  • partitions_scanned: order_by
  • query_ended_at: order_by
  • query_error_message: order_by
  • query_exec_duration_micro: order_by
  • query_id: order_by
  • query_md5: order_by
  • query_normalized: order_by
  • query_normalized_md5: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_remote_ip: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • query_session_id: order_by
  • query_started_at: order_by
  • query_status: order_by
  • query_text: order_by
  • query_transaction_id: order_by
  • query_type: order_by
  • query_usage_limit: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • resource_id: order_by
  • rpu: order_by
  • table_names: order_by
  • tenant_id: order_by
  • transaction_block_time: order_by

dw_queries_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • bill: float8
  • bill_interval_from: timestamp
  • bill_interval_to: timestamp
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • created_at: timestamp
  • database_name: String
  • db_username: String
  • id: uuid
  • partitions_scanned: numeric
  • query_ended_at: timestamp
  • query_error_message: String
  • query_exec_duration_micro: numeric
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • query_session_id: String
  • query_started_at: timestamp
  • query_status: String
  • query_text: String
  • query_transaction_id: String
  • query_type: String
  • query_usage_limit: String
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • resource_id: uuid
  • rpu: float8
  • table_names: [String!]
  • tenant_id: uuid
  • transaction_block_time: numeric

dw_queries_min_order_by

order by min() on columns of table "dw_queries"

Fields:

  • account_id: order_by
  • bill: order_by
  • bill_interval_from: order_by
  • bill_interval_to: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • created_at: order_by
  • database_name: order_by
  • db_username: order_by
  • id: order_by
  • partitions_scanned: order_by
  • query_ended_at: order_by
  • query_error_message: order_by
  • query_exec_duration_micro: order_by
  • query_id: order_by
  • query_md5: order_by
  • query_normalized: order_by
  • query_normalized_md5: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_remote_ip: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • query_session_id: order_by
  • query_started_at: order_by
  • query_status: order_by
  • query_text: order_by
  • query_transaction_id: order_by
  • query_type: order_by
  • query_usage_limit: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • resource_id: order_by
  • rpu: order_by
  • table_names: order_by
  • tenant_id: order_by
  • transaction_block_time: order_by

dw_queries_mutation_response

response of any mutation on the table "dw_queries"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [dw_queries!]! - data from the rows affected by the mutation

dw_queries_on_conflict

on_conflict condition type for table "dw_queries"

Fields:

  • constraint: dw_queries_constraint!
  • update_columns: [dw_queries_update_column!]!
  • where: dw_queries_bool_exp

dw_queries_order_by

Ordering options when selecting data from "dw_queries".

Fields:

  • account_id: order_by
  • bill: order_by
  • bill_interval_from: order_by
  • bill_interval_to: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • cloud_account: cloud_accounts_order_by
  • cloud_resourse: cloud_resourses_order_by
  • created_at: order_by
  • database_name: order_by
  • db_username: order_by
  • id: order_by
  • partitions_scanned: order_by
  • query_ended_at: order_by
  • query_error_message: order_by
  • query_exec_duration_micro: order_by
  • query_id: order_by
  • query_md5: order_by
  • query_normalized: order_by
  • query_normalized_md5: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_remote_ip: order_by
  • query_result_cache_hit: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • query_session_id: order_by
  • query_started_at: order_by
  • query_status: order_by
  • query_text: order_by
  • query_transaction_id: order_by
  • query_type: order_by
  • query_usage_limit: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • resource_id: order_by
  • rpu: order_by
  • table_names: order_by
  • tags: order_by
  • tenant: tenant_order_by
  • tenant_id: order_by
  • transaction_block_time: order_by

dw_queries_pk_columns_input

primary key columns input for table: dw_queries

Fields:

  • id: uuid!

dw_queries_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • tags: jsonb

dw_queries_select_column

select columns of table "dw_queries"

Values:

  • account_id - column name
  • bill - column name
  • bill_interval_from - column name
  • bill_interval_to - column name
  • bill_total_duration_micro - column name
  • bytes_scanned - column name
  • bytes_spilled_locally - column name
  • bytes_spilled_remotely - column name
  • created_at - column name
  • database_name - column name
  • db_username - column name
  • id - column name
  • partitions_scanned - column name
  • query_ended_at - column name
  • query_error_message - column name
  • query_exec_duration_micro - column name
  • query_id - column name
  • query_md5 - column name
  • query_normalized - column name
  • query_normalized_md5 - column name
  • query_planning_duration_micro - column name
  • query_queue_duration_micro - column name
  • query_remote_ip - column name
  • query_result_cache_hit - column name
  • query_returned_bytes - column name
  • query_returned_rows - column name
  • query_session_id - column name
  • query_started_at - column name
  • query_status - column name
  • query_text - column name
  • query_transaction_id - column name
  • query_type - column name
  • query_usage_limit - column name
  • queue_overload_time - column name
  • queue_provision_time - column name
  • queue_repair_time - column name
  • resource_id - column name
  • rpu - column name
  • table_names - column name
  • tags - column name
  • tenant_id - column name
  • transaction_block_time - column name

dw_queries_set_input

input type for updating data in table "dw_queries"

Fields:

  • account_id: uuid
  • bill: float8
  • bill_interval_from: timestamp
  • bill_interval_to: timestamp
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • created_at: timestamp
  • database_name: String
  • db_username: String
  • id: uuid
  • partitions_scanned: numeric
  • query_ended_at: timestamp
  • query_error_message: String
  • query_exec_duration_micro: numeric
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_result_cache_hit: Boolean
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • query_session_id: String
  • query_started_at: timestamp
  • query_status: String
  • query_text: String
  • query_transaction_id: String
  • query_type: String
  • query_usage_limit: String
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • resource_id: uuid
  • rpu: float8
  • table_names: [String!]
  • tags: jsonb
  • tenant_id: uuid
  • transaction_block_time: numeric

dw_queries_stddev_fields

aggregate stddev on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_stddev_order_by

order by stddev() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_stddev_pop_order_by

order by stddev_pop() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_stddev_samp_order_by

order by stddev_samp() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_stream_cursor_input

Streaming cursor of the table "dw_queries"

Fields:

  • initial_value: dw_queries_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

dw_queries_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • bill: float8
  • bill_interval_from: timestamp
  • bill_interval_to: timestamp
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • created_at: timestamp
  • database_name: String
  • db_username: String
  • id: uuid
  • partitions_scanned: numeric
  • query_ended_at: timestamp
  • query_error_message: String
  • query_exec_duration_micro: numeric
  • query_id: String
  • query_md5: String
  • query_normalized: String
  • query_normalized_md5: String
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_remote_ip: String
  • query_result_cache_hit: Boolean
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • query_session_id: String
  • query_started_at: timestamp
  • query_status: String
  • query_text: String
  • query_transaction_id: String
  • query_type: String
  • query_usage_limit: String
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • resource_id: uuid
  • rpu: float8
  • table_names: [String!]
  • tags: jsonb
  • tenant_id: uuid
  • transaction_block_time: numeric

dw_queries_sum_fields

aggregate sum on columns

Fields:

  • bill: float8
  • bill_total_duration_micro: numeric
  • bytes_scanned: numeric
  • bytes_spilled_locally: numeric
  • bytes_spilled_remotely: numeric
  • partitions_scanned: numeric
  • query_exec_duration_micro: numeric
  • query_planning_duration_micro: numeric
  • query_queue_duration_micro: Int
  • query_returned_bytes: numeric
  • query_returned_rows: numeric
  • queue_overload_time: numeric
  • queue_provision_time: numeric
  • queue_repair_time: numeric
  • rpu: float8
  • transaction_block_time: numeric

dw_queries_sum_order_by

order by sum() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_update_column

update columns of table "dw_queries"

Values:

  • account_id - column name
  • bill - column name
  • bill_interval_from - column name
  • bill_interval_to - column name
  • bill_total_duration_micro - column name
  • bytes_scanned - column name
  • bytes_spilled_locally - column name
  • bytes_spilled_remotely - column name
  • created_at - column name
  • database_name - column name
  • db_username - column name
  • id - column name
  • partitions_scanned - column name
  • query_ended_at - column name
  • query_error_message - column name
  • query_exec_duration_micro - column name
  • query_id - column name
  • query_md5 - column name
  • query_normalized - column name
  • query_normalized_md5 - column name
  • query_planning_duration_micro - column name
  • query_queue_duration_micro - column name
  • query_remote_ip - column name
  • query_result_cache_hit - column name
  • query_returned_bytes - column name
  • query_returned_rows - column name
  • query_session_id - column name
  • query_started_at - column name
  • query_status - column name
  • query_text - column name
  • query_transaction_id - column name
  • query_type - column name
  • query_usage_limit - column name
  • queue_overload_time - column name
  • queue_provision_time - column name
  • queue_repair_time - column name
  • resource_id - column name
  • rpu - column name
  • table_names - column name
  • tags - column name
  • tenant_id - column name
  • transaction_block_time - column name

dw_queries_var_pop_fields

aggregate var_pop on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_var_pop_order_by

order by var_pop() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_var_samp_fields

aggregate var_samp on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_var_samp_order_by

order by var_samp() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_queries_variance_fields

aggregate variance on columns

Fields:

  • bill: Float
  • bill_total_duration_micro: Float
  • bytes_scanned: Float
  • bytes_spilled_locally: Float
  • bytes_spilled_remotely: Float
  • partitions_scanned: Float
  • query_exec_duration_micro: Float
  • query_planning_duration_micro: Float
  • query_queue_duration_micro: Float
  • query_returned_bytes: Float
  • query_returned_rows: Float
  • queue_overload_time: Float
  • queue_provision_time: Float
  • queue_repair_time: Float
  • rpu: Float
  • transaction_block_time: Float

dw_queries_variance_order_by

order by variance() on columns of table "dw_queries"

Fields:

  • bill: order_by
  • bill_total_duration_micro: order_by
  • bytes_scanned: order_by
  • bytes_spilled_locally: order_by
  • bytes_spilled_remotely: order_by
  • partitions_scanned: order_by
  • query_exec_duration_micro: order_by
  • query_planning_duration_micro: order_by
  • query_queue_duration_micro: order_by
  • query_returned_bytes: order_by
  • query_returned_rows: order_by
  • queue_overload_time: order_by
  • queue_provision_time: order_by
  • queue_repair_time: order_by
  • rpu: order_by
  • transaction_block_time: order_by

dw_query_profile_data_aggregate_fields

aggregate fields of "dw_query_profile_data"

Fields:

  • count: Int!
  • max: dw_query_profile_data_max_fields
  • min: dw_query_profile_data_min_fields

dw_query_profile_data_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • profile_data: jsonb

dw_query_profile_data_bool_exp

Boolean expression to filter rows from the table "dw_query_profile_data". All fields are combined with a logical 'AND'.

Fields:

  • _and: [dw_query_profile_data_bool_exp!]
  • _not: dw_query_profile_data_bool_exp
  • _or: [dw_query_profile_data_bool_exp!]
  • cloud_account_id: String_comparison_exp
  • db_type: String_comparison_exp
  • id: uuid_comparison_exp
  • profile_data: jsonb_comparison_exp
  • query_group_md5: String_comparison_exp
  • query_id: String_comparison_exp
  • tenant_id: uuid_comparison_exp

dw_query_profile_data_constraint

unique or primary key constraints on table "dw_query_profile_data"

Values:

  • dw_query_profile_data_pkey - unique or primary key constraint on columns "id"

dw_query_profile_data_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • profile_data: [String!]

dw_query_profile_data_delete_elem_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

Fields:

  • profile_data: Int

dw_query_profile_data_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • profile_data: String

dw_query_profile_data_insert_input

input type for inserting data into table "dw_query_profile_data"

Fields:

  • cloud_account_id: String
  • db_type: String
  • id: uuid
  • profile_data: jsonb
  • query_group_md5: String
  • query_id: String
  • tenant_id: uuid

dw_query_profile_data_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: String
  • db_type: String
  • id: uuid
  • query_group_md5: String
  • query_id: String
  • tenant_id: uuid

dw_query_profile_data_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: String
  • db_type: String
  • id: uuid
  • query_group_md5: String
  • query_id: String
  • tenant_id: uuid

dw_query_profile_data_mutation_response

response of any mutation on the table "dw_query_profile_data"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [dw_query_profile_data!]! - data from the rows affected by the mutation

dw_query_profile_data_on_conflict

on_conflict condition type for table "dw_query_profile_data"

Fields:

  • constraint: dw_query_profile_data_constraint!
  • update_columns: [dw_query_profile_data_update_column!]!
  • where: dw_query_profile_data_bool_exp

dw_query_profile_data_order_by

Ordering options when selecting data from "dw_query_profile_data".

Fields:

  • cloud_account_id: order_by
  • db_type: order_by
  • id: order_by
  • profile_data: order_by
  • query_group_md5: order_by
  • query_id: order_by
  • tenant_id: order_by

dw_query_profile_data_pk_columns_input

primary key columns input for table: dw_query_profile_data

Fields:

  • id: uuid!

dw_query_profile_data_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • profile_data: jsonb

dw_query_profile_data_select_column

select columns of table "dw_query_profile_data"

Values:

  • cloud_account_id - column name
  • db_type - column name
  • id - column name
  • profile_data - column name
  • query_group_md5 - column name
  • query_id - column name
  • tenant_id - column name

dw_query_profile_data_set_input

input type for updating data in table "dw_query_profile_data"

Fields:

  • cloud_account_id: String
  • db_type: String
  • id: uuid
  • profile_data: jsonb
  • query_group_md5: String
  • query_id: String
  • tenant_id: uuid

dw_query_profile_data_stream_cursor_input

Streaming cursor of the table "dw_query_profile_data"

Fields:

  • initial_value: dw_query_profile_data_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

dw_query_profile_data_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: String
  • db_type: String
  • id: uuid
  • profile_data: jsonb
  • query_group_md5: String
  • query_id: String
  • tenant_id: uuid

dw_query_profile_data_update_column

update columns of table "dw_query_profile_data"

Values:

  • cloud_account_id - column name
  • db_type - column name
  • id - column name
  • profile_data - column name
  • query_group_md5 - column name
  • query_id - column name
  • tenant_id - column name

dw_tables_aggregate_fields

aggregate fields of "dw_tables"

Fields:

  • avg: dw_tables_avg_fields
  • count: Int!
  • max: dw_tables_max_fields
  • min: dw_tables_min_fields
  • stddev: dw_tables_stddev_fields
  • stddev_pop: dw_tables_stddev_pop_fields
  • stddev_samp: dw_tables_stddev_samp_fields
  • sum: dw_tables_sum_fields
  • var_pop: dw_tables_var_pop_fields
  • var_samp: dw_tables_var_samp_fields
  • variance: dw_tables_variance_fields

dw_tables_avg_fields

aggregate avg on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float

dw_tables_bool_exp

Boolean expression to filter rows from the table "dw_tables". All fields are combined with a logical 'AND'.

Fields:

  • _and: [dw_tables_bool_exp!]
  • _not: dw_tables_bool_exp
  • _or: [dw_tables_bool_exp!]
  • cloud_account_id: uuid_comparison_exp
  • database_name: String_comparison_exp
  • db_type: String_comparison_exp
  • id: uuid_comparison_exp
  • last_altered_at: timestamptz_comparison_exp
  • last_ddl_at: timestamptz_comparison_exp
  • last_dml_at: timestamptz_comparison_exp
  • row_count: numeric_comparison_exp
  • schema_name: String_comparison_exp
  • table_created_at: timestamptz_comparison_exp
  • table_deleted: Boolean_comparison_exp
  • table_dropped: timestamptz_comparison_exp
  • table_fail_safe_byte: numeric_comparison_exp
  • table_id: String_comparison_exp
  • table_name: String_comparison_exp
  • table_reclone_bytes: numeric_comparison_exp
  • table_size: numeric_comparison_exp
  • table_type: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • time_travel_bytes: numeric_comparison_exp

dw_tables_constraint

unique or primary key constraints on table "dw_tables"

Values:

  • dw_tables_table_name_schema_name_cloud_account_id_tenant_id_dat - unique or primary key constraint on columns "tenant_id", "schema_name", "cloud_account_id", "table_name", "database_name"
  • table_metadata_details_pkey - unique or primary key constraint on columns "id"

dw_tables_inc_input

input type for incrementing numeric columns in table "dw_tables"

Fields:

  • row_count: numeric
  • table_fail_safe_byte: numeric
  • table_reclone_bytes: numeric
  • table_size: numeric
  • time_travel_bytes: numeric

dw_tables_insert_input

input type for inserting data into table "dw_tables"

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • db_type: String
  • id: uuid
  • last_altered_at: timestamptz
  • last_ddl_at: timestamptz
  • last_dml_at: timestamptz
  • row_count: numeric
  • schema_name: String
  • table_created_at: timestamptz
  • table_deleted: Boolean
  • table_dropped: timestamptz
  • table_fail_safe_byte: numeric
  • table_id: String
  • table_name: String
  • table_reclone_bytes: numeric
  • table_size: numeric
  • table_type: String
  • tenant_id: uuid
  • time_travel_bytes: numeric

dw_tables_max_fields

aggregate max on columns

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • db_type: String
  • id: uuid
  • last_altered_at: timestamptz
  • last_ddl_at: timestamptz
  • last_dml_at: timestamptz
  • row_count: numeric
  • schema_name: String
  • table_created_at: timestamptz
  • table_dropped: timestamptz
  • table_fail_safe_byte: numeric
  • table_id: String
  • table_name: String
  • table_reclone_bytes: numeric
  • table_size: numeric
  • table_type: String
  • tenant_id: uuid
  • time_travel_bytes: numeric

dw_tables_min_fields

aggregate min on columns

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • db_type: String
  • id: uuid
  • last_altered_at: timestamptz
  • last_ddl_at: timestamptz
  • last_dml_at: timestamptz
  • row_count: numeric
  • schema_name: String
  • table_created_at: timestamptz
  • table_dropped: timestamptz
  • table_fail_safe_byte: numeric
  • table_id: String
  • table_name: String
  • table_reclone_bytes: numeric
  • table_size: numeric
  • table_type: String
  • tenant_id: uuid
  • time_travel_bytes: numeric

dw_tables_mutation_response

response of any mutation on the table "dw_tables"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [dw_tables!]! - data from the rows affected by the mutation

dw_tables_on_conflict

on_conflict condition type for table "dw_tables"

Fields:

  • constraint: dw_tables_constraint!
  • update_columns: [dw_tables_update_column!]!
  • where: dw_tables_bool_exp

dw_tables_order_by

Ordering options when selecting data from "dw_tables".

Fields:

  • cloud_account_id: order_by
  • database_name: order_by
  • db_type: order_by
  • id: order_by
  • last_altered_at: order_by
  • last_ddl_at: order_by
  • last_dml_at: order_by
  • row_count: order_by
  • schema_name: order_by
  • table_created_at: order_by
  • table_deleted: order_by
  • table_dropped: order_by
  • table_fail_safe_byte: order_by
  • table_id: order_by
  • table_name: order_by
  • table_reclone_bytes: order_by
  • table_size: order_by
  • table_type: order_by
  • tenant_id: order_by
  • time_travel_bytes: order_by

dw_tables_pk_columns_input

primary key columns input for table: dw_tables

Fields:

  • id: uuid!

dw_tables_select_column

select columns of table "dw_tables"

Values:

  • cloud_account_id - column name
  • database_name - column name
  • db_type - column name
  • id - column name
  • last_altered_at - column name
  • last_ddl_at - column name
  • last_dml_at - column name
  • row_count - column name
  • schema_name - column name
  • table_created_at - column name
  • table_deleted - column name
  • table_dropped - column name
  • table_fail_safe_byte - column name
  • table_id - column name
  • table_name - column name
  • table_reclone_bytes - column name
  • table_size - column name
  • table_type - column name
  • tenant_id - column name
  • time_travel_bytes - column name

dw_tables_set_input

input type for updating data in table "dw_tables"

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • db_type: String
  • id: uuid
  • last_altered_at: timestamptz
  • last_ddl_at: timestamptz
  • last_dml_at: timestamptz
  • row_count: numeric
  • schema_name: String
  • table_created_at: timestamptz
  • table_deleted: Boolean
  • table_dropped: timestamptz
  • table_fail_safe_byte: numeric
  • table_id: String
  • table_name: String
  • table_reclone_bytes: numeric
  • table_size: numeric
  • table_type: String
  • tenant_id: uuid
  • time_travel_bytes: numeric

dw_tables_stddev_fields

aggregate stddev on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float

dw_tables_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float

dw_tables_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float

dw_tables_stream_cursor_input

Streaming cursor of the table "dw_tables"

Fields:

  • initial_value: dw_tables_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

dw_tables_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • cloud_account_id: uuid
  • database_name: String
  • db_type: String
  • id: uuid
  • last_altered_at: timestamptz
  • last_ddl_at: timestamptz
  • last_dml_at: timestamptz
  • row_count: numeric
  • schema_name: String
  • table_created_at: timestamptz
  • table_deleted: Boolean
  • table_dropped: timestamptz
  • table_fail_safe_byte: numeric
  • table_id: String
  • table_name: String
  • table_reclone_bytes: numeric
  • table_size: numeric
  • table_type: String
  • tenant_id: uuid
  • time_travel_bytes: numeric

dw_tables_sum_fields

aggregate sum on columns

Fields:

  • row_count: numeric
  • table_fail_safe_byte: numeric
  • table_reclone_bytes: numeric
  • table_size: numeric
  • time_travel_bytes: numeric

dw_tables_update_column

update columns of table "dw_tables"

Values:

  • cloud_account_id - column name
  • database_name - column name
  • db_type - column name
  • id - column name
  • last_altered_at - column name
  • last_ddl_at - column name
  • last_dml_at - column name
  • row_count - column name
  • schema_name - column name
  • table_created_at - column name
  • table_deleted - column name
  • table_dropped - column name
  • table_fail_safe_byte - column name
  • table_id - column name
  • table_name - column name
  • table_reclone_bytes - column name
  • table_size - column name
  • table_type - column name
  • tenant_id - column name
  • time_travel_bytes - column name

dw_tables_var_pop_fields

aggregate var_pop on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float

dw_tables_var_samp_fields

aggregate var_samp on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float

dw_tables_variance_fields

aggregate variance on columns

Fields:

  • row_count: Float
  • table_fail_safe_byte: Float
  • table_reclone_bytes: Float
  • table_size: Float
  • time_travel_bytes: Float
Audit (15 types)

audit_aggregate_fields

aggregate fields of "audit"

Fields:

  • count: Int!
  • max: audit_max_fields
  • min: audit_min_fields

audit_bool_exp

Boolean expression to filter rows from the table "audit". All fields are combined with a logical 'AND'.

Fields:

  • _and: [audit_bool_exp!]
  • _not: audit_bool_exp
  • _or: [audit_bool_exp!]
  • account_id: String_comparison_exp
  • event_action: String_comparison_exp
  • event_actor: String_comparison_exp
  • event_attr: String_comparison_exp
  • event_category: String_comparison_exp
  • event_prev_state: String_comparison_exp
  • event_state: String_comparison_exp
  • event_status: String_comparison_exp
  • event_target: String_comparison_exp
  • event_time: timestamp_comparison_exp
  • event_type: String_comparison_exp
  • id: uuid_comparison_exp
  • tenant_id: String_comparison_exp
  • transaction_id: String_comparison_exp
  • user_id: uuid_comparison_exp

audit_constraint

unique or primary key constraints on table "audit"

Values:

  • audit_pkey - unique or primary key constraint on columns "id"

audit_insert_input

input type for inserting data into table "audit"

Fields:

  • account_id: String
  • event_action: String
  • event_actor: String
  • event_attr: String
  • event_category: String
  • event_prev_state: String
  • event_state: String
  • event_status: String
  • event_target: String
  • event_time: timestamp
  • event_type: String
  • id: uuid
  • tenant_id: String
  • transaction_id: String
  • user_id: uuid

audit_max_fields

aggregate max on columns

Fields:

  • account_id: String
  • event_action: String
  • event_actor: String
  • event_attr: String
  • event_category: String
  • event_prev_state: String
  • event_state: String
  • event_status: String
  • event_target: String
  • event_time: timestamp
  • event_type: String
  • id: uuid
  • tenant_id: String
  • transaction_id: String
  • user_id: uuid

audit_min_fields

aggregate min on columns

Fields:

  • account_id: String
  • event_action: String
  • event_actor: String
  • event_attr: String
  • event_category: String
  • event_prev_state: String
  • event_state: String
  • event_status: String
  • event_target: String
  • event_time: timestamp
  • event_type: String
  • id: uuid
  • tenant_id: String
  • transaction_id: String
  • user_id: uuid

audit_mutation_response

response of any mutation on the table "audit"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [audit!]! - data from the rows affected by the mutation

audit_on_conflict

on_conflict condition type for table "audit"

Fields:

  • constraint: audit_constraint!
  • update_columns: [audit_update_column!]!
  • where: audit_bool_exp

audit_order_by

Ordering options when selecting data from "audit".

Fields:

  • account_id: order_by
  • event_action: order_by
  • event_actor: order_by
  • event_attr: order_by
  • event_category: order_by
  • event_prev_state: order_by
  • event_state: order_by
  • event_status: order_by
  • event_target: order_by
  • event_time: order_by
  • event_type: order_by
  • id: order_by
  • tenant_id: order_by
  • transaction_id: order_by
  • user_id: order_by

audit_pk_columns_input

primary key columns input for table: audit

Fields:

  • id: uuid!

audit_select_column

select columns of table "audit"

Values:

  • account_id - column name
  • event_action - column name
  • event_actor - column name
  • event_attr - column name
  • event_category - column name
  • event_prev_state - column name
  • event_state - column name
  • event_status - column name
  • event_target - column name
  • event_time - column name
  • event_type - column name
  • id - column name
  • tenant_id - column name
  • transaction_id - column name
  • user_id - column name

audit_set_input

input type for updating data in table "audit"

Fields:

  • account_id: String
  • event_action: String
  • event_actor: String
  • event_attr: String
  • event_category: String
  • event_prev_state: String
  • event_state: String
  • event_status: String
  • event_target: String
  • event_time: timestamp
  • event_type: String
  • id: uuid
  • tenant_id: String
  • transaction_id: String
  • user_id: uuid

audit_stream_cursor_input

Streaming cursor of the table "audit"

Fields:

  • initial_value: audit_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

audit_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: String
  • event_action: String
  • event_actor: String
  • event_attr: String
  • event_category: String
  • event_prev_state: String
  • event_state: String
  • event_status: String
  • event_target: String
  • event_time: timestamp
  • event_type: String
  • id: uuid
  • tenant_id: String
  • transaction_id: String
  • user_id: uuid

audit_update_column

update columns of table "audit"

Values:

  • account_id - column name
  • event_action - column name
  • event_actor - column name
  • event_attr - column name
  • event_category - column name
  • event_prev_state - column name
  • event_state - column name
  • event_status - column name
  • event_target - column name
  • event_time - column name
  • event_type - column name
  • id - column name
  • tenant_id - column name
  • transaction_id - column name
  • user_id - column name
Other (239 types)

account_env_type_aggregate_fields

aggregate fields of "account_env_type"

Fields:

  • count: Int!
  • max: account_env_type_max_fields
  • min: account_env_type_min_fields

account_env_type_bool_exp

Boolean expression to filter rows from the table "account_env_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [account_env_type_bool_exp!]
  • _not: account_env_type_bool_exp
  • _or: [account_env_type_bool_exp!]
  • value: String_comparison_exp

account_env_type_constraint

unique or primary key constraints on table "account_env_type"

Values:

  • account_type_pkey - unique or primary key constraint on columns "value"

account_env_type_insert_input

input type for inserting data into table "account_env_type"

Fields:

  • value: String

account_env_type_max_fields

aggregate max on columns

Fields:

  • value: String

account_env_type_min_fields

aggregate min on columns

Fields:

  • value: String

account_env_type_mutation_response

response of any mutation on the table "account_env_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [account_env_type!]! - data from the rows affected by the mutation

account_env_type_on_conflict

on_conflict condition type for table "account_env_type"

Fields:

  • constraint: account_env_type_constraint!
  • update_columns: [account_env_type_update_column!]!
  • where: account_env_type_bool_exp

account_env_type_order_by

Ordering options when selecting data from "account_env_type".

Fields:

  • value: order_by

account_env_type_pk_columns_input

primary key columns input for table: account_env_type

Fields:

  • value: String!

account_env_type_select_column

select columns of table "account_env_type"

Values:

  • value - column name

account_env_type_set_input

input type for updating data in table "account_env_type"

Fields:

  • value: String

account_env_type_stream_cursor_input

Streaming cursor of the table "account_env_type"

Fields:

  • initial_value: account_env_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

account_env_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

account_env_type_update_column

update columns of table "account_env_type"

Values:

  • value - column name

account_purpose_type_aggregate_fields

aggregate fields of "account_purpose_type"

Fields:

  • count: Int!
  • max: account_purpose_type_max_fields
  • min: account_purpose_type_min_fields

account_purpose_type_bool_exp

Boolean expression to filter rows from the table "account_purpose_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [account_purpose_type_bool_exp!]
  • _not: account_purpose_type_bool_exp
  • _or: [account_purpose_type_bool_exp!]
  • value: String_comparison_exp

account_purpose_type_constraint

unique or primary key constraints on table "account_purpose_type"

Values:

  • account_purpose_type_pkey - unique or primary key constraint on columns "value"

account_purpose_type_insert_input

input type for inserting data into table "account_purpose_type"

Fields:

  • value: String

account_purpose_type_max_fields

aggregate max on columns

Fields:

  • value: String

account_purpose_type_min_fields

aggregate min on columns

Fields:

  • value: String

account_purpose_type_mutation_response

response of any mutation on the table "account_purpose_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [account_purpose_type!]! - data from the rows affected by the mutation

account_purpose_type_on_conflict

on_conflict condition type for table "account_purpose_type"

Fields:

  • constraint: account_purpose_type_constraint!
  • update_columns: [account_purpose_type_update_column!]!
  • where: account_purpose_type_bool_exp

account_purpose_type_order_by

Ordering options when selecting data from "account_purpose_type".

Fields:

  • value: order_by

account_purpose_type_pk_columns_input

primary key columns input for table: account_purpose_type

Fields:

  • value: String!

account_purpose_type_select_column

select columns of table "account_purpose_type"

Values:

  • value - column name

account_purpose_type_set_input

input type for updating data in table "account_purpose_type"

Fields:

  • value: String

account_purpose_type_stream_cursor_input

Streaming cursor of the table "account_purpose_type"

Fields:

  • initial_value: account_purpose_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

account_purpose_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

account_purpose_type_update_column

update columns of table "account_purpose_type"

Values:

  • value - column name

db_type_aggregate_fields

aggregate fields of "db_type"

Fields:

  • count: Int!
  • max: db_type_max_fields
  • min: db_type_min_fields

db_type_bool_exp

Boolean expression to filter rows from the table "db_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [db_type_bool_exp!]
  • _not: db_type_bool_exp
  • _or: [db_type_bool_exp!]
  • value: String_comparison_exp

db_type_constraint

unique or primary key constraints on table "db_type"

Values:

  • db_type_pkey - unique or primary key constraint on columns "value"

db_type_insert_input

input type for inserting data into table "db_type"

Fields:

  • value: String

db_type_max_fields

aggregate max on columns

Fields:

  • value: String

db_type_min_fields

aggregate min on columns

Fields:

  • value: String

db_type_mutation_response

response of any mutation on the table "db_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [db_type!]! - data from the rows affected by the mutation

db_type_on_conflict

on_conflict condition type for table "db_type"

Fields:

  • constraint: db_type_constraint!
  • update_columns: [db_type_update_column!]!
  • where: db_type_bool_exp

db_type_order_by

Ordering options when selecting data from "db_type".

Fields:

  • value: order_by

db_type_pk_columns_input

primary key columns input for table: db_type

Fields:

  • value: String!

db_type_select_column

select columns of table "db_type"

Values:

  • value - column name

db_type_set_input

input type for updating data in table "db_type"

Fields:

  • value: String

db_type_stream_cursor_input

Streaming cursor of the table "db_type"

Fields:

  • initial_value: db_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

db_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

db_type_update_column

update columns of table "db_type"

Values:

  • value - column name

group_roles_aggregate_bool_exp

Fields:

  • count: group_roles_aggregate_bool_exp_count

group_roles_aggregate_bool_exp_count

Fields:

  • arguments: [group_roles_select_column!]
  • distinct: Boolean
  • filter: group_roles_bool_exp
  • predicate: Int_comparison_exp!

group_roles_aggregate_fields

aggregate fields of "group_roles"

Fields:

  • count: Int!
  • max: group_roles_max_fields
  • min: group_roles_min_fields

group_roles_aggregate_order_by

order by aggregate values of table "group_roles"

Fields:

  • count: order_by
  • max: group_roles_max_order_by
  • min: group_roles_min_order_by

group_roles_arr_rel_insert_input

input type for inserting array relation for remote table "group_roles"

Fields:

  • data: [group_roles_insert_input!]!
  • on_conflict: group_roles_on_conflict - upsert condition

group_roles_bool_exp

Boolean expression to filter rows from the table "group_roles". All fields are combined with a logical 'AND'.

Fields:

  • _and: [group_roles_bool_exp!]
  • _not: group_roles_bool_exp
  • _or: [group_roles_bool_exp!]
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • entity_id: String_comparison_exp
  • entity_type: citext_comparison_exp
  • group_id: uuid_comparison_exp
  • id: uuid_comparison_exp
  • role: citext_comparison_exp
  • updated_at: timestamp_comparison_exp
  • user_group: user_groups_bool_exp

group_roles_constraint

unique or primary key constraints on table "group_roles"

Values:

  • group_roles_group_id_role_entity_type_entity_id_key - unique or primary key constraint on columns "entity_type", "entity_id", "group_id", "role"
  • group_roles_pkey - unique or primary key constraint on columns "id"

group_roles_insert_input

input type for inserting data into table "group_roles"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • group_id: uuid
  • id: uuid
  • role: citext
  • updated_at: timestamp
  • user_group: user_groups_obj_rel_insert_input

group_roles_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • group_id: uuid
  • id: uuid
  • role: citext
  • updated_at: timestamp

group_roles_max_order_by

order by max() on columns of table "group_roles"

Fields:

  • created_at: order_by
  • created_by: order_by
  • entity_id: order_by
  • entity_type: order_by
  • group_id: order_by
  • id: order_by
  • role: order_by
  • updated_at: order_by

group_roles_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • group_id: uuid
  • id: uuid
  • role: citext
  • updated_at: timestamp

group_roles_min_order_by

order by min() on columns of table "group_roles"

Fields:

  • created_at: order_by
  • created_by: order_by
  • entity_id: order_by
  • entity_type: order_by
  • group_id: order_by
  • id: order_by
  • role: order_by
  • updated_at: order_by

group_roles_mutation_response

response of any mutation on the table "group_roles"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [group_roles!]! - data from the rows affected by the mutation

group_roles_on_conflict

on_conflict condition type for table "group_roles"

Fields:

  • constraint: group_roles_constraint!
  • update_columns: [group_roles_update_column!]!
  • where: group_roles_bool_exp

group_roles_order_by

Ordering options when selecting data from "group_roles".

Fields:

  • created_at: order_by
  • created_by: order_by
  • entity_id: order_by
  • entity_type: order_by
  • group_id: order_by
  • id: order_by
  • role: order_by
  • updated_at: order_by
  • user_group: user_groups_order_by

group_roles_pk_columns_input

primary key columns input for table: group_roles

Fields:

  • id: uuid!

group_roles_select_column

select columns of table "group_roles"

Values:

  • created_at - column name
  • created_by - column name
  • entity_id - column name
  • entity_type - column name
  • group_id - column name
  • id - column name
  • role - column name
  • updated_at - column name

group_roles_set_input

input type for updating data in table "group_roles"

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • group_id: uuid
  • id: uuid
  • role: citext
  • updated_at: timestamp

group_roles_stream_cursor_input

Streaming cursor of the table "group_roles"

Fields:

  • initial_value: group_roles_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

group_roles_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • created_at: timestamp
  • created_by: uuid
  • entity_id: String
  • entity_type: citext
  • group_id: uuid
  • id: uuid
  • role: citext
  • updated_at: timestamp

group_roles_update_column

update columns of table "group_roles"

Values:

  • created_at - column name
  • created_by - column name
  • entity_id - column name
  • entity_type - column name
  • group_id - column name
  • id - column name
  • role - column name
  • updated_at - column name

marketplace_customers_aggregate_fields

aggregate fields of "marketplace_customers"

Fields:

  • count: Int!
  • max: marketplace_customers_max_fields
  • min: marketplace_customers_min_fields

marketplace_customers_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • entitlement_details: jsonb

marketplace_customers_bool_exp

Boolean expression to filter rows from the table "marketplace_customers". All fields are combined with a logical 'AND'.

Fields:

  • _and: [marketplace_customers_bool_exp!]
  • _not: marketplace_customers_bool_exp
  • _or: [marketplace_customers_bool_exp!]
  • action: String_comparison_exp
  • created_at: timestamp_comparison_exp
  • customer_identifier: String_comparison_exp
  • entitlement_details: jsonb_comparison_exp
  • id: uuid_comparison_exp
  • is_active: Boolean_comparison_exp
  • is_free_trial_on: Boolean_comparison_exp
  • marketplace: String_comparison_exp
  • name: String_comparison_exp
  • offer_identifier: String_comparison_exp
  • pricing_tier: String_comparison_exp
  • product_code: String_comparison_exp
  • provider_account_id: String_comparison_exp
  • subscription_expiry: timestamp_comparison_exp
  • subscription_status: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

marketplace_customers_constraint

unique or primary key constraints on table "marketplace_customers"

Values:

  • customer_id_accout_id_product_code_index - unique or primary key constraint on columns "provider_account_id", "product_code", "customer_identifier"
  • marketplace_customer_id_accout_id_product_code_index - unique or primary key constraint on columns "provider_account_id", "product_code", "marketplace", "customer_identifier"
  • marketplace_customers_pkey - unique or primary key constraint on columns "id"

marketplace_customers_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • entitlement_details: [String!]

marketplace_customers_delete_elem_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

Fields:

  • entitlement_details: Int

marketplace_customers_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • entitlement_details: String

marketplace_customers_insert_input

input type for inserting data into table "marketplace_customers"

Fields:

  • action: String
  • created_at: timestamp
  • customer_identifier: String
  • entitlement_details: jsonb
  • id: uuid
  • is_active: Boolean
  • is_free_trial_on: Boolean
  • marketplace: String
  • name: String
  • offer_identifier: String
  • pricing_tier: String
  • product_code: String
  • provider_account_id: String
  • subscription_expiry: timestamp
  • subscription_status: String
  • tenant_id: uuid
  • updated_at: timestamp

marketplace_customers_max_fields

aggregate max on columns

Fields:

  • action: String
  • created_at: timestamp
  • customer_identifier: String
  • id: uuid
  • marketplace: String
  • name: String
  • offer_identifier: String
  • pricing_tier: String
  • product_code: String
  • provider_account_id: String
  • subscription_expiry: timestamp
  • subscription_status: String
  • tenant_id: uuid
  • updated_at: timestamp

marketplace_customers_min_fields

aggregate min on columns

Fields:

  • action: String
  • created_at: timestamp
  • customer_identifier: String
  • id: uuid
  • marketplace: String
  • name: String
  • offer_identifier: String
  • pricing_tier: String
  • product_code: String
  • provider_account_id: String
  • subscription_expiry: timestamp
  • subscription_status: String
  • tenant_id: uuid
  • updated_at: timestamp

marketplace_customers_mutation_response

response of any mutation on the table "marketplace_customers"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [marketplace_customers!]! - data from the rows affected by the mutation

marketplace_customers_on_conflict

on_conflict condition type for table "marketplace_customers"

Fields:

  • constraint: marketplace_customers_constraint!
  • update_columns: [marketplace_customers_update_column!]!
  • where: marketplace_customers_bool_exp

marketplace_customers_order_by

Ordering options when selecting data from "marketplace_customers".

Fields:

  • action: order_by
  • created_at: order_by
  • customer_identifier: order_by
  • entitlement_details: order_by
  • id: order_by
  • is_active: order_by
  • is_free_trial_on: order_by
  • marketplace: order_by
  • name: order_by
  • offer_identifier: order_by
  • pricing_tier: order_by
  • product_code: order_by
  • provider_account_id: order_by
  • subscription_expiry: order_by
  • subscription_status: order_by
  • tenant_id: order_by
  • updated_at: order_by

marketplace_customers_pk_columns_input

primary key columns input for table: marketplace_customers

Fields:

  • id: uuid!

marketplace_customers_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • entitlement_details: jsonb

marketplace_customers_select_column

select columns of table "marketplace_customers"

Values:

  • action - column name
  • created_at - column name
  • customer_identifier - column name
  • entitlement_details - column name
  • id - column name
  • is_active - column name
  • is_free_trial_on - column name
  • marketplace - column name
  • name - column name
  • offer_identifier - column name
  • pricing_tier - column name
  • product_code - column name
  • provider_account_id - column name
  • subscription_expiry - column name
  • subscription_status - column name
  • tenant_id - column name
  • updated_at - column name

marketplace_customers_set_input

input type for updating data in table "marketplace_customers"

Fields:

  • action: String
  • created_at: timestamp
  • customer_identifier: String
  • entitlement_details: jsonb
  • id: uuid
  • is_active: Boolean
  • is_free_trial_on: Boolean
  • marketplace: String
  • name: String
  • offer_identifier: String
  • pricing_tier: String
  • product_code: String
  • provider_account_id: String
  • subscription_expiry: timestamp
  • subscription_status: String
  • tenant_id: uuid
  • updated_at: timestamp

marketplace_customers_stream_cursor_input

Streaming cursor of the table "marketplace_customers"

Fields:

  • initial_value: marketplace_customers_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

marketplace_customers_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • action: String
  • created_at: timestamp
  • customer_identifier: String
  • entitlement_details: jsonb
  • id: uuid
  • is_active: Boolean
  • is_free_trial_on: Boolean
  • marketplace: String
  • name: String
  • offer_identifier: String
  • pricing_tier: String
  • product_code: String
  • provider_account_id: String
  • subscription_expiry: timestamp
  • subscription_status: String
  • tenant_id: uuid
  • updated_at: timestamp

marketplace_customers_update_column

update columns of table "marketplace_customers"

Values:

  • action - column name
  • created_at - column name
  • customer_identifier - column name
  • entitlement_details - column name
  • id - column name
  • is_active - column name
  • is_free_trial_on - column name
  • marketplace - column name
  • name - column name
  • offer_identifier - column name
  • pricing_tier - column name
  • product_code - column name
  • provider_account_id - column name
  • subscription_expiry - column name
  • subscription_status - column name
  • tenant_id - column name
  • updated_at - column name

projects_aggregate_bool_exp

Fields:

  • avg: projects_aggregate_bool_exp_avg
  • bool_and: projects_aggregate_bool_exp_bool_and
  • bool_or: projects_aggregate_bool_exp_bool_or
  • corr: projects_aggregate_bool_exp_corr
  • count: projects_aggregate_bool_exp_count
  • covar_samp: projects_aggregate_bool_exp_covar_samp
  • max: projects_aggregate_bool_exp_max
  • min: projects_aggregate_bool_exp_min
  • stddev_samp: projects_aggregate_bool_exp_stddev_samp
  • sum: projects_aggregate_bool_exp_sum
  • var_samp: projects_aggregate_bool_exp_var_samp

projects_aggregate_bool_exp_count

Fields:

  • arguments: [projects_select_column!]
  • distinct: Boolean
  • filter: projects_bool_exp
  • predicate: Int_comparison_exp!

projects_aggregate_fields

aggregate fields of "projects"

Fields:

  • avg: projects_avg_fields
  • count: Int!
  • max: projects_max_fields
  • min: projects_min_fields
  • stddev: projects_stddev_fields
  • stddev_pop: projects_stddev_pop_fields
  • stddev_samp: projects_stddev_samp_fields
  • sum: projects_sum_fields
  • var_pop: projects_var_pop_fields
  • var_samp: projects_var_samp_fields
  • variance: projects_variance_fields

projects_aggregate_order_by

order by aggregate values of table "projects"

Fields:

  • avg: projects_avg_order_by
  • count: order_by
  • max: projects_max_order_by
  • min: projects_min_order_by
  • stddev: projects_stddev_order_by
  • stddev_pop: projects_stddev_pop_order_by
  • stddev_samp: projects_stddev_samp_order_by
  • sum: projects_sum_order_by
  • var_pop: projects_var_pop_order_by
  • var_samp: projects_var_samp_order_by
  • variance: projects_variance_order_by

projects_arr_rel_insert_input

input type for inserting array relation for remote table "projects"

Fields:

  • data: [projects_insert_input!]!
  • on_conflict: projects_on_conflict - upsert condition

projects_avg_fields

aggregate avg on columns

Fields:

  • expected_revenue: Float

projects_avg_order_by

order by avg() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_bool_exp

Boolean expression to filter rows from the table "projects". All fields are combined with a logical 'AND'.

Fields:

  • _and: [projects_bool_exp!]
  • _not: projects_bool_exp
  • _or: [projects_bool_exp!]
  • approved_by: uuid_comparison_exp
  • billable: Boolean_comparison_exp
  • businessUnitByBusinessUnit: business_unit_bool_exp
  • business_unit: uuid_comparison_exp
  • category: project_category_type_enum_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • ended_at: timestamp_comparison_exp
  • expected_revenue: float8_comparison_exp
  • id: uuid_comparison_exp
  • it_manager: uuid_comparison_exp
  • name: citext_comparison_exp
  • project_accounts: project_accounts_bool_exp
  • project_accounts_aggregate: project_accounts_aggregate_bool_exp
  • project_category_type: project_category_type_bool_exp
  • project_fundings: project_fundings_bool_exp
  • project_fundings_aggregate: project_fundings_aggregate_bool_exp
  • project_manager: uuid_comparison_exp
  • project_users: project_users_bool_exp
  • project_users_aggregate: project_users_aggregate_bool_exp
  • started_at: timestamp_comparison_exp
  • tenant: uuid_comparison_exp
  • tenantByTenant: tenant_bool_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp
  • userByUpdatedBy: users_bool_exp

projects_constraint

unique or primary key constraints on table "projects"

Values:

  • projects_business_unit_name_key - unique or primary key constraint on columns "business_unit", "name"
  • projects_pkey - unique or primary key constraint on columns "id"

projects_inc_input

input type for incrementing numeric columns in table "projects"

Fields:

  • expected_revenue: float8

projects_insert_input

input type for inserting data into table "projects"

Fields:

  • approved_by: uuid
  • billable: Boolean
  • businessUnitByBusinessUnit: business_unit_obj_rel_insert_input
  • business_unit: uuid
  • category: project_category_type_enum
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • ended_at: timestamp
  • expected_revenue: float8
  • id: uuid
  • it_manager: uuid
  • name: citext
  • project_accounts: project_accounts_arr_rel_insert_input
  • project_category_type: project_category_type_obj_rel_insert_input
  • project_fundings: project_fundings_arr_rel_insert_input
  • project_manager: uuid
  • project_users: project_users_arr_rel_insert_input
  • started_at: timestamp
  • tenant: uuid
  • tenantByTenant: tenant_obj_rel_insert_input
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input
  • userByUpdatedBy: users_obj_rel_insert_input

projects_max_fields

aggregate max on columns

Fields:

  • approved_by: uuid
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • ended_at: timestamp
  • expected_revenue: float8
  • id: uuid
  • it_manager: uuid
  • name: citext
  • project_manager: uuid
  • started_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

projects_max_order_by

order by max() on columns of table "projects"

Fields:

  • approved_by: order_by
  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • ended_at: order_by
  • expected_revenue: order_by
  • id: order_by
  • it_manager: order_by
  • name: order_by
  • project_manager: order_by
  • started_at: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

projects_min_fields

aggregate min on columns

Fields:

  • approved_by: uuid
  • business_unit: uuid
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • ended_at: timestamp
  • expected_revenue: float8
  • id: uuid
  • it_manager: uuid
  • name: citext
  • project_manager: uuid
  • started_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

projects_min_order_by

order by min() on columns of table "projects"

Fields:

  • approved_by: order_by
  • business_unit: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • ended_at: order_by
  • expected_revenue: order_by
  • id: order_by
  • it_manager: order_by
  • name: order_by
  • project_manager: order_by
  • started_at: order_by
  • tenant: order_by
  • updated_at: order_by
  • updated_by: order_by

projects_mutation_response

response of any mutation on the table "projects"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [projects!]! - data from the rows affected by the mutation

projects_obj_rel_insert_input

input type for inserting object relation for remote table "projects"

Fields:

  • data: projects_insert_input!
  • on_conflict: projects_on_conflict - upsert condition

projects_on_conflict

on_conflict condition type for table "projects"

Fields:

  • constraint: projects_constraint!
  • update_columns: [projects_update_column!]!
  • where: projects_bool_exp

projects_order_by

Ordering options when selecting data from "projects".

Fields:

  • approved_by: order_by
  • billable: order_by
  • businessUnitByBusinessUnit: business_unit_order_by
  • business_unit: order_by
  • category: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • ended_at: order_by
  • expected_revenue: order_by
  • id: order_by
  • it_manager: order_by
  • name: order_by
  • project_accounts_aggregate: project_accounts_aggregate_order_by
  • project_category_type: project_category_type_order_by
  • project_fundings_aggregate: project_fundings_aggregate_order_by
  • project_manager: order_by
  • project_users_aggregate: project_users_aggregate_order_by
  • started_at: order_by
  • tenant: order_by
  • tenantByTenant: tenant_order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by
  • userByUpdatedBy: users_order_by

projects_pk_columns_input

primary key columns input for table: projects

Fields:

  • id: uuid!

projects_select_column

select columns of table "projects"

Values:

  • approved_by - column name
  • billable - column name
  • business_unit - column name
  • category - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • ended_at - column name
  • expected_revenue - column name
  • id - column name
  • it_manager - column name
  • name - column name
  • project_manager - column name
  • started_at - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

projects_set_input

input type for updating data in table "projects"

Fields:

  • approved_by: uuid
  • billable: Boolean
  • business_unit: uuid
  • category: project_category_type_enum
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • ended_at: timestamp
  • expected_revenue: float8
  • id: uuid
  • it_manager: uuid
  • name: citext
  • project_manager: uuid
  • started_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

projects_stddev_fields

aggregate stddev on columns

Fields:

  • expected_revenue: Float

projects_stddev_order_by

order by stddev() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_stddev_pop_fields

aggregate stddev_pop on columns

Fields:

  • expected_revenue: Float

projects_stddev_pop_order_by

order by stddev_pop() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_stddev_samp_fields

aggregate stddev_samp on columns

Fields:

  • expected_revenue: Float

projects_stddev_samp_order_by

order by stddev_samp() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_stream_cursor_input

Streaming cursor of the table "projects"

Fields:

  • initial_value: projects_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

projects_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • approved_by: uuid
  • billable: Boolean
  • business_unit: uuid
  • category: project_category_type_enum
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • ended_at: timestamp
  • expected_revenue: float8
  • id: uuid
  • it_manager: uuid
  • name: citext
  • project_manager: uuid
  • started_at: timestamp
  • tenant: uuid
  • updated_at: timestamp
  • updated_by: uuid

projects_sum_fields

aggregate sum on columns

Fields:

  • expected_revenue: float8

projects_sum_order_by

order by sum() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_update_column

update columns of table "projects"

Values:

  • approved_by - column name
  • billable - column name
  • business_unit - column name
  • category - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • ended_at - column name
  • expected_revenue - column name
  • id - column name
  • it_manager - column name
  • name - column name
  • project_manager - column name
  • started_at - column name
  • tenant - column name
  • updated_at - column name
  • updated_by - column name

projects_var_pop_fields

aggregate var_pop on columns

Fields:

  • expected_revenue: Float

projects_var_pop_order_by

order by var_pop() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_var_samp_fields

aggregate var_samp on columns

Fields:

  • expected_revenue: Float

projects_var_samp_order_by

order by var_samp() on columns of table "projects"

Fields:

  • expected_revenue: order_by

projects_variance_fields

aggregate variance on columns

Fields:

  • expected_revenue: Float

projects_variance_order_by

order by variance() on columns of table "projects"

Fields:

  • expected_revenue: order_by

runbook_action_aggregate_bool_exp

Fields:

  • bool_and: runbook_action_aggregate_bool_exp_bool_and
  • bool_or: runbook_action_aggregate_bool_exp_bool_or
  • count: runbook_action_aggregate_bool_exp_count

runbook_action_aggregate_bool_exp_count

Fields:

  • arguments: [runbook_action_select_column!]
  • distinct: Boolean
  • filter: runbook_action_bool_exp
  • predicate: Int_comparison_exp!

runbook_action_aggregate_fields

aggregate fields of "runbook_action"

Fields:

  • count: Int!
  • max: runbook_action_max_fields
  • min: runbook_action_min_fields

runbook_action_aggregate_order_by

order by aggregate values of table "runbook_action"

Fields:

  • count: order_by
  • max: runbook_action_max_order_by
  • min: runbook_action_min_order_by

runbook_action_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • base_action_configs: jsonb
  • configs: jsonb

runbook_action_arr_rel_insert_input

input type for inserting array relation for remote table "runbook_action"

Fields:

  • data: [runbook_action_insert_input!]!
  • on_conflict: runbook_action_on_conflict - upsert condition

runbook_action_bool_exp

Boolean expression to filter rows from the table "runbook_action". All fields are combined with a logical 'AND'.

Fields:

  • _and: [runbook_action_bool_exp!]
  • _not: runbook_action_bool_exp
  • _or: [runbook_action_bool_exp!]
  • account_type: String_comparison_exp
  • action_name: String_comparison_exp
  • attributes: jsonb_comparison_exp
  • base_action_configs: jsonb_comparison_exp
  • configs: jsonb_comparison_exp
  • created_at: timestamp_comparison_exp
  • created_by: uuid_comparison_exp
  • description: String_comparison_exp
  • id: uuid_comparison_exp
  • internal_identifier: String_comparison_exp
  • is_system_action: Boolean_comparison_exp
  • library_id: uuid_comparison_exp
  • llm_enabled: Boolean_comparison_exp
  • llm_prompt: String_comparison_exp
  • runbook_action_library: runbook_action_library_bool_exp
  • runbook_action_status: runbook_action_status_bool_exp
  • status: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp
  • updated_by: uuid_comparison_exp
  • user: users_bool_exp

runbook_action_constraint

unique or primary key constraints on table "runbook_action"

Values:

  • runbook_action_action_name_tenant_id_key - unique or primary key constraint on columns "tenant_id", "action_name"
  • runbook_custom_action_pkey - unique or primary key constraint on columns "id"

runbook_action_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]
  • base_action_configs: [String!]
  • configs: [String!]

runbook_action_delete_elem_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

Fields:

  • attributes: Int
  • base_action_configs: Int
  • configs: Int

runbook_action_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String
  • base_action_configs: String
  • configs: String

runbook_action_insert_input

input type for inserting data into table "runbook_action"

Fields:

  • account_type: String
  • action_name: String
  • attributes: jsonb
  • base_action_configs: jsonb
  • configs: jsonb
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • internal_identifier: String
  • is_system_action: Boolean
  • library_id: uuid
  • llm_enabled: Boolean
  • llm_prompt: String
  • runbook_action_library: runbook_action_library_obj_rel_insert_input
  • runbook_action_status: runbook_action_status_obj_rel_insert_input
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid
  • user: users_obj_rel_insert_input

runbook_action_library_aggregate_fields

aggregate fields of "runbook_action_library"

Fields:

  • count: Int!
  • max: runbook_action_library_max_fields
  • min: runbook_action_library_min_fields

runbook_action_library_append_input

append existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb

runbook_action_library_bool_exp

Boolean expression to filter rows from the table "runbook_action_library". All fields are combined with a logical 'AND'.

Fields:

  • _and: [runbook_action_library_bool_exp!]
  • _not: runbook_action_library_bool_exp
  • _or: [runbook_action_library_bool_exp!]
  • attributes: jsonb_comparison_exp
  • created_at: timestamp_comparison_exp
  • id: uuid_comparison_exp
  • library_name: String_comparison_exp
  • runbook_actions: runbook_action_bool_exp
  • runbook_actions_aggregate: runbook_action_aggregate_bool_exp
  • tenant_id: uuid_comparison_exp

runbook_action_library_constraint

unique or primary key constraints on table "runbook_action_library"

Values:

  • runbook_custom_action_library_pkey - unique or primary key constraint on columns "id"

runbook_action_library_delete_at_path_input

delete the field or element with specified path (for JSON arrays, negative integers count from the end)

Fields:

  • attributes: [String!]

runbook_action_library_delete_elem_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

Fields:

  • attributes: Int

runbook_action_library_delete_key_input

delete key/value pair or string element. key/value pairs are matched based on their key value

Fields:

  • attributes: String

runbook_action_library_insert_input

input type for inserting data into table "runbook_action_library"

Fields:

  • attributes: jsonb
  • created_at: timestamp
  • id: uuid
  • library_name: String
  • runbook_actions: runbook_action_arr_rel_insert_input
  • tenant_id: uuid

runbook_action_library_max_fields

aggregate max on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • library_name: String
  • tenant_id: uuid

runbook_action_library_min_fields

aggregate min on columns

Fields:

  • created_at: timestamp
  • id: uuid
  • library_name: String
  • tenant_id: uuid

runbook_action_library_mutation_response

response of any mutation on the table "runbook_action_library"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [runbook_action_library!]! - data from the rows affected by the mutation

runbook_action_library_obj_rel_insert_input

input type for inserting object relation for remote table "runbook_action_library"

Fields:

  • data: runbook_action_library_insert_input!
  • on_conflict: runbook_action_library_on_conflict - upsert condition

runbook_action_library_on_conflict

on_conflict condition type for table "runbook_action_library"

Fields:

  • constraint: runbook_action_library_constraint!
  • update_columns: [runbook_action_library_update_column!]!
  • where: runbook_action_library_bool_exp

runbook_action_library_order_by

Ordering options when selecting data from "runbook_action_library".

Fields:

  • attributes: order_by
  • created_at: order_by
  • id: order_by
  • library_name: order_by
  • runbook_actions_aggregate: runbook_action_aggregate_order_by
  • tenant_id: order_by

runbook_action_library_pk_columns_input

primary key columns input for table: runbook_action_library

Fields:

  • id: uuid!

runbook_action_library_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb

runbook_action_library_select_column

select columns of table "runbook_action_library"

Values:

  • attributes - column name
  • created_at - column name
  • id - column name
  • library_name - column name
  • tenant_id - column name

runbook_action_library_set_input

input type for updating data in table "runbook_action_library"

Fields:

  • attributes: jsonb
  • created_at: timestamp
  • id: uuid
  • library_name: String
  • tenant_id: uuid

runbook_action_library_stream_cursor_input

Streaming cursor of the table "runbook_action_library"

Fields:

  • initial_value: runbook_action_library_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

runbook_action_library_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • attributes: jsonb
  • created_at: timestamp
  • id: uuid
  • library_name: String
  • tenant_id: uuid

runbook_action_library_update_column

update columns of table "runbook_action_library"

Values:

  • attributes - column name
  • created_at - column name
  • id - column name
  • library_name - column name
  • tenant_id - column name

runbook_action_max_fields

aggregate max on columns

Fields:

  • account_type: String
  • action_name: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • internal_identifier: String
  • library_id: uuid
  • llm_prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

runbook_action_max_order_by

order by max() on columns of table "runbook_action"

Fields:

  • account_type: order_by
  • action_name: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • internal_identifier: order_by
  • library_id: order_by
  • llm_prompt: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

runbook_action_min_fields

aggregate min on columns

Fields:

  • account_type: String
  • action_name: String
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • internal_identifier: String
  • library_id: uuid
  • llm_prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

runbook_action_min_order_by

order by min() on columns of table "runbook_action"

Fields:

  • account_type: order_by
  • action_name: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • internal_identifier: order_by
  • library_id: order_by
  • llm_prompt: order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by

runbook_action_mutation_response

response of any mutation on the table "runbook_action"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [runbook_action!]! - data from the rows affected by the mutation

runbook_action_on_conflict

on_conflict condition type for table "runbook_action"

Fields:

  • constraint: runbook_action_constraint!
  • update_columns: [runbook_action_update_column!]!
  • where: runbook_action_bool_exp

runbook_action_order_by

Ordering options when selecting data from "runbook_action".

Fields:

  • account_type: order_by
  • action_name: order_by
  • attributes: order_by
  • base_action_configs: order_by
  • configs: order_by
  • created_at: order_by
  • created_by: order_by
  • description: order_by
  • id: order_by
  • internal_identifier: order_by
  • is_system_action: order_by
  • library_id: order_by
  • llm_enabled: order_by
  • llm_prompt: order_by
  • runbook_action_library: runbook_action_library_order_by
  • runbook_action_status: runbook_action_status_order_by
  • status: order_by
  • tenant_id: order_by
  • updated_at: order_by
  • updated_by: order_by
  • user: users_order_by

runbook_action_pk_columns_input

primary key columns input for table: runbook_action

Fields:

  • id: uuid!

runbook_action_prepend_input

prepend existing jsonb value of filtered columns with new jsonb value

Fields:

  • attributes: jsonb
  • base_action_configs: jsonb
  • configs: jsonb

runbook_action_select_column

select columns of table "runbook_action"

Values:

  • account_type - column name
  • action_name - column name
  • attributes - column name
  • base_action_configs - column name
  • configs - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • internal_identifier - column name
  • is_system_action - column name
  • library_id - column name
  • llm_enabled - column name
  • llm_prompt - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

runbook_action_set_input

input type for updating data in table "runbook_action"

Fields:

  • account_type: String
  • action_name: String
  • attributes: jsonb
  • base_action_configs: jsonb
  • configs: jsonb
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • internal_identifier: String
  • is_system_action: Boolean
  • library_id: uuid
  • llm_enabled: Boolean
  • llm_prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

runbook_action_status_aggregate_fields

aggregate fields of "runbook_action_status"

Fields:

  • count: Int!
  • max: runbook_action_status_max_fields
  • min: runbook_action_status_min_fields

runbook_action_status_bool_exp

Boolean expression to filter rows from the table "runbook_action_status". All fields are combined with a logical 'AND'.

Fields:

  • _and: [runbook_action_status_bool_exp!]
  • _not: runbook_action_status_bool_exp
  • _or: [runbook_action_status_bool_exp!]
  • description: String_comparison_exp
  • value: String_comparison_exp

runbook_action_status_constraint

unique or primary key constraints on table "runbook_action_status"

Values:

  • runbook_custom_action_status_pkey - unique or primary key constraint on columns "value"

runbook_action_status_insert_input

input type for inserting data into table "runbook_action_status"

Fields:

  • description: String
  • value: String

runbook_action_status_max_fields

aggregate max on columns

Fields:

  • description: String
  • value: String

runbook_action_status_min_fields

aggregate min on columns

Fields:

  • description: String
  • value: String

runbook_action_status_mutation_response

response of any mutation on the table "runbook_action_status"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [runbook_action_status!]! - data from the rows affected by the mutation

runbook_action_status_obj_rel_insert_input

input type for inserting object relation for remote table "runbook_action_status"

Fields:

  • data: runbook_action_status_insert_input!
  • on_conflict: runbook_action_status_on_conflict - upsert condition

runbook_action_status_on_conflict

on_conflict condition type for table "runbook_action_status"

Fields:

  • constraint: runbook_action_status_constraint!
  • update_columns: [runbook_action_status_update_column!]!
  • where: runbook_action_status_bool_exp

runbook_action_status_order_by

Ordering options when selecting data from "runbook_action_status".

Fields:

  • description: order_by
  • value: order_by

runbook_action_status_pk_columns_input

primary key columns input for table: runbook_action_status

Fields:

  • value: String!

runbook_action_status_select_column

select columns of table "runbook_action_status"

Values:

  • description - column name
  • value - column name

runbook_action_status_set_input

input type for updating data in table "runbook_action_status"

Fields:

  • description: String
  • value: String

runbook_action_status_stream_cursor_input

Streaming cursor of the table "runbook_action_status"

Fields:

  • initial_value: runbook_action_status_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

runbook_action_status_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • description: String
  • value: String

runbook_action_status_update_column

update columns of table "runbook_action_status"

Values:

  • description - column name
  • value - column name

runbook_action_stream_cursor_input

Streaming cursor of the table "runbook_action"

Fields:

  • initial_value: runbook_action_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

runbook_action_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_type: String
  • action_name: String
  • attributes: jsonb
  • base_action_configs: jsonb
  • configs: jsonb
  • created_at: timestamp
  • created_by: uuid
  • description: String
  • id: uuid
  • internal_identifier: String
  • is_system_action: Boolean
  • library_id: uuid
  • llm_enabled: Boolean
  • llm_prompt: String
  • status: String
  • tenant_id: uuid
  • updated_at: timestamp
  • updated_by: uuid

runbook_action_update_column

update columns of table "runbook_action"

Values:

  • account_type - column name
  • action_name - column name
  • attributes - column name
  • base_action_configs - column name
  • configs - column name
  • created_at - column name
  • created_by - column name
  • description - column name
  • id - column name
  • internal_identifier - column name
  • is_system_action - column name
  • library_id - column name
  • llm_enabled - column name
  • llm_prompt - column name
  • status - column name
  • tenant_id - column name
  • updated_at - column name
  • updated_by - column name

runbook_task_output_aggregate_bool_exp

Fields:

  • count: runbook_task_output_aggregate_bool_exp_count

runbook_task_output_aggregate_bool_exp_count

Fields:

  • arguments: [runbook_task_output_select_column!]
  • distinct: Boolean
  • filter: runbook_task_output_bool_exp
  • predicate: Int_comparison_exp!

runbook_task_output_aggregate_fields

aggregate fields of "runbook_task_output"

Fields:

  • count: Int!
  • max: runbook_task_output_max_fields
  • min: runbook_task_output_min_fields

runbook_task_output_aggregate_order_by

order by aggregate values of table "runbook_task_output"

Fields:

  • count: order_by
  • max: runbook_task_output_max_order_by
  • min: runbook_task_output_min_order_by

runbook_task_output_arr_rel_insert_input

input type for inserting array relation for remote table "runbook_task_output"

Fields:

  • data: [runbook_task_output_insert_input!]!
  • on_conflict: runbook_task_output_on_conflict - upsert condition

runbook_task_output_bool_exp

Boolean expression to filter rows from the table "runbook_task_output". All fields are combined with a logical 'AND'.

Fields:

  • _and: [runbook_task_output_bool_exp!]
  • _not: runbook_task_output_bool_exp
  • _or: [runbook_task_output_bool_exp!]
  • account_id: uuid_comparison_exp
  • auto_playbook_task: auto_playbook_task_bool_exp
  • id: uuid_comparison_exp
  • output: bytea_comparison_exp
  • runbook_id: uuid_comparison_exp
  • task_id: uuid_comparison_exp
  • tenant_id: uuid_comparison_exp

runbook_task_output_constraint

unique or primary key constraints on table "runbook_task_output"

Values:

  • runbook_task_output_pkey - unique or primary key constraint on columns "id"
  • runbook_task_output_runbook_id_task_id_key - unique or primary key constraint on columns "task_id", "runbook_id"

runbook_task_output_insert_input

input type for inserting data into table "runbook_task_output"

Fields:

  • account_id: uuid
  • auto_playbook_task: auto_playbook_task_obj_rel_insert_input
  • id: uuid
  • output: bytea
  • runbook_id: uuid
  • task_id: uuid
  • tenant_id: uuid

runbook_task_output_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • id: uuid
  • runbook_id: uuid
  • task_id: uuid
  • tenant_id: uuid

runbook_task_output_max_order_by

order by max() on columns of table "runbook_task_output"

Fields:

  • account_id: order_by
  • id: order_by
  • runbook_id: order_by
  • task_id: order_by
  • tenant_id: order_by

runbook_task_output_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • id: uuid
  • runbook_id: uuid
  • task_id: uuid
  • tenant_id: uuid

runbook_task_output_min_order_by

order by min() on columns of table "runbook_task_output"

Fields:

  • account_id: order_by
  • id: order_by
  • runbook_id: order_by
  • task_id: order_by
  • tenant_id: order_by

runbook_task_output_mutation_response

response of any mutation on the table "runbook_task_output"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [runbook_task_output!]! - data from the rows affected by the mutation

runbook_task_output_on_conflict

on_conflict condition type for table "runbook_task_output"

Fields:

  • constraint: runbook_task_output_constraint!
  • update_columns: [runbook_task_output_update_column!]!
  • where: runbook_task_output_bool_exp

runbook_task_output_order_by

Ordering options when selecting data from "runbook_task_output".

Fields:

  • account_id: order_by
  • auto_playbook_task: auto_playbook_task_order_by
  • id: order_by
  • output: order_by
  • runbook_id: order_by
  • task_id: order_by
  • tenant_id: order_by

runbook_task_output_pk_columns_input

primary key columns input for table: runbook_task_output

Fields:

  • id: uuid!

runbook_task_output_select_column

select columns of table "runbook_task_output"

Values:

  • account_id - column name
  • id - column name
  • output - column name
  • runbook_id - column name
  • task_id - column name
  • tenant_id - column name

runbook_task_output_set_input

input type for updating data in table "runbook_task_output"

Fields:

  • account_id: uuid
  • id: uuid
  • output: bytea
  • runbook_id: uuid
  • task_id: uuid
  • tenant_id: uuid

runbook_task_output_stream_cursor_input

Streaming cursor of the table "runbook_task_output"

Fields:

  • initial_value: runbook_task_output_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

runbook_task_output_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • id: uuid
  • output: bytea
  • runbook_id: uuid
  • task_id: uuid
  • tenant_id: uuid

runbook_task_output_update_column

update columns of table "runbook_task_output"

Values:

  • account_id - column name
  • id - column name
  • output - column name
  • runbook_id - column name
  • task_id - column name
  • tenant_id - column name

schedule_unit_type_aggregate_fields

aggregate fields of "schedule_unit_type"

Fields:

  • count: Int!
  • max: schedule_unit_type_max_fields
  • min: schedule_unit_type_min_fields

schedule_unit_type_bool_exp

Boolean expression to filter rows from the table "schedule_unit_type". All fields are combined with a logical 'AND'.

Fields:

  • _and: [schedule_unit_type_bool_exp!]
  • _not: schedule_unit_type_bool_exp
  • _or: [schedule_unit_type_bool_exp!]
  • value: String_comparison_exp

schedule_unit_type_constraint

unique or primary key constraints on table "schedule_unit_type"

Values:

  • schedule_unit_type_pkey - unique or primary key constraint on columns "value"

schedule_unit_type_insert_input

input type for inserting data into table "schedule_unit_type"

Fields:

  • value: String

schedule_unit_type_max_fields

aggregate max on columns

Fields:

  • value: String

schedule_unit_type_min_fields

aggregate min on columns

Fields:

  • value: String

schedule_unit_type_mutation_response

response of any mutation on the table "schedule_unit_type"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [schedule_unit_type!]! - data from the rows affected by the mutation

schedule_unit_type_on_conflict

on_conflict condition type for table "schedule_unit_type"

Fields:

  • constraint: schedule_unit_type_constraint!
  • update_columns: [schedule_unit_type_update_column!]!
  • where: schedule_unit_type_bool_exp

schedule_unit_type_order_by

Ordering options when selecting data from "schedule_unit_type".

Fields:

  • value: order_by

schedule_unit_type_pk_columns_input

primary key columns input for table: schedule_unit_type

Fields:

  • value: String!

schedule_unit_type_select_column

select columns of table "schedule_unit_type"

Values:

  • value - column name

schedule_unit_type_set_input

input type for updating data in table "schedule_unit_type"

Fields:

  • value: String

schedule_unit_type_stream_cursor_input

Streaming cursor of the table "schedule_unit_type"

Fields:

  • initial_value: schedule_unit_type_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

schedule_unit_type_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • value: String

schedule_unit_type_update_column

update columns of table "schedule_unit_type"

Values:

  • value - column name

sent_notifications_aggregate_fields

aggregate fields of "sent_notifications"

Fields:

  • count: Int!
  • max: sent_notifications_max_fields
  • min: sent_notifications_min_fields

sent_notifications_bool_exp

Boolean expression to filter rows from the table "sent_notifications". All fields are combined with a logical 'AND'.

Fields:

  • _and: [sent_notifications_bool_exp!]
  • _not: sent_notifications_bool_exp
  • _or: [sent_notifications_bool_exp!]
  • account_id: uuid_comparison_exp
  • created_at: timestamp_comparison_exp
  • fingerprint: String_comparison_exp
  • id: uuid_comparison_exp
  • slack_metadata: String_comparison_exp
  • slack_team_id: String_comparison_exp
  • slack_thread_id: String_comparison_exp
  • teams_channel_id: String_comparison_exp
  • teams_message_id: String_comparison_exp
  • teams_metadata: String_comparison_exp
  • tenant_id: uuid_comparison_exp
  • updated_at: timestamp_comparison_exp

sent_notifications_constraint

unique or primary key constraints on table "sent_notifications"

Values:

  • sent_notifications_pkey - unique or primary key constraint on columns "id"

sent_notifications_insert_input

input type for inserting data into table "sent_notifications"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • fingerprint: String
  • id: uuid
  • slack_metadata: String
  • slack_team_id: String
  • slack_thread_id: String
  • teams_channel_id: String
  • teams_message_id: String
  • teams_metadata: String
  • tenant_id: uuid
  • updated_at: timestamp

sent_notifications_max_fields

aggregate max on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • fingerprint: String
  • id: uuid
  • slack_metadata: String
  • slack_team_id: String
  • slack_thread_id: String
  • teams_channel_id: String
  • teams_message_id: String
  • teams_metadata: String
  • tenant_id: uuid
  • updated_at: timestamp

sent_notifications_min_fields

aggregate min on columns

Fields:

  • account_id: uuid
  • created_at: timestamp
  • fingerprint: String
  • id: uuid
  • slack_metadata: String
  • slack_team_id: String
  • slack_thread_id: String
  • teams_channel_id: String
  • teams_message_id: String
  • teams_metadata: String
  • tenant_id: uuid
  • updated_at: timestamp

sent_notifications_mutation_response

response of any mutation on the table "sent_notifications"

Fields:

  • affected_rows: Int! - number of rows affected by the mutation
  • returning: [sent_notifications!]! - data from the rows affected by the mutation

sent_notifications_on_conflict

on_conflict condition type for table "sent_notifications"

Fields:

  • constraint: sent_notifications_constraint!
  • update_columns: [sent_notifications_update_column!]!
  • where: sent_notifications_bool_exp

sent_notifications_order_by

Ordering options when selecting data from "sent_notifications".

Fields:

  • account_id: order_by
  • created_at: order_by
  • fingerprint: order_by
  • id: order_by
  • slack_metadata: order_by
  • slack_team_id: order_by
  • slack_thread_id: order_by
  • teams_channel_id: order_by
  • teams_message_id: order_by
  • teams_metadata: order_by
  • tenant_id: order_by
  • updated_at: order_by

sent_notifications_pk_columns_input

primary key columns input for table: sent_notifications

Fields:

  • id: uuid!

sent_notifications_select_column

select columns of table "sent_notifications"

Values:

  • account_id - column name
  • created_at - column name
  • fingerprint - column name
  • id - column name
  • slack_metadata - column name
  • slack_team_id - column name
  • slack_thread_id - column name
  • teams_channel_id - column name
  • teams_message_id - column name
  • teams_metadata - column name
  • tenant_id - column name
  • updated_at - column name

sent_notifications_set_input

input type for updating data in table "sent_notifications"

Fields:

  • account_id: uuid
  • created_at: timestamp
  • fingerprint: String
  • id: uuid
  • slack_metadata: String
  • slack_team_id: String
  • slack_thread_id: String
  • teams_channel_id: String
  • teams_message_id: String
  • teams_metadata: String
  • tenant_id: uuid
  • updated_at: timestamp

sent_notifications_stream_cursor_input

Streaming cursor of the table "sent_notifications"

Fields:

  • initial_value: sent_notifications_stream_cursor_value_input! - Stream column input with initial value
  • ordering: cursor_ordering - cursor ordering

sent_notifications_stream_cursor_value_input

Initial value of the column from where the streaming should start

Fields:

  • account_id: uuid
  • created_at: timestamp
  • fingerprint: String
  • id: uuid
  • slack_metadata: String
  • slack_team_id: String
  • slack_thread_id: String
  • teams_channel_id: String
  • teams_message_id: String
  • teams_metadata: String
  • tenant_id: uuid
  • updated_at: timestamp

sent_notifications_update_column

update columns of table "sent_notifications"

Values:

  • account_id - column name
  • created_at - column name
  • fingerprint - column name
  • id - column name
  • slack_metadata - column name
  • slack_team_id - column name
  • slack_thread_id - column name
  • teams_channel_id - column name
  • teams_message_id - column name
  • teams_metadata - column name
  • tenant_id - column name
  • updated_at - column name