Skip to main content

%iKnow.Filters.ContainsRelatedEntitiesFilter

class %iKnow.Filters.ContainsRelatedEntitiesFilter extends %iKnow.Filters.Filter

%iKnow.Filters.Filter implementation selecting sources based on whether they contain a particular set of entities in a single context. This means they appear in the same CRC (direct relationship) or path (any relationship) in the sources to be included. Optionally, any entities similar to the supplied ones are also accepted.

Filter parameters:

  1. pDomainId As %Integer
  2. pEntityList As %List - entities to check for, appearing in a relationship with one another.
  3. pDirectRelation As %Boolean (default 0) - if true, the entities in pEntityList should appear in a direct relationship (within the same CRC) with one another. Otherwise, having the entities appear in the same path is enough for a source to be included.
  4. pIncludeSimilar As %Boolean (default 0) - if true, entities similar to the strings in pEntityList are also considered.

Property Inventory

Method Inventory

Properties

property DirectRelation as %Boolean;
Property methods: DirectRelationDisplayToLogical(), DirectRelationGet(), DirectRelationIsValid(), DirectRelationLogicalToDisplay(), DirectRelationNormalize()
property Entities as %List;
Property methods: EntitiesGet(), EntitiesIsValid(), EntitiesLogicalToOdbc(), EntitiesOdbcToLogical()
property IncludeSimilar as %Boolean;
Property methods: IncludeSimilarDisplayToLogical(), IncludeSimilarGet(), IncludeSimilarIsValid(), IncludeSimilarLogicalToDisplay(), IncludeSimilarNormalize()

Methods

method ToString() as %String
Inherited description:

Subclasses should implement this method to build a string representation of the filter instance. It should start with the filter class name, followed by a pipe (|) character and then a string representation that can be interpreted by its RestoreFilterFromStringInternal() implementation.

Inherited Members

Inherited Properties

Inherited Methods

FeedbackOpens in a new tab