701 B
701 B
title | seotitle | list_title | description | influxdb/cloud/tags | menu | weight | related | list_code_example | source | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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) ``` | /shared/influxdb-v2/query-data/flux/exists.md |