diff --git a/additions/main.tsp b/additions/main.tsp index b15473e52..18b236e74 100644 --- a/additions/main.tsp +++ b/additions/main.tsp @@ -13,9 +13,11 @@ namespace microsoft.graph { @graphRoute("contacts/{id}") interface OrgContactsById extends Resource { @select GetResource is GraphOps.GetResource; + @select PatchResource is GraphOps.PatchWithResponse; + @select DeleteResource is GraphOps.Delete; } @graphRoute("contacts") interface OrgContacts extends Collection { - @orderBy("displayName") @filter("*") @search @count @select @top GetCollection is GraphOps.GetPagedCollection; + @orderBy("displayName") @filter("*") @search @count @select @skip @top GetCollection is GraphOps.GetPagedCollection; } }