I have a component with ODataAdaptor as a data source, now i would like to make a Patch request with $expand query like i make for GET request(since GET request openly supports $expand query). But i don't have an idea whether it is accepted or is there any other way i can look into to approach this issue?
Actual request: http://localhost:49807/odata/Orders(10249)
Expected request: http://localhost:49807/odata/Orders(10249)/?$expand=OrderDetail($select=CustomerID)
with $expand query in Patch request.