Query.fields

Availability

Flash Player 7

Usage

myQuery.fields:Array

Description

Array. String array containing names of the fields to be returned in the query result. The default value (all fields will be returned when using it) is ["*"];.

Example

The following code will request that only fields named "title" and "summary" be returned:

myQuery = myfMaster.getQuery();
myQuery.fields = [ "title", "summary" ];