This repository was archived by the owner on Sep 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ mock_db.collection('users').order_by('born').get()
6969mock_db.collection(' users' ).order_by(' born' , direction = ' DESCENDING' ).get()
7070mock_db.collection(' users' ).limit(5 ).get()
7171mock_db.collection(' users' ).where(' born' , ' ==' , 1815 ).get()
72+ mock_db.collection(' users' ).where(' born' , ' !=' , 1815 ).get()
7273mock_db.collection(' users' ).where(' born' , ' <' , 1815 ).get()
7374mock_db.collection(' users' ).where(' born' , ' >' , 1815 ).get()
7475mock_db.collection(' users' ).where(' born' , ' <=' , 1815 ).get()
@@ -125,3 +126,7 @@ transaction.commit()
125126* [ Kristof Krenn] ( https://github.com/KrennKristof )
126127* [ Ben Phillips] ( https://github.com/tavva )
127128* [ Rene Delgado] ( https://github.com/RDelg )
129+ * [ klanderson] ( https://github.com/klanderson )
130+ * [ William Li] ( https://github.com/wli )
131+ * [ Ugo Marchand] ( https://github.com/UgoM )
132+ * [ Bryce Thornton] ( https://github.com/brycethornton )
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "mock-firestore" ,
8- version = "0.10 .0" ,
8+ version = "0.11 .0" ,
99 author = "Matt Dowds" ,
1010 description = "In-memory implementation of Google Cloud Firestore for use in tests" ,
1111 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments