todo.sr.ht API Documentation
Queries
events
@access(scope:EVENTS, kind:RO)
List of events which the authenticated user is subscribed to or implicated in, ordered by the event date (recent events first).
Returns EventCursor
Argumentscursor
- Cursor
Example Query
query events($cursor: Cursor) {
events(cursor: $cursor) {
results {
...Event
}
cursor
}
}
me
@access(scope:PROFILE, kind:RO)
Returns the authenticated user.
Returns User!
Example Query
query me {
me {
id
created
updated
canonicalName
username
email
url
location
bio
tracker {
...Tracker
}
trackers {
...TrackerCursor
}
}
}
subscriptions
@access(scope:SUBSCRIPTIONS, kind:RO)
List of subscriptions of the authenticated user.
Returns ActivitySubscriptionCursor
Argumentscursor
- Cursor
Example Query
query subscriptions($cursor: Cursor) {
subscriptions(cursor: $cursor) {
results {
...ActivitySubscription
}
cursor
}
}
trackers
@access(scope:TRACKERS, kind:RO)
Returns trackers that the authenticated user has access to.
NOTE: in this version of the API, only trackers owned by the authenticated user are returned, but in the future the default behavior will be to return all trackers that the user either (1) has been given explicit access to via ACLs or (2) has implicit access to either by ownership or group membership.
Returns TrackerCursor
Argumentscursor
- Cursor
Example Query
query trackers($cursor: Cursor) {
trackers(cursor: $cursor) {
results {
...Tracker
}
cursor
}
}
user
@access(scope:PROFILE, kind:RO)
Returns a specific user.
Returns User
Argumentsusername
- String!
Example Query
query user($username: String!) {
user(username: $username) {
id
created
updated
canonicalName
username
email
url
location
bio
tracker {
...Tracker
}
trackers {
...TrackerCursor
}
}
}
userWebhook
Returns details of a user webhook subscription by its ID.
Returns WebhookSubscription
Argumentsid
- Int!
Example Query
query userWebhook($id: Int!) {
userWebhook(id: $id) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
userWebhooks
Returns a list of user webhook subscriptions. For clients authenticated with a personal access token, this returns all webhooks configured by all GraphQL clients for your account. For clients authenticated with an OAuth 2.0 access token, this returns only webhooks registered for your client.
Returns WebhookSubscriptionCursor!
Argumentscursor
- Cursor
Example Query
query userWebhooks($cursor: Cursor) {
userWebhooks(cursor: $cursor) {
results {
...WebhookSubscription
}
cursor
}
}
version
Returns API version information.
Returns Version!
Example Query
query version {
version {
major
minor
patch
deprecationDate
}
}
webhook
Returns information about the webhook currently being processed. This is not valid during normal queries over HTTP, and will return an error if used outside of a webhook context.
Returns WebhookPayload!
Example Query
query webhook {
webhook {
uuid
event
date
}
}
Mutations
assignUser
@access(scope:TICKETS, kind:RW)
Adds a user to the list of assigned users for a ticket
Returns Event!
ArgumentsExample Query
query assignUser($trackerId: Int!, $ticketId: Int!, $userId: Int!) {
assignUser(trackerId: $trackerId, ticketId: $ticketId, userId: $userId) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
createLabel
@access(scope:TRACKERS, kind:RW)
Creates a new ticket label for a tracker. The colors must be in CSS hexadecimal RGB format "#RRGGBB", i.e. "#000000" for black and "#FF0000" for red.
Returns Label!
ArgumentsExample Query
query createLabel($trackerId: Int!, $name: String!, $foregroundColor: String!, $backgroundColor: String!) {
createLabel(trackerId: $trackerId, name: $name, foregroundColor: $foregroundColor, backgroundColor: $backgroundColor) {
id
created
name
tracker {
...Tracker
}
backgroundColor
foregroundColor
tickets {
...TicketCursor
}
}
}
createTicketWebhook
Creates a new ticket webhook.
Returns WebhookSubscription!
ArgumentstrackerId
- Int!ticketId
- Int!config
- TicketWebhookInput!
Example Query
query createTicketWebhook($trackerId: Int!, $ticketId: Int!, $config: TicketWebhookInput!) {
createTicketWebhook(trackerId: $trackerId, ticketId: $ticketId, config: $config) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
createTracker
@access(scope:TRACKERS, kind:RW)
Creates a new bug tracker. If specified, the 'import' field specifies a gzipped dump of a tracker to populate tickets from; see Tracker.export.
Returns Tracker!
Argumentsname
- String!description
- Stringvisibility
- Visibility!importUpload
- Upload
Example Query
query createTracker($name: String!, $description: String, $visibility: Visibility!, $importUpload: Upload) {
createTracker(name: $name, description: $description, visibility: $visibility, importUpload: $importUpload) {
id
created
updated
owner {
...Entity
}
name
description
visibility
ticket {
...Ticket
}
tickets {
...TicketCursor
}
label {
...Label
}
labels {
...LabelCursor
}
subscription {
...TrackerSubscription
}
acl {
...ACL
}
defaultACL {
...DefaultACL
}
acls {
...ACLCursor
}
export
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
createTrackerWebhook
Creates a new tracker webhook.
Returns WebhookSubscription!
ArgumentstrackerId
- Int!config
- TrackerWebhookInput!
Example Query
query createTrackerWebhook($trackerId: Int!, $config: TrackerWebhookInput!) {
createTrackerWebhook(trackerId: $trackerId, config: $config) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
createUserWebhook
Creates a new user webhook subscription. When an event from the provided list of events occurs, the 'query' parameter (a GraphQL query) will be evaluated and the results will be sent to the provided URL as the body of an HTTP POST request. The list of events must include at least one event, and no duplicates.
This query is evaluated in the webhook context, such that query { webhook } may be used to access details of the event which trigged the webhook. The query may not make any mutations.
Returns WebhookSubscription!
Argumentsconfig
- UserWebhookInput!
Example Query
query createUserWebhook($config: UserWebhookInput!) {
createUserWebhook(config: $config) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
deleteACL
@access(scope:ACLS, kind:RW)
Removes a tracker ACL. Following this change, the default tracker ACL will apply to this user.
Returns TrackerACL!
Argumentsid
- Int!
Example Query
query deleteACL($id: Int!) {
deleteACL(id: $id) {
id
created
tracker {
...Tracker
}
entity {
...Entity
}
browse
submit
comment
edit
triage
}
}
deleteLabel
@access(scope:TRACKERS, kind:RW)
Deletes a label, removing it from any tickets which currently have it applied.
Returns Label!
Argumentsid
- Int!
Example Query
query deleteLabel($id: Int!) {
deleteLabel(id: $id) {
id
created
name
tracker {
...Tracker
}
backgroundColor
foregroundColor
tickets {
...TicketCursor
}
}
}
deleteTicket
@access(scope:TICKETS, kind:RW)
Deletes a ticket.
Returns Ticket!
ArgumentsExample Query
query deleteTicket($trackerId: Int!, $ticketId: Int!) {
deleteTicket(trackerId: $trackerId, ticketId: $ticketId) {
id
created
updated
submitter {
...Entity
}
tracker {
...Tracker
}
ref
subject
body
status
resolution
authenticity
labels {
...Label
}
assignees {
...Entity
}
events {
...EventCursor
}
subscription {
...TicketSubscription
}
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
deleteTicketWebhook
Deletes a ticket webhook.
Returns WebhookSubscription!
Argumentsid
- Int!
Example Query
query deleteTicketWebhook($id: Int!) {
deleteTicketWebhook(id: $id) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
deleteTracker
@access(scope:TRACKERS, kind:RW)
Deletes a bug tracker
Returns Tracker!
Argumentsid
- Int!
Example Query
query deleteTracker($id: Int!) {
deleteTracker(id: $id) {
id
created
updated
owner {
...Entity
}
name
description
visibility
ticket {
...Ticket
}
tickets {
...TicketCursor
}
label {
...Label
}
labels {
...LabelCursor
}
subscription {
...TrackerSubscription
}
acl {
...ACL
}
defaultACL {
...DefaultACL
}
acls {
...ACLCursor
}
export
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
deleteTrackerWebhook
Deletes a tracker webhook.
Returns WebhookSubscription!
Argumentsid
- Int!
Example Query
query deleteTrackerWebhook($id: Int!) {
deleteTrackerWebhook(id: $id) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
deleteUser
Deletes the authenticated user's account. Internal use only.
Returns Int!
Example Query
query deleteUser {
deleteUser {
}
}
deleteUserWebhook
Deletes a user webhook. Any events already queued may still be delivered after this request completes. Clients authenticated with a personal access token may delete any webhook registered for their account, but authorized OAuth 2.0 clients may only delete their own webhooks. Manually deleting a webhook configured by a third-party client may cause unexpected behavior with the third-party integration.
Returns WebhookSubscription!
Argumentsid
- Int!
Example Query
query deleteUserWebhook($id: Int!) {
deleteUserWebhook(id: $id) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
importTrackerDump
@access(scope:TRACKERS, kind:RW)
Imports a gzipped JSON dump of tracker data
Returns Boolean!
ArgumentsExample Query
query importTrackerDump($trackerId: Int!, $dump: Upload!) {
importTrackerDump(trackerId: $trackerId, dump: $dump) {
}
}
labelTicket
@access(scope:TICKETS, kind:RW)
Adds a label to the list of labels for a ticket
Returns Event!
ArgumentsExample Query
query labelTicket($trackerId: Int!, $ticketId: Int!, $labelId: Int!) {
labelTicket(trackerId: $trackerId, ticketId: $ticketId, labelId: $labelId) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
submitComment
@access(scope:TICKETS, kind:RW)
Submits a comment for a ticket
Returns Event!
ArgumentstrackerId
- Int!ticketId
- Int!input
- SubmitCommentInput!
Example Query
query submitComment($trackerId: Int!, $ticketId: Int!, $input: SubmitCommentInput!) {
submitComment(trackerId: $trackerId, ticketId: $ticketId, input: $input) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
submitCommentEmail
Returns Event!
ArgumentstrackerId
- Int!ticketId
- Int!input
- SubmitCommentEmailInput!
Example Query
query submitCommentEmail($trackerId: Int!, $ticketId: Int!, $input: SubmitCommentEmailInput!) {
submitCommentEmail(trackerId: $trackerId, ticketId: $ticketId, input: $input) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
submitTicket
@access(scope:TICKETS, kind:RW)
Creates a new ticket.
Returns Ticket!
ArgumentstrackerId
- Int!input
- SubmitTicketInput!
Example Query
query submitTicket($trackerId: Int!, $input: SubmitTicketInput!) {
submitTicket(trackerId: $trackerId, input: $input) {
id
created
updated
submitter {
...Entity
}
tracker {
...Tracker
}
ref
subject
body
status
resolution
authenticity
labels {
...Label
}
assignees {
...Entity
}
events {
...EventCursor
}
subscription {
...TicketSubscription
}
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
submitTicketEmail
Returns Ticket!
ArgumentstrackerId
- Int!input
- SubmitTicketEmailInput!
Example Query
query submitTicketEmail($trackerId: Int!, $input: SubmitTicketEmailInput!) {
submitTicketEmail(trackerId: $trackerId, input: $input) {
id
created
updated
submitter {
...Entity
}
tracker {
...Tracker
}
ref
subject
body
status
resolution
authenticity
labels {
...Label
}
assignees {
...Entity
}
events {
...EventCursor
}
subscription {
...TicketSubscription
}
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
ticketSubscribe
@access(scope:SUBSCRIPTIONS, kind:RW)
Subscribes to all email notifications for a ticket
Returns TicketSubscription!
ArgumentsExample Query
query ticketSubscribe($trackerId: Int!, $ticketId: Int!) {
ticketSubscribe(trackerId: $trackerId, ticketId: $ticketId) {
id
created
ticket {
...Ticket
}
}
}
ticketUnsubscribe
@access(scope:SUBSCRIPTIONS, kind:RW)
Unsubscribes from email notifications for a ticket
Returns TicketSubscription!
ArgumentsExample Query
query ticketUnsubscribe($trackerId: Int!, $ticketId: Int!) {
ticketUnsubscribe(trackerId: $trackerId, ticketId: $ticketId) {
id
created
ticket {
...Ticket
}
}
}
trackerSubscribe
@access(scope:SUBSCRIPTIONS, kind:RW)
Subscribes to all email notifications for a tracker
Returns TrackerSubscription!
ArgumentstrackerId
- Int!
Example Query
query trackerSubscribe($trackerId: Int!) {
trackerSubscribe(trackerId: $trackerId) {
id
created
tracker {
...Tracker
}
}
}
trackerUnsubscribe
@access(scope:SUBSCRIPTIONS, kind:RW)
Unsubscribes from email notifications for a tracker. If "tickets" is true, also unsubscribe from all tickets on this tracker.
Returns TrackerSubscription!
ArgumentsExample Query
query trackerUnsubscribe($trackerId: Int!, $tickets: Boolean!) {
trackerUnsubscribe(trackerId: $trackerId, tickets: $tickets) {
id
created
tracker {
...Tracker
}
}
}
unassignUser
@access(scope:TICKETS, kind:RW)
Removes a user from the list of assigned users for a ticket
Returns Event!
ArgumentsExample Query
query unassignUser($trackerId: Int!, $ticketId: Int!, $userId: Int!) {
unassignUser(trackerId: $trackerId, ticketId: $ticketId, userId: $userId) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
unlabelTicket
@access(scope:TICKETS, kind:RW)
Removes a list from the list of labels for a ticket
Returns Event!
ArgumentsExample Query
query unlabelTicket($trackerId: Int!, $ticketId: Int!, $labelId: Int!) {
unlabelTicket(trackerId: $trackerId, ticketId: $ticketId, labelId: $labelId) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
updateLabel
@access(scope:TRACKERS, kind:RW)
Changes the name or colors for a label.
Returns Label!
Argumentsid
- Int!input
- UpdateLabelInput!
Example Query
query updateLabel($id: Int!, $input: UpdateLabelInput!) {
updateLabel(id: $id, input: $input) {
id
created
name
tracker {
...Tracker
}
backgroundColor
foregroundColor
tickets {
...TicketCursor
}
}
}
updateTicket
@access(scope:TICKETS, kind:RW)
Updates a ticket's subject or body
Returns Ticket!
ArgumentstrackerId
- Int!ticketId
- Int!input
- UpdateTicketInput!
Example Query
query updateTicket($trackerId: Int!, $ticketId: Int!, $input: UpdateTicketInput!) {
updateTicket(trackerId: $trackerId, ticketId: $ticketId, input: $input) {
id
created
updated
submitter {
...Entity
}
tracker {
...Tracker
}
ref
subject
body
status
resolution
authenticity
labels {
...Label
}
assignees {
...Entity
}
events {
...EventCursor
}
subscription {
...TicketSubscription
}
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
updateTicketStatus
@access(scope:TICKETS, kind:RW)
Updates the status or resolution of a ticket
Returns Event!
ArgumentstrackerId
- Int!ticketId
- Int!input
- UpdateStatusInput!
Example Query
query updateTicketStatus($trackerId: Int!, $ticketId: Int!, $input: UpdateStatusInput!) {
updateTicketStatus(trackerId: $trackerId, ticketId: $ticketId, input: $input) {
id
created
changes {
...EventDetail
}
ticket {
...Ticket
}
}
}
updateTracker
@access(scope:TRACKERS, kind:RW)
Updates an existing bug tracker
Returns Tracker!
Argumentsid
- Int!input
- TrackerInput!
Example Query
query updateTracker($id: Int!, $input: TrackerInput!) {
updateTracker(id: $id, input: $input) {
id
created
updated
owner {
...Entity
}
name
description
visibility
ticket {
...Ticket
}
tickets {
...TicketCursor
}
label {
...Label
}
labels {
...LabelCursor
}
subscription {
...TrackerSubscription
}
acl {
...ACL
}
defaultACL {
...DefaultACL
}
acls {
...ACLCursor
}
export
webhooks {
...WebhookSubscriptionCursor
}
webhook {
...WebhookSubscription
}
}
}
updateTrackerACL
@access(scope:ACLS, kind:RW)
Updates the default ACL for a bug tracker, which applies to users and senders for whom a more specific ACL does not exist.
Returns DefaultACL!
ArgumentsExample Query
query updateTrackerACL($trackerId: Int!, $input: ACLInput!) {
updateTrackerACL(trackerId: $trackerId, input: $input) {
browse
submit
comment
edit
triage
}
}
updateUserACL
@access(scope:ACLS, kind:RW)
Adds or updates the ACL for a specific user on a bug tracker
Returns TrackerACL!
ArgumentsExample Query
query updateUserACL($trackerId: Int!, $userId: Int!, $input: ACLInput!) {
updateUserACL(trackerId: $trackerId, userId: $userId, input: $input) {
id
created
tracker {
...Tracker
}
entity {
...Entity
}
browse
submit
comment
edit
triage
}
}
Definitions
ACL
FieldsACLCursor
A cursor for enumerating access control list entries
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [TrackerACL]!cursor
- Cursor
ACLInput
FieldsAccessKind
Enum ValuesRO
RW
AccessScope
Enum ValuesPROFILE
TRACKERS
TICKETS
ACLS
EVENTS
SUBSCRIPTIONS
ActivitySubscription
FieldsActivitySubscriptionCursor
A cursor for enumerating subscriptions
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [ActivitySubscription]!cursor
- Cursor
Assignment
FieldsAuthenticity
Enum ValuesAUTHENTIC
- The server vouches for this information as entered verbatim by the attributed entity.
UNAUTHENTICATED
- The server does not vouch for this information as entered by the attributed entity, no authentication was provided.
TAMPERED
- The server has evidence that the information has likely been manipulated by a third-party.
Boolean
The Boolean
scalar type represents true
or false
.
Comment
FieldsCreated
FieldsCursor
DefaultACL
These ACL policies are applied non-specifically, e.g. the default ACL for all authenticated users.
FieldsEmailAddress
FieldsEmailCmd
Enum ValuesRESOLVE
REOPEN
LABEL
UNLABEL
Entity
FieldscanonicalName
- String!
Event
Represents an event which affects a ticket. Multiple changes can occur in a single event, and are enumerated in the "changes" field.
Fieldsid
- Int!created
- Time!changes
- [EventDetail]!ticket
- Ticket!@access(scope:TICKETS, kind:RO)
EventCreated
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!newEvent
- Event!
EventCursor
A cursor for enumerating events
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsEventDetail
FieldsEventType
Enum ValuesCREATED
COMMENT
STATUS_CHANGE
LABEL_ADDED
LABEL_REMOVED
ASSIGNED_USER
UNASSIGNED_USER
USER_MENTIONED
TICKET_MENTIONED
ExternalUser
FieldsFloat
The Float
scalar type represents signed double-precision fractional values as specified by IEEE 754.
ID
The ID
scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.
ImportInput
This is used for importing tickets from third-party services, and may only be used by the tracker owner. It causes a ticket submission, update, or comment to be attributed to an external user and appear as if it were submitted at a specific time.
FieldsInt
The Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
Label
FieldsLabelCursor
A cursor for enumerating labels
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsLabelEvent
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!label
- Label!
LabelUpdate
FieldsOAuthClient
Fieldsuuid
- String!
StatusChange
FieldseventType
- EventType!ticket
- Ticket!@access(scope:TICKETS, kind:RO)
editor
- Entity!@access(scope:PROFILE, kind:RO)
oldStatus
- TicketStatus!newStatus
- TicketStatus!oldResolution
- TicketResolution!newResolution
- TicketResolution!
String
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
SubmitCommentEmailInput
FieldsSubmitCommentInput
You may omit the status or resolution fields to leave them unchanged (or if you do not have permission to change them). "resolution" is required if status is RESOLVED.
Fieldstext
- String!status
- TicketStatusresolution
- TicketResolutionimport
- ImportInput- For use by the tracker owner only
SubmitTicketEmailInput
FieldsSubmitTicketInput
FieldsTicket
Fieldsid
- Int!- The ticket ID is unique within each tracker, but is not globally unique. The first ticket opened on a given tracker will have ID 1, then 2, and so on.
created
- Time!updated
- Time!submitter
- Entity!@access(scope:PROFILE, kind:RO)
tracker
- Tracker!@access(scope:TRACKERS, kind:RO)
ref
- String!- Canonical ticket reference string; may be used in comments to identify the ticket from anywhere.
subject
- String!body
- Stringstatus
- TicketStatus!resolution
- TicketResolution!authenticity
- Authenticity!labels
- [Label]!assignees
- [Entity]!@access(scope:PROFILE, kind:RO)
events
- EventCursor!@access(scope:EVENTS, kind:RO)
subscription
- TicketSubscription@access(scope:SUBSCRIPTIONS, kind:RO)
- If the authenticated user is subscribed to this ticket, this is that subscription.
webhooks
- WebhookSubscriptionCursor!- Returns a list of ticket webhook subscriptions. For clients authenticated with a personal access token, this returns all webhooks configured by all GraphQL clients for your account. For clients authenticated with an OAuth 2.0 access token, this returns only webhooks registered for your client.
webhook
- WebhookSubscription- Returns details of a ticket webhook subscription by its ID.
TicketCursor
A cursor for enumerating tickets
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsTicketDeletedEvent
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!trackerId
- Int!ticketId
- Int!
TicketEvent
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!ticket
- Ticket!
TicketMention
FieldsTicketResolution
Enum ValuesUNRESOLVED
CLOSED
FIXED
IMPLEMENTED
WONT_FIX
BY_DESIGN
INVALID
DUPLICATE
NOT_OUR_BUG
TicketStatus
Enum ValuesREPORTED
CONFIRMED
IN_PROGRESS
PENDING
RESOLVED
TicketSubscription
A ticket subscription will notify a participant when activity occurs on a ticket.
FieldsTicketWebhookInput
Fieldsurl
- String!events
- [WebhookEvent]!query
- String!
TicketWebhookSubscription
Fieldsid
- Int!events
- [WebhookEvent]!query
- String!url
- String!client
- OAuthClientdeliveries
- WebhookDeliveryCursor!sample
- String!ticket
- Ticket!
Time
Tracker
Fieldsid
- Int!created
- Time!updated
- Time!owner
- Entity!@access(scope:PROFILE, kind:RO)
name
- String!description
- Stringvisibility
- Visibility!ticket
- Ticket!@access(scope:TICKETS, kind:RO)
tickets
- TicketCursor!@access(scope:TICKETS, kind:RO)
label
- Labellabels
- LabelCursor!subscription
- TrackerSubscription@access(scope:SUBSCRIPTIONS, kind:RO)
- If the authenticated user is subscribed to this tracker, this is that subscription.
acl
- ACL- The access control list entry (or the default ACL) which describes the authenticated user's permissions with respect to this tracker.
defaultACL
- DefaultACL!acls
- ACLCursor!@access(scope:ACLS, kind:RO)
export
- URL!- Returns a URL from which the tracker owner may download a gzipped JSON archive of the tracker.
webhooks
- WebhookSubscriptionCursor!- Returns a list of tracker webhook subscriptions. For clients authenticated with a personal access token, this returns all webhooks configured by all GraphQL clients for your account. For clients authenticated with an OAuth 2.0 access token, this returns only webhooks registered for your client.
webhook
- WebhookSubscription- Returns details of a tracker webhook subscription by its ID.
TrackerACL
These ACLs are configured for specific entities, and may be used to expand or constrain the rights of a participant.
FieldsTrackerCursor
A cursor for enumerating trackers
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsTrackerEvent
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!tracker
- Tracker!
TrackerInput
You may omit any fields to leave them unchanged.
Fieldsname
- Stringdescription
- Stringvisibility
- Visibility
TrackerSubscription
A tracker subscription will notify a participant of all activity for a tracker, including all new tickets and their events.
FieldsTrackerWebhookInput
Fieldsurl
- String!events
- [WebhookEvent]!query
- String!
TrackerWebhookSubscription
Fieldsid
- Int!events
- [WebhookEvent]!query
- String!url
- String!client
- OAuthClientdeliveries
- WebhookDeliveryCursor!sample
- String!tracker
- Tracker!
URL
UpdateLabelInput
You may omit any fields to leave them unchanged.
FieldsUpdateStatusInput
"resolution" is required if status is RESOLVED.
Fieldsstatus
- TicketStatus!resolution
- TicketResolutionimport
- ImportInput- For use by the tracker owner only
UpdateTicketInput
You may omit any fields to leave them unchanged. To remove the ticket body, set it to null.
Fieldssubject
- Stringbody
- Stringimport
- ImportInput- For use by the tracker owner only
Upload
User
FieldsUserMention
FieldsUserWebhookInput
Fieldsurl
- String!events
- [WebhookEvent]!query
- String!
UserWebhookSubscription
Fieldsid
- Int!events
- [WebhookEvent]!query
- String!url
- String!client
- OAuthClientdeliveries
- WebhookDeliveryCursor!sample
- String!
Version
FieldsVisibility
Enum ValuesPUBLIC
UNLISTED
PRIVATE
WebhookDelivery
Fieldsuuid
- String!date
- Time!event
- WebhookEvent!subscription
- WebhookSubscription!requestBody
- String!responseBody
- String- These details are provided only after a response is received from the remote server. If a response is sent whose Content-Type is not text/*, or cannot be decoded as UTF-8, the response body will be null. It will be truncated after 64 KiB.
responseHeaders
- StringresponseStatus
- Int
WebhookDeliveryCursor
A cursor for enumerating a list of webhook deliveries
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [WebhookDelivery]!cursor
- Cursor
WebhookEvent
Enum ValuesTRACKER_CREATED
TRACKER_UPDATE
TRACKER_DELETED
TICKET_CREATED
TICKET_UPDATE
TICKET_DELETED
LABEL_CREATED
LABEL_UPDATE
LABEL_DELETED
EVENT_CREATED
WebhookPayload
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!
WebhookSubscription
Fieldsid
- Int!events
- [WebhookEvent]!query
- String!url
- String!client
- OAuthClient- If this webhook was registered by an authorized OAuth 2.0 client, this field is non-null.
deliveries
- WebhookDeliveryCursor!- All deliveries which have been sent to this webhook.
sample
- String!- Returns a sample payload for this subscription, for testing purposes
WebhookSubscriptionCursor
A cursor for enumerating a list of webhook subscriptions
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [WebhookSubscription]!cursor
- Cursor
Directives
@access
Decorates fields for which access requires a particular OAuth 2.0 scope with read or write access.
Argumentsscope
- AccessScope!kind
- AccessKind!
@defer
Directs the executor to defer this fragment when the if
argument is true or undefined.
@deprecated
Marks an element of a GraphQL schema as no longer supported.
Argumentsreason
- String- Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).
@include
Directs the executor to include this field or fragment only when the if
argument is true.
if
- Boolean!- Included when true.
@internal
This is used to decorate fields which are for internal use, and are not available to normal API users.
@oneOf
Indicates exactly one field must be supplied and this field must not be null
.
@private
This is used to decorate fields which are only accessible with a personal access token, and are not available to clients using OAuth 2.0 access tokens.
@scopehelp
Used to provide a human-friendly description of an access scope
Argumentsdetails
- String!
@skip
Directs the executor to skip this field or fragment when the if
argument is true.
if
- Boolean!- Skipped when true.
@specifiedBy
Exposes a URL that specifies the behavior of this scalar.
Argumentsurl
- String!- The URL that specifies the behavior of this scalar.