There is no documentation how to find all documents in objectdb flutter ?
Asked
Active
Viewed 485 times
1 Answers
2
Have you tried this?
final documents = db.find({});
That is find()
method, but with empty map as a first argument. This query
argument is a list of conditions that a document has to meet. When there is no conditions - every document meets them!

Albert221
- 5,223
- 5
- 25
- 41