🔥 【Firebase】配列に含まれる特定のフィールドを取得する
作成日: 2021/04/16
0
  • where-inを使用する。
firebase
      .firestore()
      .collection("blogs")
      .where("type", "in", ["tweet", "podcast"] )
      .get()

参考記事:https://nabettu.hatenablog.com/entry/array-contains-any


engineer/JavaScript/TypeScript/Vue/Nuxt🦒