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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all.
Will there be "Simple Rest Provider" support for OpenApi admin?
At the moment, OpenApi admin works according to the scheme:
getList
GET http://my.api.url/posts?sort=["title","ASC"]&range=[0, 24]&filter={"title":"bar"}
getOne
GET http://my.api.url/posts/123
getMany
GET http://my.api.url/posts?filter={"id":[123,456,789]}
getManyReference
GET http://my.api.url/posts?filter={"author_id":345}
create
POST http://my.api.url/posts
update
PUT http://my.api.url/posts/123
updateMany
PUT http://my.api.url/posts/123
delete
DELETE http://my.api.url/posts/123
deleteMany
DELETE http://my.api.url/posts/123
And the api-platform/admin sends data according to this scheme, and the kernel ignores the filters for getList, getOne, getMany, getManyReference.
Beta Was this translation helpful? Give feedback.
All reactions