Search by field id or name

This commit is contained in:
Eike Kettner 2021-03-01 16:51:36 +01:00
parent 18992ee374
commit f8307f77c6

View File

@ -236,7 +236,11 @@ object ItemQueryGenerator {
Select(
select(cfv.itemId),
from(cfv).innerJoin(cf, cf.id === cfv.field),
cf.cid === coll && cf.name ==== field && Condition.CompareVal(cfv.value, op, v)
cf.cid === coll && (cf.name ==== field || cf.id ==== field) && Condition.CompareVal(
cfv.value,
op,
v
)
)
}
}