Created
July 29, 2022 07:18
-
-
Save shairyar/264efc00c7aa5f8db3bc227915aa7e1c to your computer and use it in GitHub Desktop.
This file contains hidden or 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!, $start: DateTime, $end: DateTime, $timeframe: TimeframeEnum, $query: [MetricAggregation!]!) { | |
app(id: $appId) { | |
id | |
metrics { | |
list(start: $start, end: $end, timeframe: $timeframe, query: $query) { | |
start | |
end | |
rows { | |
name | |
tags { | |
key | |
value | |
} | |
fields { | |
key | |
value | |
} | |
} | |
} | |
} | |
} | |
} |
Author
shairyar
commented
Jul 29, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment