sort and filter menuitems in aliasof select
Some checks failed
/ ls (pull_request) Failing after 25s
/ ls (release) Successful in 46s
/ ls (push) Successful in 2m27s

This commit is contained in:
lubiana 2025-01-25 02:27:11 +01:00
parent 9781bd561f
commit 0ce09437a3
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk

View file

@ -27,6 +27,8 @@ final class MenuItemType extends AbstractType
'query_builder' => static fn(MenuItemRepository $repository): QueryBuilder => $repository
->createQueryBuilder('m')
->where('m.foodVendor = :vendorId')
->andWhere('m.deletedAt IS NULL')
->orderBy('m.name', 'ASC')
->setParameter(':vendorId', $vendorId, UlidType::NAME),
])
;