firestoreodm-flutter icon indicating copy to clipboard operation
firestoreodm-flutter copied to clipboard

Results 22 firestoreodm-flutter issues
Sort by recently updated
recently updated
newest added

## Expected Behavior ```dart @Collection("placeA/*/subPlaceA/*/models") @Collection("placeB/*/models") final modelsRef = ModelsCollectionReference(); ``` I would receive the same model from both collections. ## Actual Behavior I get error: ``` Defined a collection...

When I try to create a collection with nested collection without wildcard, like so: ``` @Collection('users/*/task/dataExtraction') ``` I get the following error: ``` [SEVERE] cloud_firestore_odm_generator on lib/database/model.dart: The annotation @Collection...

## Expected Behavior Hello, I connect to a same collection in different pages in my application. I use the FiresoreBuilder as so, in each page which need data from this...

When using `flutter pub run build_runner` a warning message hint that this command is deprecated and we should now use `dart run build_runner`.

## Expected Behavior Using whereIn to filter by document IDs with cloud_firestore_odm should work similarly to cloud_firestore, allowing queries to be made based on a list of document IDs without...

## Bug report cloud_firestore: ^4.15.6 cloud_firestore_odm: ^1.0.0-dev.83 cloud_firestore_odm_generator: ^1.0.0-dev.83 With the above versions of dependencies, I have generated the cloud firestore code using code generation plugin for my schema. child:...

I added a convenient API for using batch operations similar to the transaction API.

Just like we have the transaction API, it'll be useful to also have a batch API in the odm that works in a similar way, e.g: ```dart // Today's transaction...

In our project we have a collection that has quite a few sub-collections, some of them also have quite a few sub-collections, etc. Today all this collection subtree has to...

## Scenario Let's say you have a reference to a document and you want to either create the doc if it doesn't exist or update it (including deleting a field...