Difference between revisions of "FieldsInJavaAPIs"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
 
Line 1: Line 1:
::* A comma-separated list of field names{{#ifeq: {{PAGENAME}}|Java API:Composite Objects|, where a field name of the form <tt>alias[.alias...].*</tt> or <tt>alias[.alias...].field</tt> indicates a [[Composite Object]] fetch|}}
::* A comma-separated list of field names (Use the [[REST API:field Resource]] to get a complete list of fields.)
::* The asterisk (<tt>"*"</tt>) wildcard specifies all fields
::* The asterisk (<tt>"*"</tt>) wildcard specifies all fields.
:::(Use the [[REST API:field Resource]] to get a complete list of fields.)
::* For related-record fields in a [[Composite Object]], specify the alias of the related object and the field name, where the alias is defined in the [[Object Relationships]]:
::* For related-record fields in a [[Composite Object]], specify the alias of the related object and the field name, where the alias is defined in the [[Object Relationships]]:
:::: <tt>{aliasName}.{fieldName}</tt>
:::: <tt>alias[.alias...].*</tt> or <tt>alias[.alias...].field</tt>
::: When fetched, the alias becomes a "field" that contains an ''array'' of records from the related object, where each record contains the specified field(s).
::: When fetched, an alias becomes a virtual "field" that contains an ''array'' of records from the related object, where each record contains the specified field(s).

Latest revision as of 03:44, 18 November 2014

  • A comma-separated list of field names (Use the REST API:field Resource to get a complete list of fields.)
  • The asterisk ("*") wildcard specifies all fields.
  • For related-record fields in a Composite Object, specify the alias of the related object and the field name, where the alias is defined in the Object Relationships:
alias[.alias...].* or alias[.alias...].field
When fetched, an alias becomes a virtual "field" that contains an array of records from the related object, where each record contains the specified field(s).