GraphQL API
GraphQL endpoint
Authentication
Authorization: Bearer <your-token-here>Examples
Fetching information about your organization and spaces:
query Org {
organization {
id
name
spaces {
id
name
labels {
id
name
color
}
statuses {
id
name
type
default
}
}
users {
id
username
}
}
}Fetching work items in a space:
GraphQL API Schema
Last updated