interface BoolExpValue<T> {
    _and?: BoolExpValue<T>[];
    _not?: BoolExpValue<T>;
    _or?: BoolExpValue<T>[];
    id?: ComparasionType<Id>;
    link?: BoolExpLink | Id;
    link_id?: ComparasionType<Id>;
    return?: {
        [key: string]: ReturnBoolExp;
    };
    value?: ComparasionType<T>;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

_and?: BoolExpValue<T>[]
_not?: BoolExpValue<T>
_or?: BoolExpValue<T>[]
link?: BoolExpLink | Id

Relation to the link that contains this value.

link_id?: ComparasionType<Id>

If of link that contains this value.

return?: {
    [key: string]: ReturnBoolExp;
}
MMNEPVFCICPMFPCPTTAAATR