firestoreodm-flutter
firestoreodm-flutter copied to clipboard
## Expected Behavior I would like to propose to add back the ability to have different collections on different files. The reason this was added can be related to this...
This is just a silly little bug, not high priority or anything at all, but I figured might as well open an issue on it. ## Expected Behavior The @Id()...
## Expected Behavior ODM can handle spaces in collection ids. The official restrictions on collection ids are documented here: https://firebase.google.com/docs/firestore/quotas#limits ## Actual Behavior ODM refuses to generate code when a...
## Minimal reproducible code ```dart import 'package:cloud_firestore_odm/cloud_firestore_odm.dart'; import 'package:json_annotation/json_annotation.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; part 'human.g.dart'; enum Gender { male, female, other, } class Human { Human({ required this.id, required this.gender, }); final...
This issue is for tracking the various query "edge-cases" that are probably worth documenting The following is a non-exhaustive list of points to cover: .orderBy().startAt().orderBy() The issue: orderBy cannot be...
> Moved from: https://github.com/firebase/flutterfire/issues/11236 Related to https://github.com/firebase/flutterfire/issues/11228 Currently, if the model & collection reference are in different files, we'll get a compilation error. This is a known limitation, but we...
> Moved to: https://github.com/firebase/flutterfire/issues/9428 I have modified the [movies model class] as below. The comments field is a nested list now. (https://github.com/firebase/flutterfire/blob/master/packages/cloud_firestore_odm/cloud_firestore_odm/example/lib/movie.dart) ``` import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:cloud_firestore_odm/cloud_firestore_odm.dart'; import 'package:json_annotation/json_annotation.dart'; part...
> Moved from: https://github.com/firebase/flutterfire/issues/8338 ## Bug report When having a field with a type enum, the ODM generator automagically produces code to store or retrieve the values (technically as a...
Add a `@Document(path)` _Originally posted by @CiriousJoker in https://github.com/FirebaseExtended/flutterfire/discussions/7475#discussioncomment-1795752_ From https://github.com/firebase/flutterfire/issues/7582
copied from https://github.com/firebase/flutterfire/issues/11939 > Hello Flutterfire Community, > > I am currently working on a project that extensively uses cloud_firestore_odm, and have come across a scenario wherein I would like...