我有MongoDB作为数据源。我想在redash中查询以下内容:-
db.collection.find({“templateId”:/XYZ$/})
此查询返回键templateId
以字符串XYZ结尾的集合中的所有数据。如何在Redash JSON中使用相同的内容?
还请帮助在Redash中使用$ exist。
答案 0 :(得分:0)
在这里搜索相同的问题。
在我看来,下一个管道步骤有效:
{"$match": {"templateId": {"$regex": "XYZ$"}}}
答案 1 :(得分:0)
我将这个示例与 Redash 一起使用。
{
"collection": "Users",
"query": {
"Phone": {
"$regex": "1234$"
}
}
}