0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Firestoreひと言メモ(クエリ)

Posted at

#Firestoreでのクエリ条件文
リファレンスに対して.where .orderBy等を実行すればよい。
sql文わかっているなら簡単

##例

//参照しているリファレンスのdateの降順にする
reference.orderBy('date','desc')

//参照しているリファレンスの中のcolorがwhiteであるものだけを取得
reference.where('color','==','white')

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?