SelectAll
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
Copied!
SelectAll( path, from )
Description
The SelectAll
function extracts one or more values from a
document, Object, or
Array. It is very useful when extracting multiple values from an
Array. It extracts all of the values specified by the path
parameter
out of the from
parameter and returns the values as an Array. If the path
does not exist an empty array is returned.
This function is not comparable to SQL’s SELECT command.
If you are looking to fetch documents from a collection, see
the Paginate function.
|