Skip to content

IssueType ​

Type of an Issue like BUG or FEATURE_REQUEST. Part of an IssueTemplate. READ is always granted.

graphql
type IssueType implements BaseNode, Named, NamedNode, Node {
  description: String!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  iconPath: String!
  id: ID!
  issuesWithType(
    after: String
    before: String
    filter: IssueFilterInput
    first: Int
    last: Int
    orderBy: [IssueOrder!]
    skip: Int
  ): IssueConnection!
  name: String!
  partOf(
    after: String
    before: String
    filter: IssueTemplateFilterInput
    first: Int
    last: Int
    orderBy: [IssueTemplateOrder!]
    skip: Int
  ): IssueTemplateConnection!
}

Fields ​

IssueType.description ● String! non-null scalar ​

The description of this entity.

IssueType.hasPermission ● Boolean! non-null scalar ​

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

IssueType.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

IssueType.iconPath ● String! non-null scalar ​

A path that is used as the icon for issues. Used with a 0 0 24 24 viewBox. No stroke, only fill.

IssueType.id ● ID! non-null scalar ​

The unique id of this node

IssueType.issuesWithType ● IssueConnection! non-null object ​

Issues with this type.

IssueType.issuesWithType.after ● String scalar ​

Get only items after the cursor

IssueType.issuesWithType.before ● String scalar ​

Get only items before the cursor

IssueType.issuesWithType.filter ● IssueFilterInput input ​

Filter for specific items in the connection

IssueType.issuesWithType.first ● Int scalar ​

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

IssueType.issuesWithType.last ● Int scalar ​

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

IssueType.issuesWithType.orderBy ● [IssueOrder!] list input ​

Order in which the items are sorted

IssueType.issuesWithType.skip ● Int scalar ​

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

IssueType.name ● String! non-null scalar ​

The name of this entity.

IssueType.partOf ● IssueTemplateConnection! non-null object ​

IssueTemplates this is a part of.

IssueType.partOf.after ● String scalar ​

Get only items after the cursor

IssueType.partOf.before ● String scalar ​

Get only items before the cursor

IssueType.partOf.filter ● IssueTemplateFilterInput input ​

Filter for specific items in the connection

IssueType.partOf.first ● Int scalar ​

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

IssueType.partOf.last ● Int scalar ​

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

IssueType.partOf.orderBy ● [IssueTemplateOrder!] list input ​

Order in which the items are sorted

IssueType.partOf.skip ● Int scalar ​

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

Interfaces ​

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 ​

searchIssueTypes query

Member Of ​

AggregatedIssue object ● Issue object ● IssueTypeConnection object ● IssueTypeEdge object ● TypeChangedEvent object ● UpdateIssueTypePayload object

Released under the MIT License.