CBLQueryFullTextExpression
@interface CBLQueryFullTextExpression : NSObject
Full-text expression.
-
Creates a full-text expression with the given full-text index name.
Declaration
Objective-C
+ (nonnull CBLQueryFullTextExpression *)indexWithName:(nonnull NSString *)name;
Parameters
name
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 *)query;
Parameters
query
The query string.
Return Value
The full-text match expression.
-
Not available
Declaration
Objective-C
- (nonnull instancetype)init;