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
ZfrRest now supports coalesce filtering for "hasMany" or "findMany" requests type through the new, optional enable_coalesce_filtering module option. If enabled, ZfrRest will be able to respond to queries like /customers?ids[]=5&ids[]=64, where ids is a configurable primary key name.
Fix a bug with entry points. Previously, if you had an entry point configured as "/users", ZfrRest used to match URLs like "/userssssss"
Added support for OneToOne association (assuming you have a "User" entity with a OneToOne association to a "Card" entity, you can now do a POST request like "/users/4/card")