-
Notifications
You must be signed in to change notification settings - Fork 75
Closed
Milestone
Description
Metadata has add and remove actions defined on a collection of microsoft.graph.site. It looks like we don't support generating methods for actions defined on collections.
<Action Name="add" IsBound="true">
<Parameter Name="bindingParameter" Type="Collection(graph.site)"/>
<Parameter Name="value" Type="Collection(graph.site)"/>
<ReturnType Type="Collection(graph.site)"/>
</Action>
<Action Name="remove" IsBound="true">
<Parameter Name="bindingParameter" Type="Collection(graph.site)"/>
<Parameter Name="value" Type="Collection(graph.site)"/>
<ReturnType Type="Collection(graph.site)"/>
</Action>
Example Requests:
https://docs.microsoft.com/en-us/graph/api/site-follow?view=graph-rest-1.0&tabs=csharp#request
https://docs.microsoft.com/en-us/graph/api/site-unfollow?view=graph-rest-1.0&tabs=csharp#request
AB#7086