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

Type Parameters

  • T

Hierarchy (view full)

Properties

_and?: BoolExpValue<T>[]
_not?: BoolExpValue<T>
_or?: BoolExpValue<T>[]

Relation to the link that contains this value.

link_id?: ComparasionType<Id>

If of link that contains this value.