Fix incorrect meta query

pull/11173/head
Brandon Farmer 2019-01-16 14:39:39 -08:00
parent 073b034c24
commit 8053d3a255
1 changed files with 3 additions and 3 deletions

View File

@ -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})`