Complex GraphQL queries
This enhances Quick's GraphQL queries and let users get their data from topics in the way they need. It includes two new query types: Range and filter.
Both let you define conditions of values that should be returned. Imagine you have a topic containing a service metric with a timestamp. You're now interested in the metrics for a given service of the last…
This enhances Quick's GraphQL queries and let users get their data from topics in the way they need. It includes two new query types: Range and filter.
Both let you define conditions of values that should be returned. Imagine you have a topic containing a service metric with a timestamp. You're now interested in the metrics for a given service of the last month. Range queries allow you to get this data, for instance with a query like this:
{
getServiceMetrics(serviceId: "my-service-id", fromTimestamp: "07/01/2022", untilTimestamp: "08/01/2022) {
metric
}
}
Filter queries are similar, but let you define a single argument that holds for all values you're interested in.
This milestone is closed.
No open issues remain. View closed issues or see open milestones in this repository.