I need to update a Managed Metadata (Term) via Microsoft Graph Api Sdk for .Net.
I have all the information about the Term after the following call:
var term = graphClient
.Sites[mySite]
.TermStore
.Groups[myGroup]
.Sets[mySet]
.Terms[myIdTerm]
.Terms
.Request()
.GetAsync()
.Result;
Taxonomy has a different approach comparing others metadata so I can't make the right call.