eav-manager
eav-manager copied to clipboard
Blazing fast data modeling and enrichment
There is a lot of issues with EAV and API Plaftorm : - The validation does not work and cause issue with null values - Identifier can be not unique...
It will be great if the EAV User class will be renamed to EAVUser to allow add own Users in the EAV data/value.
When an entity is not found in the edit (for example an wrong id is typed in url), an error 500 is thrown if the id match an other EAV...
When clicking on the profile name in the left menu, we are redirect to the profile edition page, but it crashes with a 500 error saying "`No family with code...
If no prefix is set for each admin, the list action does not recognize the right route and the last admin route is set every time. So we can not...
Annotations are used for routing, mixed with yaml. So it is not possible to override those routes, and as the login route is under the global routes importation, if a...
The following code does not work : ```php $queryBuilder = $this->finder->createFamilyBuilder('Publication'); $visibleAttribute = $this->finder->getFamily('PublishedPublication')->getAttribute('visible'); $queryBuilder->apply( $queryBuilder ->a('publishedPublications') ->join() ->attribute($visibleAttribute) ->equals(true) ); ``` But the documentation says it is the way...
The Doctrine profiler is disabled in EAV. But as the EAV profiler does not work, it is not possible to see what queries are made in a request.....
When using the serializer into a project using the EAV bundle, the EAV Entity provider fails if an entity is not managed by EAV. It means that all entity/object which...