@aptos-labs/ts-sdk - v5.1.4
    Preparing search index...

    Type Alias JsonbComparisonExp

    Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.

    type JsonbComparisonExp = {
        _cast?: InputMaybe<JsonbCastExp>;
        _contained_in?: InputMaybe<Scalars["jsonb"]["input"]>;
        _contains?: InputMaybe<Scalars["jsonb"]["input"]>;
        _eq?: InputMaybe<Scalars["jsonb"]["input"]>;
        _gt?: InputMaybe<Scalars["jsonb"]["input"]>;
        _gte?: InputMaybe<Scalars["jsonb"]["input"]>;
        _has_key?: InputMaybe<Scalars["String"]["input"]>;
        _has_keys_all?: InputMaybe<Scalars["String"]["input"][]>;
        _has_keys_any?: InputMaybe<Scalars["String"]["input"][]>;
        _in?: InputMaybe<Scalars["jsonb"]["input"][]>;
        _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
        _lt?: InputMaybe<Scalars["jsonb"]["input"]>;
        _lte?: InputMaybe<Scalars["jsonb"]["input"]>;
        _neq?: InputMaybe<Scalars["jsonb"]["input"]>;
        _nin?: InputMaybe<Scalars["jsonb"]["input"][]>;
    }
    Index

    Properties

    _contained_in?: InputMaybe<Scalars["jsonb"]["input"]>

    is the column contained in the given json value

    _contains?: InputMaybe<Scalars["jsonb"]["input"]>

    does the column contain the given json value at the top level

    _eq?: InputMaybe<Scalars["jsonb"]["input"]>
    _gt?: InputMaybe<Scalars["jsonb"]["input"]>
    _gte?: InputMaybe<Scalars["jsonb"]["input"]>
    _has_key?: InputMaybe<Scalars["String"]["input"]>

    does the string exist as a top-level key in the column

    _has_keys_all?: InputMaybe<Scalars["String"]["input"][]>

    do all of these strings exist as top-level keys in the column

    _has_keys_any?: InputMaybe<Scalars["String"]["input"][]>

    do any of these strings exist as top-level keys in the column

    _in?: InputMaybe<Scalars["jsonb"]["input"][]>
    _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
    _lt?: InputMaybe<Scalars["jsonb"]["input"]>
    _lte?: InputMaybe<Scalars["jsonb"]["input"]>
    _neq?: InputMaybe<Scalars["jsonb"]["input"]>
    _nin?: InputMaybe<Scalars["jsonb"]["input"][]>