Forum Discussion
Jono_Suave
Mar 14, 2023Copper Contributor
SharePoint List Item Person field only returns FieldId and FieldStringId
I have a list with a few columns that are Person columns. Below is a snippet without a select nor expand: const newHires = this._sp.web.lists.getById(${listId}).items<ListItem[]>(); const resolvedT...
SvenSieverding
Mar 14, 2023Bronze Contributor
Hi Jono_Suave,
the selected properties are case-sensitive. Try
.select("Manager/EMail").expand("Manager")
Best Regards,
Sven