6
The query /_api/lists/getbytitle('<list title>')/items?$select=* returns list items for visible fields only (SP.Field.hidden property is set to false).
To be more precise the expression $select=* returns:
visiblefields values (query that returns visible field names:/_api/Web/Lists/getByTitle('<list title>')/fields?$select=InternalName&$filter=Hidden eq false)FileSystemObjectTypehidden field value- not all visible field values are returned, for example ItemChildCount is not available:
How to return an additional fields
In order to return an additional fields, the field name(s) have to be specified explicitly using $select query option. For example, to return hidden system field FileRef you could utilize the following query:
/_api/Web/Lists/getByTitle('<list title>')/items?$select=FileRef
or
/_api/Web/Lists/getByTitle('<list title>')/items?$select=FileRef,*
Comments