As you can see by this related question, it is possible to either chain or append your clauses to the query reference:
// option 1
const ref = admin.firestore().collection('collectionName')
const query = ref.where('foo', '==', 'bar').where('baz', ==, 'buz')
query.get()
.then(snapshot => {
snapshot.forEach(res => console.log(res.data())
})
// option 2
const ref = admin.firestore().collection('collectionName')
const query = ref.where('foo', '==', 'bar')
query.where('biz', <=, 5)
query.where('zaz', ==, 9)
query.get()
.then(snapshot => {
snapshot.forEach(res => console.log(res.data())
})