$k. HasRelationCondition

A condition that selects elements that have relations of a specific type.

Extends

Methods

addHandle(parameter) → {Condition}

Add a handle

Parameters:
NameTypeDescription
parameterstring
Version
  • Experimental feature, might be removed at any time
Since
  • 5.3.0
Throws:

If the query condition is not modifiable

Type
$k.exception.QueryError
Returns:
Type: 
Condition

alternativesId() → {number}

Since
  • 4.1.0
Deprecated
  • This function is not supported any more
Returns:
Type: 
number

cardinality() → {number}

Returns the desired cardinality of the property

Since
  • 4.1.0
Returns:
Type: 
number

linkedQuery() → {$k.StructuredQuery}

Returns the linked subquery

Since
  • 4.1.0
Returns:
Type: 
$k.StructuredQuery

parameter() → {string|undefined}

Returns the parameter name of the condition, if defined

Since
  • 4.1.0
Returns:
Type: 
string | undefined

query() → {$k.StructuredQuery|undefined}

Version
  • Experimental feature, might be removed at any time
Since
  • 5.4.2
Returns:

The source query

Type: 
$k.StructuredQuery | undefined

setCardinality(cardinality)

Sets the desired cardinality of the property. Only applied if a cardinality operator is used.

Parameters:
NameTypeDescription
cardinalitynumber

Cardinality. Must be an integer >= 0.

Since
  • 4.1.0
Throws:

If the query condition is not modifiable

Type
$k.exception.QueryError

setParameter(parameter)

Sets the parameter name of the condition

Parameters:
NameTypeDescription
parameterstring
Since
  • 4.1.0
Throws:

If the condition cannot be modified

Type
$k.exception.QueryError

setTransitivity(minopt, maxopt, booleanopt)

Set the transitivity of the relation. This defines how many relations are traversed.

Parameters:
NameTypeAttributesDefaultDescription
minnumber<optional>
1

Minimal number of relations to traverse. Must be an integer >= 1.

maxnumber<optional>
Infinity

Maximum number of relations to traverse. If undefined or Infinity, any number of relations are traversed. Must be Infinity or an integer >= 1 and >= min

booleanboolean<optional>
true

True if only the shortest path between two elements should be traversed

Since
  • 4.1.0
Throws:

If the transitivity values are not valid

Type
$k.exception.QueryError

targetQuery() → {$k.StructuredQuery|undefined}

Returns the subquery for the relation target, or undefined if there is none

Since
  • 4.1.0
Returns:
Type: 
$k.StructuredQuery | undefined