Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Full-Text Search Index Specs
When you define a path with a full-text index, you can also use that path for non-full-text queries. These other types of queries—”all”, “exact”, “:like”, “range”, and “smart” queries—interpret full-text indexed fields as string indexed fields.
The following examples show how to instantiate a full-text index spec.
Example
iOS:
1[[SFSoupIndex alloc]
2 initWithDictionary:@{kSoupIndexPath: @"some_path",
3 kSoupIndexType: kSoupIndexTypeFullText}]Android:
1new IndexSpec("some_path", Type.full_text)JavaScript:
1new navigator.smartstore.SoupIndexSpec("some_path", "full_text")