op property
The unary operator to apply. Possible string values are:
- "OPERATOR_UNSPECIFIED" : Unspecified. This value must not be used.
- "IS_NAN" : The given
field
is equal toNaN
. - "IS_NULL" : The given
field
is equal toNULL
. - "IS_NOT_NAN" : The given
field
is not equal toNaN
. Requires: * No otherNOT_EQUAL
,NOT_IN
,IS_NOT_NULL
, orIS_NOT_NAN
. * Thatfield
comes first in theorder_by
. - "IS_NOT_NULL" : The given
field
is not equal toNULL
. Requires: * A singleNOT_EQUAL
,NOT_IN
,IS_NOT_NULL
, orIS_NOT_NAN
. * Thatfield
comes first in theorder_by
.
Implementation
core.String? op;