Skip to content

Instantly share code, notes, and snippets.

@shairyar
Created October 15, 2021 10:04
Show Gist options
  • Save shairyar/d44ca2bc8ec6aec1227033b2fb939bd6 to your computer and use it in GitHub Desktop.
Save shairyar/d44ca2bc8ec6aec1227033b2fb939bd6 to your computer and use it in GitHub Desktop.
List all revision
query MarkersIndexQuery($appId: String!, $limit: Int, $offset: Int, $start: DateTime, $end: DateTime) {
app(id: $appId) {
id
deployMarkers(limit: $limit, offset: $offset, start: $start, end: $end) {
id
createdAt
shortRevision
revision
gitCompareUrl
user
liveForInWords
liveFor
exceptionCount
exceptionRate
__typename
}
__typename
}
}
@shairyar
Copy link
Author

Query variables

{
  "appId": "YOUR-APP-ID",
  "limit": 25
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment