$k. StructuredQuery

Represents a structured query

Constructor

new $k.StructuredQuery(domainopt)

Constructs structured query

Parameters:
NameTypeAttributesDescription
domain$k.Domain | string<optional>

The domain or internal name of a type

Since
  • 4.1.0

Extends

Methods

addAlternativeGroup() → {$k.AlternativeGroupCondition}

Add an empty alternative condition group (OR group)

Since
  • 4.2.0

addAttribute(type) → {$k.HasAttributeCondition}

Add an empty attribute condition without value/cardinality conditions

Parameters:
NameTypeDescription
type$k.AttributeType | string

AttributeType or internal name

Since
  • 4.1.0
Throws:

addAttributeValue(type, parameteropt, operatoropt, defaultValueopt) → {$k.AttributeValueCondition}

Add an attribute value condition

Parameters:
NameTypeAttributesDefaultDescription
type$k.AttributeType | string

AttributeType or internal name

parameterstring<optional>

Parameter name of the value

operatorstring<optional>
$k.Operator.EQUAL

Name of operator

defaultValue<optional>

Default value if no parameter is specified

Since
  • 4.1.0
Throws:

addCardinality(type, cardinality, operatoropt) → {$k.HasAttributeCondition|$k.HasRelationCondition}

Add a cardinality condition

Parameters:
NameTypeAttributesDefaultDescription
type$k.PropertyType | string

PropertyType or internal name

cardinalitynumber

Cardinality. Must be an integer >= 0.

operatorstring<optional>
$k.Operator.EQUAL_CARDINALITY

Name of cardinality operator. One of

  • "==" or $k.Operator.EQUAL_CARDINALITY (cardinality must be equal to the value)
  • ">=" or $k.Operator.MIN_CARDINALITY (cardinality must be equal or greater than value)
  • "<=" or $k.Operator.MAX_CARDINALITY (cardinality must be equal or less than value)

Since
  • 4.1.0
Throws:

addElementsFilter(parameter) → {$k.ElementsCondition}

Add an element condition. Only elements from the list / parameter are returned.

Parameters:
NameTypeDescription
parameter$k.SemanticElement | Array.<$k.SemanticElement> | string

Element or array of elements or the name of a parameter to use its value

Since
  • 4.1.0
Throws:
Returns:
Type: 
$k.ElementsCondition

addHandle(parameter) → {$k.QueryCondition}

Add a handle

Parameters:
NameTypeDescription
parameterstring

Name of the query handle

Version
  • Experimental feature, might be removed at any time
Since
  • 4.1.0
Returns:
Type: 
$k.QueryCondition

addQueryReference(queryopt, operatoropt) → {$k.QueryReference}

References another query that selects elements of this query according to the operator. If $k.Operator.EQUAL or NOT_EQUAL are selected, then the reference works in both directions. If $k.Operator.FILTER is selected, then the subquery is only applied to this query.

Parameters:
NameTypeAttributesDefaultDescription
query$k.StructuredQuery<optional>

Referenced query. A new empty query will be referenced if not defined

operatorstring<optional>
$k.Operator.FILTER

An operator that defines how the subquery is applied. One of $k.Operator.EQUAL, $k.Operator.NOT_EQUAL, $k.Operator.FILTER.

Since
  • 4.1.0
Throws:

If the condition is not valid

Type
$k.exception.QueryError
Returns:

Condition for the subquery

Type: 
$k.QueryReference

addRelation(type) → {$k.HasRelationCondition}

Add an empty relation condition without target/cardinality conditions

Parameters:
NameTypeDescription
type$k.RelationType | string

RelationType or internal name

Since
  • 4.1.0
Throws:

addRelationTarget(type, targetQueryopt) → {$k.RelationTargetCondition}

Add a relation target condition

Parameters:
NameTypeAttributesDescription
type$k.RelationType | string

RelationType or internal name

targetQuery$k.StructuredQuery<optional>

Target query. If not specified an empty subquery will be build

Since
  • 4.1.0
Throws:
Returns:

Condition for the relation target

Type: 
$k.RelationTargetCondition

clone() → {$k.StructuredQuery}

Returns a copy of the query. The copy can be modified.

Since
  • 4.1.0
Throws:

If the query cannot be cloned

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

conditions() → {Array.<$k.QueryCondition>}

Returns the conditions of the query

Since
  • 4.1.0
Returns:
Type: 
Array.<$k.QueryCondition>

definedParameters() → {Array.<$k.QueryParameter>}

Returns the parameters of the query

Returns:
Type: 
Array.<$k.QueryParameter>

deregister()

Deregisters the element. The id will be undefined afterwards. Equivalent to setId(undefined)

See
  • setId

domains() → {Array.<$k.Domain>}

Returns the domains of the query

Since
  • 4.1.0
Returns:
Type: 
Array.<$k.Domain>

explainElements(elements, parametersopt) → {Array.<$k.SemanticElement>}

Returns elements involved in the query

Parameters:
NameTypeAttributesDescription
elementsArray.<$k.SemanticElement>

Elements to explain. Elements that do not match the query are ignored.

parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:
Type: 
Array.<$k.SemanticElement>

filterElements(elements, searchStringopt, parametersopt) → {Array.<$k.SemanticElement>}

Returns all elements that match the query. The two optional parameters can be given in any order.

Parameters:
NameTypeAttributesDescription
elementsArray.<$k.SemanticElement>
searchStringstring<optional>
parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:
Type: 
Array.<$k.SemanticElement>
Example
var hits = $k.Registry.query("experts").filterElements(persons);

filterHits(hits, parametersopt, searchStringopt) → {Array.<$k.Hit>}

Returns all hits that match the query

Parameters:
NameTypeAttributesDescription
hitsArray.<$k.Hit>
parametersobject<optional>
searchStringstring<optional>
Since
  • 5.3.0
Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:
Type: 
Array.<$k.Hit>
Example
var hits = $k.Registry.query("experts").filterHits(hits);

findElements(searchStringopt, parametersopt) → {Array.<$k.SemanticElement>}

Search and return all found semantic elements. The two parameters can be given in any order.

Parameters:
NameTypeAttributesDescription
searchStringstring<optional>
parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

Inherited From
Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:
Type: 
Array.<$k.SemanticElement>
Examples
var hits = $k.Registry.query("directSearch").findElements("Test");
var hits = $k.Registry.query("compositeSearch").findElements("Test", { context: "portal" });

findHits(searchStringopt, parametersopt) → {Array.<$k.Hit>}

Search and return all found hits. The two arguments can be given in any order.

Parameters:
NameTypeAttributesDescription
searchStringstring<optional>
parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

Inherited From
Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:
Type: 
Array.<$k.Hit>
Example
var hits = $k.Registry.query("directSearch").findHits("Test*");

findResultSize(searchStringopt, parametersopt) → {number}

Search and return the number of found semantic elements. The two arguments can be given in any order.

Parameters:
NameTypeAttributesDescription
searchStringstring<optional>
parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

Since
  • 5.3.3
Throws:

When the query could not be solved, e.g. missing parameters

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

findSolutions(parametersopt, singleElementIdentifiersopt) → {Array.<object>}

Search and return all solutions

Parameters:
NameTypeAttributesDescription
parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

singleElementIdentifiersArray.<string><optional>

An array of query handle identifiers

Since
  • 5.2.2
Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:

Each solution is an object containing an element of the result set, and all elements at identifiers of the query, e.g. {element: element1, identifiers: { someIdentifier1: [ element2, ... ], someIdentifier2: [ element3, ... ] }}. If an identifier is included in the singleElementIdentifiers array, multiple values for this identifier will be distributed to multiple separate solutions where each solution has exactly one value for that identifier.

Type: 
Array.<object>

fullExplainElements(elements, parametersopt) → {Array.<$k.SemanticElement>}

Returns all elements involved in the query

Parameters:
NameTypeAttributesDescription
elementsArray.<$k.SemanticElement>

Elements to fully explain. Elements that do not match the query are ignored.

parametersobject<optional>

The parameters object where the keys match the names of parameters defined in the query

Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:
Type: 
Array.<$k.SemanticElement>

handleConditions(handle) → {Array.<$k.QueryCondition>}

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

Handle conditions with the given handle

Type: 
Array.<$k.QueryCondition>

id() → {string|undefined}

Returns the registered ID, or undefined if not registered.

Inherited From
Returns:
Type: 
string | undefined

inheritance() → {boolean}

Returns true if elements of subdomains should be returned

Since
  • 4.1.0
Returns:
Type: 
boolean

inverseConditions() → {Array.<$k.QueryCondition>}

Returns the conditions pointing to this query

Since
  • 4.1.0
Returns:
Type: 
Array.<$k.QueryCondition>

name() → {string}

Returns the name

Inherited From
Returns:
Type: 
string

parentFolders() → {Array.<$k.Folder>}

Returns the folders that contain this element

Returns:
Type: 
Array.<$k.Folder>

registryType() → {string}

Returns the name of the registry that contains elements of this type

Returns:
Type: 
string

renderElements(tableConfiguration, keyFilteropt, detailFilteropt) → {Array.<object>}

Search and render found semantic elements using the given table configuration

Parameters:
NameTypeAttributesDescription
tableConfiguration$k.TableConfiguration
keyFilterobject<optional>

Alternative 1 (preferred): a $k.JSONRenderContext Alternative 2 (compatibility only): A filter. See $k.JSONRenderContext.prototype.setFilters().

detailFilterobject<optional>

Only used if the key filter is not a $k.JSONRenderContext. See $k.JSONRenderContext.prototype.setLevelsOfDetail()

Since
  • 4.1.0
Deprecated
  • This function is deprecated and might be removed in future releases
Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:

The rendered objects

Type: 
Array.<object>

renderHits(tableConfiguration, keyFilteropt, detailFilteropt) → {Array.<object>}

Search and render found hits using the given table configuration

Parameters:
NameTypeAttributesDescription
tableConfiguration$k.TableConfiguration
keyFilterobject<optional>

Alternative 1 (preferred): a $k.JSONRenderContext Alternative 2 (compatibility only): A filter. See $k.JSONRenderContext.prototype.setFilters().

detailFilterobject<optional>

Only used if the key filter is not a $k.JSONRenderContext. See $k.JSONRenderContext.prototype.setLevelsOfDetail()

Since
  • 4.1.0
Inherited From
Deprecated
  • This function is deprecated and might be removed in future releases
Throws:

When the query could not be solved, e.g. missing parameters

Type
$k.exception.QueryError
Returns:

The rendered objects

Type: 
Array.<object>

searchString() → {string}

Returns the search string

Inherited From
Returns:
Type: 
string

setAccessParameter(accessParameter, value)

Set a parameter of the query.

Parameters:
NameTypeDescription
accessParameterstring

One of the access parameters ("topic", "property", "accessedObject", "concept", "user" etc)

value

The value of the parameter. The type (string etc.) depends on the parameter. Arrays of values can be passed, too. The value undefined or null disables the parametrized condition.

Throws:

When the value is not suitable for the parameter

Type
$k.exception.TypeError

setAlternatives(conditions)

Set the conditions as alternatives (OR group). If <= 1 conditions are passed this will be a no-op.

Parameters:
NameTypeDescription
conditionsArray.<$k.QueryCondition>

Conditions of this query that should be alternatives

Since
  • 4.1.0
Deprecated
  • Use addAlternativeGroup() instead
Throws:

setDomain(domain)

Restrict the query results to objects/types of the domains

Parameters:
NameTypeDescription
domain$k.Domain | string

The domain or internal name of a type

Since
  • 4.1.0
Inherited From

setDomains(domains)

Restrict the query results to objects/types of the domains

Parameters:
NameTypeDescription
domainsArray.<$k.Domain> | Array.<string>

The domains or internal names of types

Inherited From

setFacetFilters(facetFiltersArray)

Set the selected facets and terms for the query

Parameters:
NameTypeDescription
facetFiltersArrayArray.<object>

Array with selected facets and terms

Properties
NameTypeAttributesDefaultDescription
facetIdstring

Facet identifier

termIdsArray.<string><optional>

Term identifiers

showAllTermsboolean<optional>
false
Since
  • 5.1.3

setId(id, replaceScriptReferencesopt)

Registers the element with the given ID. If the element has already been registered, the current ID will be changed to the new ID. If the given ID is undefined or null, the element will be deregistered.

Parameters:
NameTypeAttributesDefaultDescription
idstring | null

The ID to set

replaceScriptReferencesboolean<optional>
false

True if ID references in scripts should be replaced. Only done when the old and the new ID is not undefined.

setInheritance(useInheritance)

Set to false if elements of subdomains should not be returned

Parameters:
NameTypeDescription
useInheritanceboolean
Since
  • 4.1.0

setMergeCauses(mergeCauses)

Determines whether causes should be merged when filtering hits

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

setName(name)

Sets the name of the query

Parameters:
NameTypeDescription
namestring

The name

Version
  • Experimental feature, might be removed at any time
Since
  • 5.3.2
Inherited From

setParameter(parameterId, value)

Set a parameter of the query.

Parameters:
NameTypeDescription
parameterIdstring

The ID of the parameter

value

The value of the parameter. The type (string etc.) depends on the parameter. Arrays of values can be passed, too. The value undefined or null disables the parameterized condition.

Inherited From
Throws:

When the value is not suitable for the parameter

Type
$k.exception.TypeError

setParameters(parameters)

Set the parameters of the query from the properties of the object

Parameters:
NameTypeDescription
parametersobject

The parameters object where the keys match the names of parameters defined in the query

Throws:

When a value is not a suitable parameter

Type
$k.exception.TypeError

setSearchString(searchString)

Set the string to search for

Parameters:
NameTypeDescription
searchStringstring