566 B
566 B
title | seotitle | list_title | description | influxdb/cloud/tags | menu | weight | related | list_code_example | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Check if a value exists | Use Flux to check if a value exists | Exists | Use the Flux `exists` operator to check if a record contains a key or if that key's value is `null`. |
|
|
220 |
|
##### Filter null values ```js data |> filter(fn: (r) => exists r._value) ``` |
{{< duplicate-oss >}}