Skip to content

IntraComponentDependencySpecificationType ​

Type of an IntraComponentDependencySpecification like CALLS. Part of a ComponentTemplate. READ is always granted.

graphql
type IntraComponentDependencySpecificationType implements BaseNode, Named, NamedNode, Node {
  description: String!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  intraComponentDependencySpecificationsWithType(
    after: String
    before: String
    filter: IssueFilterInput
    first: Int
    last: Int
    orderBy: [IssueOrder!]
    skip: Int
  ): IssueConnection!
  name: String!
  partOf(
    after: String
    before: String
    filter: ComponentTemplateFilterInput
    first: Int
    last: Int
    orderBy: [ComponentTemplateOrder!]
    skip: Int
  ): ComponentTemplateConnection!
}

Fields ​

IntraComponentDependencySpecificationType.description ● String! non-null scalar ​

The description of this entity.

IntraComponentDependencySpecificationType.hasPermission ● Boolean! non-null scalar ​

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

IntraComponentDependencySpecificationType.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

IntraComponentDependencySpecificationType.id ● ID! non-null scalar ​

The unique id of this node

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType ● IssueConnection! non-null object ​

IntraComponentDependencySpecifications with this type.

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.after ● String scalar ​

Get only items after the cursor

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.before ● String scalar ​

Get only items before the cursor

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.filter ● IssueFilterInput input ​

Filter for specific items in the connection

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.first ● Int scalar ​

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

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.last ● Int scalar ​

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

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.orderBy ● [IssueOrder!] list input ​

Order in which the items are sorted

IntraComponentDependencySpecificationType.intraComponentDependencySpecificationsWithType.skip ● Int scalar ​

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

IntraComponentDependencySpecificationType.name ● String! non-null scalar ​

The name of this entity.

IntraComponentDependencySpecificationType.partOf ● ComponentTemplateConnection! non-null object ​

ComponentTemplates this is a part of.

IntraComponentDependencySpecificationType.partOf.after ● String scalar ​

Get only items after the cursor

IntraComponentDependencySpecificationType.partOf.before ● String scalar ​

Get only items before the cursor

IntraComponentDependencySpecificationType.partOf.filter ● ComponentTemplateFilterInput input ​

Filter for specific items in the connection

IntraComponentDependencySpecificationType.partOf.first ● Int scalar ​

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

IntraComponentDependencySpecificationType.partOf.last ● Int scalar ​

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

IntraComponentDependencySpecificationType.partOf.orderBy ● [ComponentTemplateOrder!] list input ​

Order in which the items are sorted

IntraComponentDependencySpecificationType.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 ​

searchIntraComponentDependencySpecificationTypes query

Member Of ​

IntraComponentDependencySpecification object ● IntraComponentDependencySpecificationTypeConnection object ● IntraComponentDependencySpecificationTypeEdge object ● UpdateIntraComponentDependencySpecificationTypePayload object

Released under the MIT License.