Skip to content

allSlaSummariesByIds

List of SLA Domain summaries for the given IDs.

Arguments

Argument Type Description
slaIds (required) [UUID!]! A list of SLA Domain IDs.

Returns

[SlaDomain!]!

Sample

query AllSlaSummariesByIds($slaIds: [UUID!]!) {
  allSlaSummariesByIds(slaIds: $slaIds) {
    id
    name
    version
  }
}
{
  "slaIds": [
    "00000000-0000-0000-0000-000000000000"
  ]
}
{
  "data": {
    "allSlaSummariesByIds": [
      {
        "id": "example-string",
        "name": "example-string",
        "version": "example-string"
      }
    ]
  }
}