Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. {
  2. "customers": [
  3. {
  4. "id": 1,
  5. "name": "bob",
  6. "orders": [{"id": 1, "customerId": 1, "itemId": 6}]
  7. },
  8. {
  9. "id": 2,
  10. "name": "jane",
  11. "orders": [{"id": 2, "customerId": 2, "itemId": 7}]
  12. }
  13. ]
  14. }
  15.  
  16. ...odata/customers?$expand=orders&$filter=orders/any(order: order/itemId eq 6)
  17.  
  18. {
  19. "customers": [
  20. {
  21. "id": 1,
  22. "name": "bob",
  23. "orders": [{"id": 1, "customerId": 1, "itemId": 6}]
  24. },
  25. {
  26. "id": 2,
  27. "name": "jane",
  28. "orders": []
  29. }
  30. ]
  31. }
  32.  
  33. {
  34. "customers": [
  35. {
  36. "id": 1,
  37. "name": "bob",
  38. "orders": [{"id": 1, "customerId": 1, "itemId": 6}]
  39. }
  40. ]
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement