Nudgebee GraphQL API Documentation
Generated on: 2026-02-15T03:17:42.555Z
Table of Contents
- Getting Started
- Common Examples
- Queries (672 total)
- Cost Management (20)
- Anomalies (18)
- Events & Incidents (60)
- Recommendations (24)
- Cloud Infrastructure (44)
- Kubernetes (25)
- Automation (71)
- Agents (24)
- AI & LLM (82)
- Observability (35)
- Tickets (16)
- Notifications (41)
- Organization & Users (73)
- Integrations (35)
- Configuration (40)
- Data Warehouse (19)
- Audit (5)
- Other (40)
- Mutations (1457 total)
- Cost Management (42)
- Anomalies (36)
- Events & Incidents (154)
- Recommendations (45)
- Cloud Infrastructure (106)
- Kubernetes (28)
- Automation (168)
- Agents (57)
- AI & LLM (174)
- Observability (35)
- Compliance & Security (5)
- Tickets (31)
- Notifications (92)
- Organization & Users (174)
- Integrations (80)
- Configuration (96)
- Data Warehouse (36)
- Audit (7)
- Other (91)
- Types (5593 total)
- Core Types (1576)
- Helper Types (4017)
Getting Started
Authentication
The Nudgebee GraphQL API supports three authentication methods:
1. Programmatic Token (Recommended for API integrations)
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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[billing_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[billing_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[billing_usage_cost_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[billing_usage_cost_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[businessunit_funding_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[businessunit_funding_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[funding_sources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[funding_sources_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest]where:SpendGroupingsWhereRequest
Returns: SpendGroupingsResponse
spends
An array relationship
Arguments:
distinct_on:[spends_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[spends_order_by!]- sort the rows by one or more columnswhere:spends_bool_exp- filter the rows returned
Returns: [spends!]!
spends_aggregate
An aggregate relationship
Arguments:
distinct_on:[spends_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[spends_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[spends_resource_group_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[spends_resource_group_type_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_change_operator_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_change_operator_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_config_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_config_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_config_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_config_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[anomaly_type_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:ListAnomalyWhereRequest
Returns: ListAnomalyResponse
anomaly_v3
Arguments:
limit:Intoffset:Intwhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_bulk_operations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_bulk_operations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_classification_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_classification_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_correlations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_correlations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_duplicates_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_duplicates_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_history_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_history_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_incoming_webhooks_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_incoming_webhooks_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_log_analysis_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_log_analysis_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_log_analysis_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_log_analysis_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_resolution_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_resolution_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_rule_severity_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_rule_severity_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_rule_source_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_rule_source_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_rules_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_rules_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_severity_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_severity_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_source_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_source_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_triage_rules_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[event_triage_rules_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[events_order_by!]- sort the rows by one or more columnswhere:events_bool_exp- filter the rows returned
Returns: [events!]!
events_aggregate
An aggregate relationship
Arguments:
distinct_on:[events_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[events_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest]where:EventsWhereRequest
Returns: EventsResponse
insight
fetch data from the table: "insight"
Arguments:
distinct_on:[insight_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[insight_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[insight_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[insight_severity_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[insight_severity_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_action_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_action_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_category_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_category_type_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:RecommendationGroupingWhereRequest
Returns: RecommendationGroupingResponse
recommendation_missconfig_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_by:[QuerySortByRequest!]where:RecommendationMissConfigGroupingWhereRequest
Returns: RecommendationMissConfigGroupingResponse
recommendation_missconfig_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_resolution_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_resolution_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:RecommendationSecurityCisGroupingsWhereRequest
Returns: RecommendationSecurityCisGroupingsResponse
recommendation_security_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_by:[QuerySortByRequest!]where:RecommendationSecurityGroupingsWhereRequest
Returns: RecommendationSecurityGroupingsResponse
recommendation_security_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_severity_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_severity_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[recommendation_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[active_resources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[active_resources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_attrs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_attrs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_onboarding_errors_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_onboarding_errors_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_score_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_score_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_sync_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_account_sync_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_accounts_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_accounts_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_api_permission_errors_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_api_permission_errors_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_provider_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_provider_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_attributes_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_attributes_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_details_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_details_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_metrics_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_metrics_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_status_type_order_by!]- sort the rows by one or more columnswhere: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 Argumentsdistinct_on:[cloud_resource_v2_enum_name!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resource_v2_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resourses_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[cloud_resourses_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_account_resource_usage_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_account_resource_usage_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest]where:K8sClusterGroupingsWhereRequest
Returns: K8sClusterGroupingsResponse
k8s_metrics_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String]group_by:[String!]limit:Intoffset:Intorder_by:[QuerySortByRequest]where:K8sMetricsGroupingsWhereRequest
Returns: K8sMetricsGroupingsResponse
k8s_namespace_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_namespaces_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_namespaces_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:K8sNamespaceWhereRequest
Returns: K8sNamespaceResponse
k8s_nodes
An array relationship
Arguments:
distinct_on:[k8s_nodes_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_nodes_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_nodes_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:K8sPodGroupingsWhereRequest
Returns: K8sPodGroupingsResponse
k8s_pods
An array relationship
Arguments:
distinct_on:[k8s_pods_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_pods_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_pods_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:K8sPodsWhereRequest
Returns: K8sPodsResponse
k8s_versions
Returns: [K8sVersionResponse]
k8s_workload_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_workloads_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[k8s_workloads_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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:uuidrule_name:Stringstatus:[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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_optimize_resource_map_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_optimize_resource_map_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_approval_policy_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_approval_policy_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_approval_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_approval_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_approvals_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_approvals_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_category_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_category_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_execution_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_execution_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_reviewee_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_reviewee_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_reviewers_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_reviewers_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_task_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_task_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_task_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_pilot_task_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_actions_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_actions_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_execution_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_execution_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_executions_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_executions_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_task_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_task_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_task_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auto_playbook_task_status_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[autopilot_attributes_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[autopilot_attributes_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_audit_log_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_audit_log_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_action_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_action_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_processor_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_processor_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_source_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_source_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_trigger_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_playbook_trigger_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_task_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[agent_task_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_base_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_base_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_edge_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_edge_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_metadata_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_metadata_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_node_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_node_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_relationship_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_relationship_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_tenant_filters_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[knowledge_graph_tenant_filters_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_agents_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_agents_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_agents_installation_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_agents_installation_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_agent_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_agent_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_agent_critiques_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_agent_critiques_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_feedback_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_feedback_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_history_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_history_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_messages_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_messages_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_saved_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_saved_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_tool_calls_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversation_tool_calls_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_conversations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_functions_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_functions_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_model_pricing_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_model_pricing_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_rag_audit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_rag_audit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_rags_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[llm_rags_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[application_group_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[application_group_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[application_group_mapping_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[application_group_mapping_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[application_profile_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[application_profile_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[metrics_summary_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[metrics_summary_order_by!]- sort the rows by one or more columnswhere: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:Stringdeployment:String!namespace:String!persist_recommendation:Booleanresource_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:TraceGroupingWhereRequestlimit:Intoffset:Intorder_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:Intoffset:Intorder_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:Intoffset:Intorder_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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ticket_severity_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ticket_severity_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ticket_source_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ticket_source_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ticket_tool_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ticket_tool_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tickets_order_by!]- sort the rows by one or more columnswhere:tickets_bool_exp- filter the rows returned
Returns: [tickets!]!
tickets_aggregate
An aggregate relationship
Arguments:
distinct_on:[tickets_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tickets_order_by!]- sort the rows by one or more columnswhere: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:Stringurl: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[messaging_platforms_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[messaging_platforms_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[messaging_platforms_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[messaging_platforms_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_channel_account_mappings_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_channel_account_mappings_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_platform_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_platform_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_rule_mappings_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_rule_mappings_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_rules_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_rules_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_severity_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_severity_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_source_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_source_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_user_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_user_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_user_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notification_user_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notifications_order_by!]- sort the rows by one or more columnswhere:notifications_bool_exp- filter the rows returned
Returns: [notifications!]!
notifications_aggregate
An aggregate relationship
Arguments:
distinct_on:[notifications_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notifications_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notifications_delivery_mode_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notifications_delivery_mode_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notifications_frequency_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[notifications_frequency_type_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intwhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auth_provider_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auth_provider_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auth_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[auth_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[business_unit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[business_unit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[businessunit_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[businessunit_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_accounts_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_accounts_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_category_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_category_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_cloud_resources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_cloud_resources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_fundings_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_fundings_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[project_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[roles_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[roles_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_attrs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_attrs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_onboarding_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_onboarding_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[tenant_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_attrs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_attrs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_auths_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_auths_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_groups_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_groups_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_history_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_history_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_roles_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_roles_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[user_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[usergroup_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[usergroup_users_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[users_order_by!]- sort the rows by one or more columnswhere:users_bool_exp- filter the rows returned
Returns: [users!]!
users_aggregate
An aggregate relationship
Arguments:
distinct_on:[users_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[users_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_categories_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_categories_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_config_values_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_config_values_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_sources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_sources_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_statuses_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_statuses_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integration_types_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integrations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integrations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integrations_cloud_accounts_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[integrations_cloud_accounts_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[jira_configurations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[jira_configurations_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ms_teams_channels_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[ms_teams_channels_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slack_bots_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slack_bots_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slack_oauth_states_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slack_oauth_states_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[configuration_store_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[configuration_store_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[etl_jobs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[etl_jobs_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[feature_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[feature_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[feature_flag_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[feature_flag_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slo_config_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slo_config_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slo_report_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slo_report_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intwhere:SloReportObservationWhereRequest
Returns: SloReportObservationResponse
slo_status
fetch data from the table: "slo_status"
Arguments:
distinct_on:[slo_status_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slo_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[slo_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_audit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_audit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_status_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_steps_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_steps_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_tasks_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[upgrade_plan_tasks_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_databases_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_databases_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_pipe_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_pipe_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_pipe_usage_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_pipe_usage_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_queries_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_queries_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:DwQueriesWhereRequest
Returns: DwQueriesResponse
dw_query_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_query_profile_data_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_query_profile_data_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_tables_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[dw_tables_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[audit_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[audit_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:AuditGroupingWhereRequest
Returns: AuditGroupingResponse
audits_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[account_env_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[account_env_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[account_purpose_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[account_purpose_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[db_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[db_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[group_roles_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[group_roles_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[marketplace_customers_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[marketplace_customers_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[projects_order_by!]- sort the rows by one or more columnswhere:projects_bool_exp- filter the rows returned
Returns: [projects!]!
projects_aggregate
An aggregate relationship
Arguments:
distinct_on:[projects_select_column!]- distinct select on columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[projects_order_by!]- sort the rows by one or more columnswhere: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:Intoffset:Intorder_by:[QuerySortByRequest!]where:RecommendationWhereRequest
Returns: RecommendationResponse
resource_groupings_v2
Arguments:
column_transformations:[QueryColumnTransformationRequest!]columns:[String!]group_by:[String!]limit:Intoffset:Intorder_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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_action_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_action_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_action_library_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_action_library_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_action_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_action_status_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_task_output_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[runbook_task_output_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[schedule_unit_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[schedule_unit_type_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[sent_notifications_order_by!]- sort the rows by one or more columnswhere: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 columnslimit:Int- limit the number of rows returnedoffset:Int- skip the first n rows. Use only with order_byorder_by:[sent_notifications_order_by!]- sort the rows by one or more columnswhere: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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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:Intcloud_account_id:String!dry_run:Booleanend_time:Stringevent_id:Stringfingerprint:Stringstart_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:Stringapply_to_existing:Booleanapply_until_hours:Intclassification:String!confirmed:Booleancorrected_priority:Stringevent_id:String!linked_event_id:Stringpriority_direction:Stringreason_code:String!reason_text:String
Returns: ClassifyEventResponse
event_classify_preview
Preview the impact of classifying an event before confirming
Arguments:
apply_scope:Stringapply_until_hours:Intclassification:String!event_id:String!
Returns: ClassifyPreviewResponse
event_create_triage_rule
Create a new triage rule for automatic event processing
Arguments:
action:String!action_value:Stringapply_to_existing:Booleancloud_account_id:String!description:Stringeffective_until:Stringmatch_alertname:Stringmatch_finding_type:Stringmatch_fingerprint:Stringmatch_labels:Stringmatch_namespace:Stringmatch_priority:Stringmatch_service:Stringmatch_source:Stringname:Stringpriority:Intrule_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:Booleanrule_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:Stringend_date:Stringlimit:Intoffset:Intrule_id:String!start_date:String
Returns: EventGetTriageRuleEventsOutput
event_get_triage_rules
Get triage rules for an account
Arguments:
cloud_account_id:Stringenabled:Booleanrule_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:Stringmatch_finding_type:Stringmatch_fingerprint:Stringmatch_labels:Stringmatch_namespace:Stringmatch_priority:Stringmatch_service:Stringmatch_source:Stringrule_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:Stringapply_to_existing:Booleancloud_account_id:String!description:Stringeffective_until:Stringmatch_alertname:Stringmatch_finding_type:Stringmatch_fingerprint:Stringmatch_labels:Stringmatch_namespace:Stringmatch_priority:Stringmatch_service:Stringmatch_source:Stringname:Stringpriority:Intrule_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 insertedon_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 valueswhere: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 valueswhere: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 valuespk_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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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 valueswhere: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 valuespk_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