common helper methods that can be used to call any graph api
example:
await nobody.graph("/me/messages")
.select("sender,subject")
.top(10)
.orderBy("receivedDateTime desc")
.get();
these are generic methods that can be used to call any graph api
the above example is equivalent to the following: