#Firestoreでのクエリ条件文
リファレンスに対して.where .orderBy等を実行すればよい。
sql文わかっているなら簡単
##例
//参照しているリファレンスのdateの降順にする
reference.orderBy('date','desc')
//参照しているリファレンスの中のcolorがwhiteであるものだけを取得
reference.where('color','==','white')
Go to list of users who liked
More than 3 years have passed since last update.
#Firestoreでのクエリ条件文
リファレンスに対して.where .orderBy等を実行すればよい。
sql文わかっているなら簡単
##例
//参照しているリファレンスのdateの降順にする
reference.orderBy('date','desc')
//参照しているリファレンスの中のcolorがwhiteであるものだけを取得
reference.where('color','==','white')
Register as a new user and use Qiita more conveniently
Go to list of users who liked