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

    Type Alias StringComparisonExp

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

    type StringComparisonExp = {
        _eq?: InputMaybe<Scalars["String"]["input"]>;
        _gt?: InputMaybe<Scalars["String"]["input"]>;
        _gte?: InputMaybe<Scalars["String"]["input"]>;
        _ilike?: InputMaybe<Scalars["String"]["input"]>;
        _in?: InputMaybe<Scalars["String"]["input"][]>;
        _iregex?: InputMaybe<Scalars["String"]["input"]>;
        _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
        _like?: InputMaybe<Scalars["String"]["input"]>;
        _lt?: InputMaybe<Scalars["String"]["input"]>;
        _lte?: InputMaybe<Scalars["String"]["input"]>;
        _neq?: InputMaybe<Scalars["String"]["input"]>;
        _nilike?: InputMaybe<Scalars["String"]["input"]>;
        _nin?: InputMaybe<Scalars["String"]["input"][]>;
        _niregex?: InputMaybe<Scalars["String"]["input"]>;
        _nlike?: InputMaybe<Scalars["String"]["input"]>;
        _nregex?: InputMaybe<Scalars["String"]["input"]>;
        _nsimilar?: InputMaybe<Scalars["String"]["input"]>;
        _regex?: InputMaybe<Scalars["String"]["input"]>;
        _similar?: InputMaybe<Scalars["String"]["input"]>;
    }
    Index

    Properties

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

    does the column match the given case-insensitive pattern

    _in?: InputMaybe<Scalars["String"]["input"][]>
    _iregex?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given POSIX regular expression, case insensitive

    _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
    _like?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given pattern

    _lt?: InputMaybe<Scalars["String"]["input"]>
    _lte?: InputMaybe<Scalars["String"]["input"]>
    _neq?: InputMaybe<Scalars["String"]["input"]>
    _nilike?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given case-insensitive pattern

    _nin?: InputMaybe<Scalars["String"]["input"][]>
    _niregex?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given POSIX regular expression, case insensitive

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

    does the column NOT match the given pattern

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

    does the column NOT match the given POSIX regular expression, case sensitive

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

    does the column NOT match the given SQL regular expression

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

    does the column match the given POSIX regular expression, case sensitive

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

    does the column match the given SQL regular expression