First of all, big shout out to the PnP JS guys and gals - great library that I use constantly!
With v2.4.0 I am finding that using the get() call when retrieving items is now returning an "undefined" value, however using the items() call is returning items:
Returns undefined:
const items: any[] = await sp.web.lists
.getByTitle("Monthly Reports")
.items.get();
returns expected values:
const items: any[] = await sp.web.lists
.getByTitle("Monthly Reports")
.items();
Why is this?
I want to use the ".get()" call as I want to also call a number of other modifiers, such as:
sp.web.lists
.getByTitle("Monthly Reports")
.items
.filter(query)
.expand("FieldValuesAsText")
.select(
"ID",
"FieldValuesAsText/FileRef",
"Title"
)
.top(5000)
.orderBy("Modified", false)
.get()
Any suggestions greatly appreciated!