Within the Google Search Console Datastream settings, users can apply dimension filters as per the Google documentation.
Currently it is possible to apply "AND" operators when defining conditions, but not yet "OR".
The below filter would retrieve rows which are "TRUE" for both Device and Query conditions (Device = Mobile AND Query = Display).
[
{
"operator": "equals",
"expression": "Mobile",
"dimension": "device"
},
{
"operator": "equals",
"expression": "Display",
"dimension": "query"
}
]
Google's own documentation states the following for dimensionFilterGroups-string:
"Whether all filters in this group must return true ("and"), or one or more must return true (not yet supported). Acceptable values are:"and": All filters in the group must return true for the filter group to be true."
Comments
0 comments
Article is closed for comments.