Values for the modifier. All operators should have a single value other than 'IN' and 'BETWEEN'. 'PAST' will have negative seconds like -86400 is past 1 day.
FilterOperator
Enums
FILTER_OPERATOR_UNSPECIFIED
Default unspecified.
EQUAL
NOT_EQUAL
IN
GREATER_THAN
GREATER_THAN_OR_EQUAL_TO
LESS_THAN
LESS_THAN_OR_EQUAL_TO
BETWEEN
PAST
IS_NULL
IS_NOT_NULL
STARTS_WITH
ENDS_WITH
DOES_NOT_STARTS_WITH
DOES_NOT_ENDS_WITH
NOT_IN
CONTAINS
CONTAINS is used for substring match.
DOES_NOT_CONTAIN
Used if we want to check if the field does not contain the substring.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-25 UTC."],[[["\u003cp\u003eThe JSON representation defines a filter operation using a \u003ccode\u003efilter_operator\u003c/code\u003e and an array of \u003ccode\u003efield_values\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003efilter_operator\u003c/code\u003e field specifies the type of filtering operation, referencing the \u003ccode\u003eFilterOperator\u003c/code\u003e enum.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003efield_values\u003c/code\u003e field contains string values used in the filter, with most operators requiring a single value except for 'IN' and 'BETWEEN'.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eFilterOperator\u003c/code\u003e enum defines various operators such as \u003ccode\u003eEQUAL\u003c/code\u003e, \u003ccode\u003eNOT_EQUAL\u003c/code\u003e, \u003ccode\u003eIN\u003c/code\u003e, \u003ccode\u003eGREATER_THAN\u003c/code\u003e, \u003ccode\u003eLESS_THAN\u003c/code\u003e, \u003ccode\u003eBETWEEN\u003c/code\u003e, \u003ccode\u003ePAST\u003c/code\u003e, \u003ccode\u003eIS_NULL\u003c/code\u003e, and more.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ePAST\u003c/code\u003e operator will use negative numbers in seconds such as -86400 to denote one day in the past.\u003c/p\u003e\n"]]],[],null,["# FilterOperatorAndValues\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [FilterOperator](#FilterOperator)\n\nFilterOperator\n--------------"]]