experimental.objectKeys() function
The experimental.objectKeys()
function is subject to change at any time.
By using this function, you accept the risks of experimental functions.
The experimental.objectKeys()
function returns an array of keys in a specified record.
Function type: Transformation
import "experimental"
experimental.objectKeys(
o: {key1: "value1", key2: "value2"}
)
// Returns [key1, key2]
Parameters
o
The record to return keys from.
Data type: Record
Examples
Return all keys in a record
import "experimental"
user = {
firstName: "John",
lastName: "Doe",
age: 42
}
experimental.objectKeys(o: user)
// Returns [firstName, lastName, age]
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.