1
0
Fork 0
mirror of synced 2024-07-08 07:46:10 +12:00
This commit is contained in:
Peter Clement 2021-08-25 19:25:57 +01:00
parent 078cb07b04
commit 91d5308d99

View file

@ -229,7 +229,10 @@ class QueryBuilder {
if (!value) { if (!value) {
return null return null
} }
return `${key}.${value}:${builder.preprocess(value, allPreProcessingOpts)}` return `${key}.${value}:${builder.preprocess(
value,
allPreProcessingOpts
)}`
}) })
} }
@ -238,7 +241,10 @@ class QueryBuilder {
if (!value) { if (!value) {
return null return null
} }
return `!${key}.${value}:${builder.preprocess(value, allPreProcessingOpts)}` return `!${key}.${value}:${builder.preprocess(
value,
allPreProcessingOpts
)}`
}) })
} }