Properties that can be passed into the constructor for tasks/query/QueryBasedRelationship!QueryBasedRelationship.

interface QueryBasedRelationshipProperties {
    $relationshipType?: string;
    cardinality?: Cardinality;
    failureMode?: FailureMode;
    id?: string;
    keyField: string;
    queryService?: QueryService;
    relatedKeyField: string;
    relatedSource: FeatureSource;
    title?: string;
}

Hierarchy (view full)

Properties

$relationshipType?: string
cardinality?: Cardinality
failureMode?: FailureMode
id?: string

The unique ID to assign to the entity. If not specified, one will be generated.

keyField: string
queryService?: QueryService
relatedKeyField: string
relatedSource: FeatureSource
title?: string