Skip to main content

Event_bool_exp

Boolean expressions to filter Event. All fields are combined with a logical AND.

input Event_bool_exp {
_and: [Event_bool_exp!]
_not: Event_bool_exp
_or: [Event_bool_exp!]
eventTime: timestamptz_comparison_exp
machine: business_machine_bool_exp
machineRef: Int_comparison_exp
metricKey: String_comparison_exp
sequence: Int_comparison_exp
value: jsonb_comparison_exp
}

Fields

Event_bool_exp._and ● [Event_bool_exp!] list input

Combines the given expressions using a logical AND

Event_bool_exp._not ● Event_bool_exp input

Negates the result of the given expression.

Event_bool_exp._or ● [Event_bool_exp!] list input

Combines the given expressions using a logical OR.

Event_bool_exp.eventTime ● timestamptz_comparison_exp input

Event_bool_exp.machine ● business_machine_bool_exp input

The machine the event originates from.

Event_bool_exp.machineRef ● Int_comparison_exp input

A unique, numeric identifier for the machine.

Event_bool_exp.metricKey ● String_comparison_exp input

Each metric is globally identified by the combination of machineRef and metricKey.

Event_bool_exp.sequence ● Int_comparison_exp input

An integer value that determines the order of events with the same eventTime and metric.

Event_bool_exp.value ● jsonb_comparison_exp input

The value observed at the eventTime.

Member Of

Event_bool_exp input ● events query