Hello
I have following fetchXML request:
var fetchXML2 = `
<fetch>
<entity name="team" >
<attribute name="name" />
<filter>
<condition attribute="name" operator="eq" value="Private access to notes" />
</filter>
<link-entity name="teammembership" from="teamid" to="teamid" link-type="inner" >
<filter>
<condition attribute="systemuserid" operator="eq" value="${currentUserId}" />
</filter>
</link-entity>
</entity>
</fetch>
`;
Here I just have inner join and condition for each table. Now I need to write Web Api request which will return the same result. My new request must look like "?$select=name&$filter=name eq 'Private access to notes'"; or something like this.
Is there some converter for getting Web Api requests? (for example there is fetchXML creator in Xmr tool box for creating fetchXML requests). How to write request with inner join?