CBLQueryFullTextExpression

@interface CBLQueryFullTextExpression : NSObject

Full-text expression.

  • Creates a full-text expression with the given full-text index name.

    Declaration

    Objective-C

    + (nonnull CBLQueryFullTextExpression *)index:(nonnull NSString *)indexName;

    Parameters

    indexName

    The full-text index name.

    Return Value

    The full-text expression.

  • Creates a full-text match expression with the given search text.

    Declaration

    Objective-C

    - (nonnull CBLQueryExpression *)match:(nonnull NSString *)text;

    Parameters

    text

    The search text.

    Return Value

    The full-text match expression.