-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
The following code does not work :
$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 to join a value from another table. The EAV throws an error : "Unknown column 'a1_.attribute_code' in 'on clause'". It try to fetch the attribute code from the values table which does not exists.
Metadata
Metadata
Assignees
Labels
No labels