@DomainNode
@Authorization(name = "READ", allowFromRelated = ["relationPartner"])
class AggregatedIssue(var count: Int, val isOpen: Boolean) : BaseNode

An aggregated Issue on a RelationPartner. READ is granted if READ is granted on `relationPartner`. An Issue is aggregated on a ComponentVersion if - it affects the ComponentVersion - it affects the associated Component - it is on the Component, and does not affect anything An Issue is aggregated on a Interface if - it affects the associated InterfaceSpecificationVersion - it affects the associated InterfaceSpecification - it affects any InterfacePart of the associated InterfaceSpecificationVersion

Constructors

Link copied to clipboard
constructor(count: Int, isOpen: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
@FilterProperty
@OrderProperty
var count: Int

The amount of Issues of this type on this location.

Link copied to clipboard
internal var fieldCache: MutableMap<String, Any?>
Link copied to clipboard
val graphQLId: ID

The unique id of this node

Link copied to clipboard
@Id
@GeneratedValue(generatorRef = "nodeIdGenerator")
internal var id: String?
Link copied to clipboard
@NodeRelationship(type = "INCOMING_RELATION", direction = Direction.OUTGOING)
@FilterProperty
val incomingRelations: LazyLoadingDelegate<AggregatedIssueRelation, NodeSetPropertyDelegate.NodeSetProperty>

IssueRelations from this aggregated issue to other aggregated issues.

Link copied to clipboard
@FilterProperty
val isOpen: Boolean

If aggregated issues are open or closed.

Link copied to clipboard
Link copied to clipboard
internal var isSaved: Boolean
Link copied to clipboard
@NodeRelationship(type = "ISSUE", direction = Direction.OUTGOING)
@FilterProperty
val issues: LazyLoadingDelegate<Issue, NodeSetPropertyDelegate.NodeSetProperty>

The Issues aggregated by this AggregatedIssue.

Link copied to clipboard
@ConvertWith(converter = LazyLoadingContextConverter::class)
internal var lazyLoadingContext: LazyLoadingContext?
Link copied to clipboard
@Version
private var nodeVersion: Long

Version used for optimistic locking

Link copied to clipboard
internal var orderFields: MutableMap<String, Any?>?
Link copied to clipboard
@NodeRelationship(type = "OUTGOING_RELATION", direction = Direction.OUTGOING)
@FilterProperty
val outgoingRelations: LazyLoadingDelegate<AggregatedIssueRelation, NodeSetPropertyDelegate.NodeSetProperty>

IssueRelations from other aggregated issues to this aggregated issue.

Link copied to clipboard
internal val propertyLookup: MutableMap<String, PropertyDelegate<*>>
Link copied to clipboard
Link copied to clipboard
@NodeRelationship(type = "AGGREGATED_ISSUE", direction = Direction.INCOMING)
@FilterProperty
val relationPartner: LazyLoadingDelegate<RelationPartner, NodePropertyDelegate.NodeProperty>

The RelationPartner this AggregatedIssue is on.

Link copied to clipboard
@NodeRelationship(type = "TYPE", direction = Direction.OUTGOING)
@FilterProperty
val type: LazyLoadingDelegate<IssueType, NodePropertyDelegate.NodeProperty>

The IssueType of this AggregatedIssue.

Functions

Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
internal suspend fun getFromGraphQL(@Autowired nodeQueryParser: NodeQueryParser, dataFetchingEnvironment: DataFetchingEnvironment): Any?
Link copied to clipboard
internal fun <T : PropertyDelegate<*>> getProperty(property: KProperty1<*, *>): T
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
internal suspend fun <T : Node?> loadNodesOfRelationship(property: KProperty1<*, *>, loader: LazyLoadingSubqueryGenerator<T>.() -> Unit?)
Link copied to clipboard
protected fun <T : Node?> NodeProperty(): PropertyDelegateProvider<Node, NodePropertyDelegate<T>>
Link copied to clipboard
protected fun <T : Node> NodeSetProperty(): PropertyDelegateProvider<Node, NodeSetPropertyDelegate<T>>
Link copied to clipboard
internal fun registerQueryResult(entry: NodeQueryEntry<*>, queryResult: Any?)
Link copied to clipboard
open override fun toString(): String