interface BoolExpSelector {
    _and?: BoolExpCan[];
    _not?: BoolExpCan;
    _or?: BoolExpCan[];
    item?: BoolExpLink | Id;
    item_id?: ComparasionType<Id>;
    query?: BoolExpLink | Id;
    query_id?: ComparasionType<Id>;
    return?: {
        [key: string]: ReturnBoolExp;
    };
    selector?: BoolExpLink | Id;
    selector_id?: ComparasionType<Id>;
    selector_include_id?: ComparasionType<Id>;
}

Hierarchy (view full)

Properties

_and?: BoolExpCan[]
_not?: BoolExpCan
_or?: BoolExpCan[]
item?: BoolExpLink | Id

Relation to link item to be matched by the selector.

item_id?: ComparasionType<Id>

Id of link item to be matched by the selector.

query?: BoolExpLink | Id

Relation to Query - boolean expression attached to a selector.

query_id?: ComparasionType<Id>

Id of Query - boolean expression attached to a selector.

return?: {
    [key: string]: ReturnBoolExp;
}
selector?: BoolExpLink | Id

Relation to link selector that the item includes.

selector_id?: ComparasionType<Id>

Id of link selector that the item includes.

selector_include_id?: ComparasionType<Id>
MMNEPVFCICPMFPCPTTAAATR