Kapacitor - Pass all fields to changeDetect Node

Hello everybody!

I am using Influxdb to store measurements. I am only interested at changes on all input fields.
Is there a function or a mechanism to pass all available fields to the changeDetect()?
Something like that:

[...]
    |changeDetect(*)
[...]

The current tickscript is:

stream
    |from()
        .measurement('data')
    |changeDetect('state')
    |influxDBOut()
        .database('test')
        .measurement('onlyChanges')