application

This query returns the Application specified by the given ID.

Arguments

id
ID
required

Returns

Nullable
Application

applicationByName

This query returns the Application with the given unique name.

Arguments

uniqueName
String
required

Returns

Nullable
Application

applications

This query returns the Applications within the Environment.

The applications query uses cursor-based paginationtypical of GraphQL APIs. You can use the pairs of parameters first and after or last and before to page forward or backward through the results, respectively.

For forward pagination, the first parameter defines the number of results to return, and the after parameter defines the cursor to continue from. You should pass the cursor for the last result of the current page to after.

For backward pagination, the last parameter defines the number of results to return, and the before parameter defines the cursor to continue from. You should pass the cursor for the first result of the current page to before.

Arguments

first
Int
after
String
last
Int
before
String

Returns

Nullable
ApplicationConnection

dataSource

This query returns the Data Source specified by the given ID.

A Data Source is a connection to your data warehouse. It has the necessary connection details for Propel to access Snowflake or any other supported Data Source.

Arguments

id
ID
required

Returns

Nullable
DataSource

dataSourceByName

This query returns the Data Source specified by the given unique name.

A Data Source is a connection to your data warehouse. It has the necessary connection details for Propel to access Snowflake or any other supported Data Source.

Arguments

uniqueName
String
required

Returns

Nullable
DataSource

dataSources

This query returns the Data Sources within the Environment.

A Data Source is a connection to your data warehouse. It has the necessary connection details for Propel to access Snowflake or any other supported Data Source. Environments are independent and isolated Propel workspaces for development, staging (testing), and production workloads.

The dataSources query uses cursor-based paginationtypical of GraphQL APIs. You can use the pairs of parameters first and after or last and before to page forward or backward through the results, respectively.

For forward pagination, the first parameter defines the number of results to return, and the after parameter defines the cursor to continue from. You should pass the cursor for the last result of the current page to after.

For backward pagination, the last parameter defines the number of results to return, and the before parameter defines the cursor to continue from. You should pass the cursor for the first result of the current page to before.

Arguments

first
Int
after
String
last
Int
before
String

Returns

Nullable
DataSourceConnection

dataPool

This query returns the Data Pool specified by the given ID.

A Data Pool is a cached table hydrated from your data warehouse optimized for high-concurrency and low-latency queries.

Arguments

id
ID
required

Returns

Nullable
DataPool

dataPoolByName

This query returns the Data Pool specified by the given unique name.

A Data Pool is a cached table hydrated from your data warehouse optimized for high-concurrency and low-latency queries.

Arguments

uniqueName
String
required

Returns

Nullable
DataPool

dataPools

This query returns the Data Pools within the Environment.

A Data Pool is a cached table hydrated from your data warehouse optimized for high-concurrency and low-latency queries. Environments are independent and isolated Propel workspaces for development, staging (testing), and production workloads.

The dataPools query uses cursor-based paginationtypical of GraphQL APIs. You can use the pairs of parameters first and after or last and before to page forward or backward through the results, respectively.

For forward pagination, the first parameter defines the number of results to return, and the after parameter defines the cursor to continue from. You should pass the cursor for the last result of the current page to after.

For backward pagination, the last parameter defines the number of results to return, and the before parameter defines the cursor to continue from. You should pass the cursor for the first result of the current page to before.

Arguments

first
Int
after
String
last
Int
before
String

Returns

Nullable
DataPoolConnection

environment

This query returns the Environment specified by the given ID.

Arguments

id
ID
required

Returns

Nullable
Environment

materializedViews

This query returns the Materialized Views within the Environment.

The materializedViews query uses cursor-based paginationtypical of GraphQL APIs. You can use the pairs of parameters first and after or last and before to page forward or backward through the results, respectively.

For forward pagination, the first parameter defines the number of results to return, and the after parameter defines the cursor to continue from. You should pass the cursor for the last result of the current page to after.

For backward pagination, the last parameter defines the number of results to return, and the before parameter defines the cursor to continue from. You should pass the cursor for the first result of the current page to before.

Arguments

first
Int
after
String
last
Int
before
String

Returns

Nullable
MaterializedViewConnection

dataPoolAccessPolicy

This query returns the Data Pool Access Policy specified by the given ID.

A Data Pool Access Policy limits the data that Applications can access within a Data Pool.

Arguments

id
ID
required

Returns

Nullable
DataPoolAccessPolicy

metric

This query returns the Metric specified by the given ID.

A Metric is a business indicator measured over time.

Arguments

id
ID
required

Returns

Nullable
Metric

metricByName

This query returns the Metric specified by the given unique name.

A Metric is a business indicator measured over time.

Arguments

uniqueName
String
required

Returns

Nullable
Metric

metrics

This query returns the Metrics within the Environment.

A Metric is a business indicator measured over time. Each Metric is associated with one Data Pool, which is a cached table hydrated from your data warehouse optimized for high-concurrency and low-latency queries. Environments are independent and isolated Propel workspaces for development, staging (testing), and production workloads.

The metrics query uses cursor-based paginationtypical of GraphQL APIs. You can use the pairs of parameters first and after or last and before to page forward or backward through the results, respectively.

For forward pagination, the first parameter defines the number of results to return, and the after parameter defines the cursor to continue from. You should pass the cursor for the last result of the current page to after.

For backward pagination, the last parameter defines the number of results to return, and the before parameter defines the cursor to continue from. You should pass the cursor for the first result of the current page to before.

Arguments

first
Int
after
String
last
Int
before
String

Returns

Nullable
MetricConnection

booster

This query returns the Booster specified by the given ID.

A Booster significantly improves the query performance for a Metric.

Arguments

id
ID
required

Returns

Nullable
Booster

policy

Returns a Policy by ID.

Arguments

id
ID
required

Returns

Nullable
Policy

sync

Returns a Sync by ID.

Arguments

id
ID
required

Returns

Nullable
Sync

table

Returns a table by ID.

Arguments

id
ID
required

Returns

Nullable
Table

metricReport

Build a report, or table, consisting of multiple Metrics broken down by one-or-more dimensions.

The first few columns of the report are the dimensions you choose to break down by. The subsequent columns are the Metrics you choose to query. By default, the report sorts on the first Metric in descending order, but you can configure this with the orderByMetric and sort inputs.

Finally, reports use cursor-based pagination. You can control page size with the first and last inputs.

Arguments

input
MetricReportInput
required

Returns

Nullable
MetricReportConnection

sqlV1

Query Data Pools using SQL.

Arguments

input
SqlV1Input
required

Returns

Non-null
SqlResponse

describeSqlV1

Describe SQL statements Data Pools.

Arguments

input
DescribeSqlV1Input
required

Returns

Non-null
DescribeSqlResponse

dataGrid

This query returns the individual records of a Data Pool with the convenience of built-in pagination, filtering, and sorting.

Arguments

input
DataGridInput
required

Returns

Non-null
DataGridConnection

recordsByUniqueId

This query returns records by the given unique IDs.

Arguments

input
RecordsByUniqueIdInput
required

Returns

Non-null
RecordsByUniqueIdResponse

topValues

This query returns an array of the most frequent values in a given column. The resulting array is sorted in descending order of approximate frequency of values.

Arguments

input
TopValuesInput
required

Returns

Non-null
TopValuesResponse

counter

Query a metric in counter format. Returns a single metric value for the given time range and filters.

Arguments

input
CounterInput
required

Returns

Nullable
CounterResponse

counters

Query metrics in counter format. Returns a metric value for each input in the array of inputs.

Arguments

input
[CounterInput!]
required

Returns

Non-null
CounterResponse

timeSeries

Query a metric in time series format. Returns arrays of timestamps and metric values for the given time range and filters.

Arguments

input
TimeSeriesInput
required

Returns

Nullable
TimeSeriesResponse

leaderboard

Query a metric in leaderboard format. Returns a table (array of rows) with the selected dimensions and the metric’s corresponding values for the given time range and filters.

Arguments

input
LeaderboardInput
required

Returns

Nullable
LeaderboardResponse

deletionJob

This query returns the Deletion Job specified by the given ID.

The Deletion Job represents the asynchronous process of deleting data given some filters inside a Data Pool.

Arguments

id
ID
required

Returns

Nullable
DeletionJob

addColumnToDataPoolJob

This query returns the AddColumnToDataPoolJob specified by the given ID.

The AddColumnToDataPoolJob represents the asynchronous process of adding a column, given its name and type, to a Data Pool.

Arguments

id
ID
required

Returns

Nullable
AddColumnToDataPoolJob

addColumnToDataPoolJobByStatus

This query returns the AddColumnToDataPool Job specified by a given status.

Arguments

status
JobStatus
required
first
Int
after
String
last
Int
before
String

Returns

Non-null
AddColumnToDataPoolJobConnection

updateDataPoolRecordsJob

This query returns the UpdateDataPoolRecords Job specified by the given ID.

The UpdateDataPoolRecords Job represents the asynchronous process of updating records inside a Data Pool.

Arguments

id
ID
required

Returns

Nullable
UpdateDataPoolRecordsJob

updateDataPoolRecordsJobByStatus

This query returns the UpdateDataPoolRecords Job specified by a given status.

Arguments

status
JobStatus
required
first
Int
after
String
last
Int
before
String

Returns

Non-null
UpdateDataPoolRecordsJobConnection

materializedView

This query returns the Materialized View specified by the given ID.

Arguments

id
ID
required

Returns

Nullable
MaterializedView

materializedViewByName

This query returns the Materialized View specified by its unique name.

Arguments

uniqueName
String
required

Returns

Nullable
MaterializedView