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
indexNameThe 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
textThe search text.
Return Value
The full-text match expression.
CBLQueryFullTextExpression Class Reference