Select specific field(s) from firebase with firestore

hello everybody
I have a database on firebase. All the documents content the same fields : id, date,secondes, distance.
Is it possible with the extension “Firestore” to create a query to get only two fields (id, distance) from all the documents.
Best regards
Phil

Try this db.collection(<collection_name>).select(‘id’,‘distance’).get()