Queries
escalationPaths
Returns a paginated list of all escalation paths configured in the workspace. Requires the escalationPath:read permission.
QUERY
escalationPaths(first: Int, after: String, last: Int, before: String): EscalationPathConnection!Arguments
first
Int
after
String
last
Int
before
String
Returns
edges
pageInfo
Query
query EscalationPaths {
escalationPaths {
edges {
cursor
node {
id
name
steps {
__typename
... on EscalationPathStepUser {
__typename
}
}
description
createdAt {
__typename
}
createdBy {
__typename
... on UserActor {
__typename
}
}
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"escalationPaths": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"name": "string",
"steps": [
{
"__typename": "EscalationPathStepUser"
}
],
"description": "string",
"createdAt": {
"__typename": "DateTime"
},
"createdBy": {
"__typename": "UserActor"
}
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?
⌘I
Query
query EscalationPaths {
escalationPaths {
edges {
cursor
node {
id
name
steps {
__typename
... on EscalationPathStepUser {
__typename
}
}
description
createdAt {
__typename
}
createdBy {
__typename
... on UserActor {
__typename
}
}
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"escalationPaths": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"name": "string",
"steps": [
{
"__typename": "EscalationPathStepUser"
}
],
"description": "string",
"createdAt": {
"__typename": "DateTime"
},
"createdBy": {
"__typename": "UserActor"
}
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}
