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
Is your feature request related to a problem? Please describe.
At first, when using jsonServerProvider, I thought the getMany documentation was doing multiple GET calls as mentioned getMany | GET http://my.api.url/posts/123, GET http://my.api.url/posts/456, GET http://my.api.url/posts/789
In fact, it uses query-string and it produces one call like this GET http://my.api.url/posts?id=1&id=2&id=3
Describe the solution you'd like
Two things are wrong in the documentation. First, it assumes it calls GET multiple times and it's a "filter" query (?), not a controller action query (/).
Right now I've cloned the repository and I added { arrayFormat: "bracket" } as an option to stringify function to fit my API.
Is it possible to update the documentation? Thanks
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
At first, when using
jsonServerProvider
, I thought thegetMany
documentation was doing multipleGET
calls as mentionedgetMany
|GET http://my.api.url/posts/123
,GET http://my.api.url/posts/456
,GET http://my.api.url/posts/789
In fact, it uses
query-string
and it produces one call like thisGET http://my.api.url/posts?id=1&id=2&id=3
Describe the solution you'd like
Two things are wrong in the documentation. First, it assumes it calls
GET
multiple times and it's a "filter" query (?
), not a controller action query (/
).Right now I've cloned the repository and I added
{ arrayFormat: "bracket" }
as an option tostringify
function to fit my API.Is it possible to update the documentation? Thanks
The text was updated successfully, but these errors were encountered: