我有一个firestore集合“users”,其中包含我要查询的以下字段:
"lat": 0.0, // some double value
"lon": 0.0, // some double value
"skills": [ // map of string to int
{
"skill": 2
}
],
"interests": [ // list of strings
"A",
"B"
]
在我的Android应用中,我计划获取符合以下查询的用户:
在firestore文档中,我遗憾地没有找到如何构建此类查询的示例/解释。