SCOPE ALL
In v8.0+, use SCOPE ALL with FIND to search document fields and within document content.
Syntax
Section link for SyntaxSELECT {fields}
FROM documents
FIND ('{search phrase}' SCOPE ALL)Query Examples
Section link for Query ExamplesThe following are examples of queries using SCOPE ALL.
The example query below searches document content and all queryable fields.
SELECT id, name__v
FROM documents
FIND ('insulin' SCOPE ALL)