Fix incorrect meta query
parent
073b034c24
commit
8053d3a255
|
@ -43,9 +43,9 @@ async function findKeys(
|
||||||
|> distinct()
|
|> distinct()
|
||||||
|> keep(columns: ["_value"])${searchFilter}${previousKeyFilter}
|
|> keep(columns: ["_value"])${searchFilter}${previousKeyFilter}
|
||||||
|> filter(fn: (r) =>
|
|> filter(fn: (r) =>
|
||||||
r._value != "_time" or
|
r._value != "_time" and
|
||||||
r._value != "_start" or
|
r._value != "_start" and
|
||||||
r._value != "_stop" or
|
r._value != "_stop" and
|
||||||
r._value != "_value")
|
r._value != "_value")
|
||||||
|> sort()
|
|> sort()
|
||||||
|> limit(n: ${LIMIT})`
|
|> limit(n: ${LIMIT})`
|
||||||
|
|
Loading…
Reference in New Issue