0
是否有任何查詢函數在firestore中獲取不同的結果?針對不同結果的查詢函數在firestore中
例如:
Query query = colRef.orderBy("title")
.startAt("R")
.limit(10);
這給了我所有以「標題」開始與「R」包含重複這樣的文件,:
Recording
Running
Running
Running
我怎樣才能得到一個不同的結果像這樣:
Recording
Running
的可能的複製https://stackoverflow.com/questions/35170616/firebase-and-select-distinct – R2R