Handle number types custom query
This commit is contained in:
parent
de01b684f0
commit
08f1ddddd0
|
@ -217,6 +217,9 @@ export const runLuceneQuery = (docs, query) => {
|
|||
const oneOf = match("oneOf", (docValue, testValue) => {
|
||||
if (typeof testValue === "string") {
|
||||
testValue = testValue.split(",")
|
||||
if (typeof docValue === "number") {
|
||||
testValue = testValue.map(item => Number(item))
|
||||
}
|
||||
}
|
||||
return !testValue?.includes(docValue)
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue