Created
May 16, 2024 07:07
-
-
Save shairyar/b696ce00b12b30e9129a5076f8135874 to your computer and use it in GitHub Desktop.
List of actions with throughput
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query PaginatedMetricsListQuery($appId: String!, $timeframe: TimeframeEnum, $query: [MetricAggregation!]!, $limit: Int, $offset: Int) { | |
app(id: $appId) { | |
id | |
metrics { | |
list( | |
query: $query | |
timeframe: $timeframe | |
limit: $limit | |
offset: $offset | |
) { | |
start | |
end | |
total | |
rows { | |
id | |
name | |
fields { | |
key | |
value | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Query variables