You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As given in the docs when sending the query string like http://localhost:3100/Customers?join=facilities||id,status||on[0]=facilities.status||$eq||Archived&filter[0]=id||$eq||4 the join condition gets omitted because the join key is not intercepted correctly, key value pair is coming as key= join=facilities||id,status||on value= facilities.status||$eq||Archived
But we actually need key= join value= facilities||id,status||on[0]=facilities.status||$eq||Archived
The text was updated successfully, but these errors were encountered:
Only fix is to just add brackets to the join clause like this. http://localhost:3100/Customers?join[]=facilities||id,status||on[0]=facilities.status||$eq||Archived&filter[0]=id||$eq||4 but i believe this should be updated in the docs as well. @zaro
As given in the docs when sending the query string like
http://localhost:3100/Customers?join=facilities||id,status||on[0]=facilities.status||$eq||Archived&filter[0]=id||$eq||4
the join condition gets omitted because the join key is not intercepted correctly, key value pair is coming askey= join=facilities||id,status||on
value= facilities.status||$eq||Archived
But we actually need
key= join
value= facilities||id,status||on[0]=facilities.status||$eq||Archived
The text was updated successfully, but these errors were encountered: