Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.77 KB

File metadata and controls

39 lines (27 loc) · 1.77 KB

GeoMentionsSearchRequestFilters

Filter the matched mentions. Provide a single condition {"field","op","value"} or an {"and":[…]} / {"or":[…]} group of conditions (nest groups for mixed logic), up to 8 conditions. Operators: =, <>, <, <=, >, >=, in, not_in, like, not_like, ilike, not_ilike, match, not_match (use an array value with in / not_in). Filterable fields: ai_search_volume (monthly AI search volume); platform (LLM engine, e.g. chat_gpt, google, perplexity); model (model name that produced the answer). Example: {"and":[{"field":"ai_search_volume","op":">","value":1000},{"field":"platform","op":"=","value":"chat_gpt"}]}

Properties

Name Type Description Notes
field String Field to filter on. See the endpoint's list of filterable fields.
op OpEnum Comparison operator.
value DataForSeoFilterValue
and List<DataForSeoFilter> Sub-expressions that must all match.
or List<DataForSeoFilter> Sub-expressions where at least one must match.

Enum: OpEnum

Name Value
EQUAL "="
NOT_EQUAL "<>"
LESS_THAN "<"
LESS_THAN_OR_EQUAL_TO "<="
GREATER_THAN ">"
GREATER_THAN_OR_EQUAL_TO ">="
IN "in"
NOT_IN "not_in"
LIKE "like"
NOT_LIKE "not_like"
ILIKE "ilike"
NOT_ILIKE "not_ilike"
MATCH "match"
NOT_MATCH "not_match"