Created
June 5, 2025 15:01
-
-
Save shairyar/704bd47846808a3a5bb497caf4e893d2 to your computer and use it in GitHub Desktop.
Fetch performance incidents of logged by AppSignal
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 PaginatedPerformanceIncidentsQuery($appId: String!, $namespaces: [String], $limit: Int, $offset: Int) { | |
app(id: $appId) { | |
id | |
paginatedPerformanceIncidents( | |
namespaces: $namespaces | |
limit: $limit | |
offset: $offset | |
) { | |
total | |
rows { | |
...PerformanceIncidentRow | |
} | |
} | |
} | |
} | |
fragment PerformanceIncidentRow on PerformanceIncident { | |
id | |
number | |
actionNames | |
namespace | |
} |
Author
shairyar
commented
Jun 5, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment