-
Notifications
You must be signed in to change notification settings - Fork 66
Upgrade Notes
Jim Morrison edited this page Mar 7, 2024
·
4 revisions
Server side IN queries are now supported. However, they have the following caveats:
- IN queries with GQL are still done client side.
- server_op=True must be set on the property filter. E.g.
SomeKind.foo.IN([1, 2], server_op=True)
Server side IN queries may require different indexes than those done client side.
The server side != operator does not work with the Datastore emulator. Instead the Cloud Firestore
emulator needs to be used. Try gcloud emulators firestore start --database-mode=datastore-mode