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.
interface Trackable implements AffectedByIssue, BaseNode, Named, NamedNode, Node {
  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!
  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!
}
Fields
Trackable.affectingIssues ● IssueConnection! non-null object
The issues which affect this entity
Trackable.affectingIssues.after●StringscalarGet 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●StringscalarGet 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.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●AllPermissionEntryenumThe 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●StringscalarGet 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●StringscalarGet 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●StringscalarGet 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●StringscalarGet 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
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.
NamedNode interface
Node with a name and description
Node interface
Base class of all nodes
Returned by
searchTrackables  query
Member of
AddedToPinnedIssuesEvent  object ● AddedToTrackableEvent  object ● Artefact  object ● IMSProject  object ● RemovedFromPinnedIssuesEvent  object ● RemovedFromTrackableEvent  object ● TrackableConnection  object ● TrackableEdge  object