I am new to developing for SharePoint and trying to find the documentation to make a web part to list the project documents. I found documentation and videos for bringing in the project information:
.get(`${this.props.context.pageContext.web.absoluteUrl}/_api/web/lists/GetByTitle('Projects')/Items?$expand=ProjectManager&$select=*,ProjectManager,ProjectManager/EMail,ProjectManager/Title`,
And can filter the list of projects with this:
.get(`${this.props.context.pageContext.web.absoluteUrl}/_api/web/lists/GetByTitle('Projects')/Items?$expand=ProjectManager&$select=*,ProjectManager,ProjectManager/EMail,ProjectManager/Title&$filter=Title eq %27${filterVal}%27`,
Any help is much appreciated.
Thank you