We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e6413b commit 88beedeCopy full SHA for 88beede
additions/main.tsp
@@ -13,9 +13,11 @@ namespace microsoft.graph {
13
@graphRoute("contacts/{id}")
14
interface OrgContactsById extends Resource<OrgContact> {
15
@select GetResource is GraphOps.GetResource;
16
+ @select PatchResource is GraphOps.PatchWithResponse;
17
+ @select DeleteResource is GraphOps.Delete;
18
}
19
@graphRoute("contacts")
20
interface OrgContacts extends Collection<OrgContact> {
- @orderBy("displayName") @filter("*") @search @count @select @top GetCollection is GraphOps.GetPagedCollection;
21
+ @orderBy("displayName") @filter("*") @search @count @select @skip @top GetCollection is GraphOps.GetPagedCollection;
22
23
0 commit comments