Please specify what version of the library you are using: [ 1.2.3 ]
Please specify what version(s) of SharePoint you are targeting: [ SPO ]
When specified as followed, I expect the "skip" parameter to get added to the query.
let view = new GraphQueryableCollection(graph.me, "people");
view = view.skip(12)
The skip parameter was not added. The following code works perfectly though:
let view = new GraphQueryableCollection(graph.me, "people");
view.query.set("skip", "12")
Add the code above 馃憤
Amazed this wasn't found earlier. Copy/paste bug as we didn't update skip method to add skip rather it adds "top". Fixing.
Fixed in #333.