lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours

environment.query.graphql 321 Bytes
query environment($fullPath: ID!, $environmentName: String) {
  project(fullPath: $fullPath) {
    environment(name: $environmentName) {
      latestOpenedMostSevereAlert {
        title
        severity
        detailsUrl
        startedAt
        prometheusAlert {
          humanizedText
        }
      }
    }
  }
}