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!