我想知道 Keen IO 查询中的过滤器是否可以作为“或”完成。
基本上,我有一个名为“product_type”的“列”(事件属性)。
我想生成一个 API 查询 URL,该 URL 具有一个带有“如果 product_type 等于 x 或 product_type 等于 y”的过滤器的提取。
但是现在,如果我做这样的过滤器,它总是“与”。
使用“in”运算符。这个“in”运算符将识别属性等于列表中任何值的任何事件,如下所示:
var extraction = new Keen.Query("extraction", {
event_collection: "purchases",
timeframe: "this_14_days",
filters: [
{
property_name: "product_type",
operator: "in",
property_value: ["x","y"]
}
]
});
这是所有可用过滤器运算符的方便列表。