interface ReturnBoolExp<T> {
    _and?: T[];
    _not?: T;
    _or?: T[];
    relation: string;
    return?: {
        [key: string]: ReturnBoolExp;
    };
    table?: string;
    [key: string]: any;
}

Type Parameters

  • T = any

Hierarchy (view full)

Indexable

  • [key: string]: any

Properties

_and?: T[]
_not?: T
_or?: T[]
relation: string
return?: {
    [key: string]: ReturnBoolExp;
}
table?: string