Skip to content

Trackable

An entity which can have Issues, Labels and Artefacts. Has pinned issues. Can be synced to an IMS by creating an IMSProject. Can be affected by Issues.

graphql
interface Trackable implements AffectedByIssue, BaseNode, Named, NamedAffectedByIssue, Node {
  affectedEntities(
    after: String
    before: String
    filter: AffectedByIssueFilterInput
    first: Int
    last: Int
    orderBy: [AffectedByIssueOrder!]
    skip: Int
  ): AffectedByIssueConnection!
  affectingIssues(
    after: String
    before: String
    filter: IssueFilterInput
    first: Int
    last: Int
    orderBy: [IssueOrder!]
    skip: Int
  ): IssueConnection!
  artefacts(
    after: String
    before: String
    filter: ArtefactFilterInput
    first: Int
    last: Int
    orderBy: [ArtefactOrder!]
    skip: Int
  ): ArtefactConnection!
  assignedUsers(
    after: String
    before: String
    filter: UserFilterInput
    first: Int
    last: Int
    orderBy: [UserOrder!]
    skip: Int
  ): UserConnection!
  description: String!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issues(
    after: String
    before: String
    filter: IssueFilterInput
    first: Int
    last: Int
    orderBy: [IssueOrder!]
    skip: Int
  ): IssueConnection!
  labels(
    after: String
    before: String
    filter: LabelFilterInput
    first: Int
    last: Int
    orderBy: [LabelOrder!]
    skip: Int
  ): LabelConnection!
  name: String!
  pinnedIssues(
    after: String
    before: String
    filter: IssueFilterInput
    first: Int
    last: Int
    orderBy: [IssueOrder!]
    skip: Int
  ): IssueConnection!
  repositoryURL: URL
  syncsTo(
    after: String
    before: String
    filter: IMSProjectFilterInput
    first: Int
    last: Int
    orderBy: [IMSProjectOrder!]
    skip: Int
  ): IMSProjectConnection!
  usedIssuePriorities(
    after: String
    before: String
    filter: IssuePriorityFilterInput
    first: Int
    last: Int
    orderBy: [IssuePriorityOrder!]
    skip: Int
  ): IssuePriorityConnection!
  usedIssueStates(
    after: String
    before: String
    filter: IssueStateFilterInput
    first: Int
    last: Int
    orderBy: [IssueStateOrder!]
    skip: Int
  ): IssueStateConnection!
  usedIssueTemplates(
    after: String
    before: String
    filter: IssueTemplateFilterInput
    first: Int
    last: Int
    orderBy: [IssueTemplateOrder!]
    skip: Int
  ): IssueTemplateConnection!
  usedIssueTypes(
    after: String
    before: String
    filter: IssueTypeFilterInput
    first: Int
    last: Int
    orderBy: [IssueTypeOrder!]
    skip: Int
  ): IssueTypeConnection!
  usedLabels(
    after: String
    before: String
    filter: LabelFilterInput
    first: Int
    last: Int
    orderBy: [LabelOrder!]
    skip: Int
  ): LabelConnection!
}

Fields

Trackable.affectedEntities ● AffectedByIssueConnection! non-null object

The set of entities affected by any Issue

Trackable.affectedEntities.after ● String scalar

Get only items after the cursor

Trackable.affectedEntities.before ● String scalar

Get only items before the cursor

Trackable.affectedEntities.filter ● AffectedByIssueFilterInput input

Filter for specific items in the connection

Trackable.affectedEntities.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.affectedEntities.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.affectedEntities.orderBy ● [AffectedByIssueOrder!] list input

Order in which the items are sorted

Trackable.affectedEntities.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.affectingIssues ● IssueConnection! non-null object

The issues which affect this entity

Trackable.affectingIssues.after ● String scalar

Get only items after the cursor

Trackable.affectingIssues.before ● String scalar

Get only items before the cursor

Trackable.affectingIssues.filter ● IssueFilterInput input

Filter for specific items in the connection

Trackable.affectingIssues.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.affectingIssues.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.affectingIssues.orderBy ● [IssueOrder!] list input

Order in which the items are sorted

Trackable.affectingIssues.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.artefacts ● ArtefactConnection! non-null object

Artefacts of this trackable, typically some kind of file.

Trackable.artefacts.after ● String scalar

Get only items after the cursor

Trackable.artefacts.before ● String scalar

Get only items before the cursor

Trackable.artefacts.filter ● ArtefactFilterInput input

Filter for specific items in the connection

Trackable.artefacts.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.artefacts.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.artefacts.orderBy ● [ArtefactOrder!] list input

Order in which the items are sorted

Trackable.artefacts.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.assignedUsers ● UserConnection! non-null object

The set of Users assigned to any issue

Trackable.assignedUsers.after ● String scalar

Get only items after the cursor

Trackable.assignedUsers.before ● String scalar

Get only items before the cursor

Trackable.assignedUsers.filter ● UserFilterInput input

Filter for specific items in the connection

Trackable.assignedUsers.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.assignedUsers.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.assignedUsers.orderBy ● [UserOrder!] list input

Order in which the items are sorted

Trackable.assignedUsers.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.description ● String! non-null scalar

The description of this entity.

Trackable.hasPermission ● Boolean! non-null scalar

Checks if the current user has a specific permission on this Node

Trackable.hasPermission.permission ● AllPermissionEntry enum

The permission to check for

Trackable.id ● ID! non-null scalar

The unique id of this node

Trackable.issues ● IssueConnection! non-null object

The set of Issues which are part of this Trackable. An Issue has to be part of a Trackable to use the Labels and Artefacts defined by the Trackable.

Trackable.issues.after ● String scalar

Get only items after the cursor

Trackable.issues.before ● String scalar

Get only items before the cursor

Trackable.issues.filter ● IssueFilterInput input

Filter for specific items in the connection

Trackable.issues.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.issues.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.issues.orderBy ● [IssueOrder!] list input

Order in which the items are sorted

Trackable.issues.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.labels ● LabelConnection! non-null object

The set of Labels which can be added to issues of this trackable.

Trackable.labels.after ● String scalar

Get only items after the cursor

Trackable.labels.before ● String scalar

Get only items before the cursor

Trackable.labels.filter ● LabelFilterInput input

Filter for specific items in the connection

Trackable.labels.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.labels.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.labels.orderBy ● [LabelOrder!] list input

Order in which the items are sorted

Trackable.labels.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.name ● String! non-null scalar

The name of this entity.

Trackable.pinnedIssues ● IssueConnection! non-null object

Issues which are pinned to this trackable, subset of issues.

Trackable.pinnedIssues.after ● String scalar

Get only items after the cursor

Trackable.pinnedIssues.before ● String scalar

Get only items before the cursor

Trackable.pinnedIssues.filter ● IssueFilterInput input

Filter for specific items in the connection

Trackable.pinnedIssues.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.pinnedIssues.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.pinnedIssues.orderBy ● [IssueOrder!] list input

Order in which the items are sorted

Trackable.pinnedIssues.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.repositoryURL ● URL scalar

If existing, the URL of the repository (e.g. a GitHub repository).

Trackable.syncsTo ● IMSProjectConnection! non-null object

IMSProjects this Trackable is synced to and from.

Trackable.syncsTo.after ● String scalar

Get only items after the cursor

Trackable.syncsTo.before ● String scalar

Get only items before the cursor

Trackable.syncsTo.filter ● IMSProjectFilterInput input

Filter for specific items in the connection

Trackable.syncsTo.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.syncsTo.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.syncsTo.orderBy ● [IMSProjectOrder!] list input

Order in which the items are sorted

Trackable.syncsTo.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.usedIssuePriorities ● IssuePriorityConnection! non-null object

The set of IssuePriorities used by any issue

Trackable.usedIssuePriorities.after ● String scalar

Get only items after the cursor

Trackable.usedIssuePriorities.before ● String scalar

Get only items before the cursor

Trackable.usedIssuePriorities.filter ● IssuePriorityFilterInput input

Filter for specific items in the connection

Trackable.usedIssuePriorities.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.usedIssuePriorities.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.usedIssuePriorities.orderBy ● [IssuePriorityOrder!] list input

Order in which the items are sorted

Trackable.usedIssuePriorities.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.usedIssueStates ● IssueStateConnection! non-null object

The set of IssueStates used by any issue

Trackable.usedIssueStates.after ● String scalar

Get only items after the cursor

Trackable.usedIssueStates.before ● String scalar

Get only items before the cursor

Trackable.usedIssueStates.filter ● IssueStateFilterInput input

Filter for specific items in the connection

Trackable.usedIssueStates.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.usedIssueStates.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.usedIssueStates.orderBy ● [IssueStateOrder!] list input

Order in which the items are sorted

Trackable.usedIssueStates.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.usedIssueTemplates ● IssueTemplateConnection! non-null object

The set of IssueTemplates used by any issue

Trackable.usedIssueTemplates.after ● String scalar

Get only items after the cursor

Trackable.usedIssueTemplates.before ● String scalar

Get only items before the cursor

Trackable.usedIssueTemplates.filter ● IssueTemplateFilterInput input

Filter for specific items in the connection

Trackable.usedIssueTemplates.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.usedIssueTemplates.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.usedIssueTemplates.orderBy ● [IssueTemplateOrder!] list input

Order in which the items are sorted

Trackable.usedIssueTemplates.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.usedIssueTypes ● IssueTypeConnection! non-null object

The set of IssueTypes used by any issue

Trackable.usedIssueTypes.after ● String scalar

Get only items after the cursor

Trackable.usedIssueTypes.before ● String scalar

Get only items before the cursor

Trackable.usedIssueTypes.filter ● IssueTypeFilterInput input

Filter for specific items in the connection

Trackable.usedIssueTypes.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.usedIssueTypes.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.usedIssueTypes.orderBy ● [IssueTypeOrder!] list input

Order in which the items are sorted

Trackable.usedIssueTypes.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Trackable.usedLabels ● LabelConnection! non-null object

The set of Labels used by any issue (including Labels not on this Trackable)

Trackable.usedLabels.after ● String scalar

Get only items after the cursor

Trackable.usedLabels.before ● String scalar

Get only items before the cursor

Trackable.usedLabels.filter ● LabelFilterInput input

Filter for specific items in the connection

Trackable.usedLabels.first ● Int scalar

Get the first n items. Must not be used if before is specified

Trackable.usedLabels.last ● Int scalar

Get the last n items. Must not be used if after is specified

Trackable.usedLabels.orderBy ● [LabelOrder!] list input

Order in which the items are sorted

Trackable.usedLabels.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Interfaces

AffectedByIssue interface

Entities that can be affected by an Issue, meaning that this entity is in some regard impacted by e.g. a bug described by an issue, or the non-present of a feature described by an issue.

BaseNode interface

Shared extensions to the node type.

Named interface

Entity with a name and a description.

NamedAffectedByIssue interface

Affected by issue with a name and description

Node interface

Base class of all nodes

Returned By

searchTrackables query

Member Of

AddedToPinnedIssuesEvent object ● AddedToTrackableEvent object ● AddLabelToTrackablePayload object ● Artefact object ● IMSProject object ● RemovedFromPinnedIssuesEvent object ● RemovedFromTrackableEvent object ● RemoveLabelFromTrackablePayload object ● TrackableConnection object ● TrackableEdge object

Implemented By

Component object ● Project object

Released under the MIT License.