-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(database): gRPC findMany() empty sort handling (#810)
* fix(database): gRPC findMany() empty sort handling This issue was caused by gRPC server implementations not allowing for undefined object values. According to the gRPC spec, any optional fields that are omitted from the request are to be coalesced with their respective type's default value. For objects, that would be an empty object. * fix(database): mongoose/sequelize schema findMany() sort types * fix(database): sequelize parseStringToQuery() arg type not accepting null queries
- Loading branch information
Showing
3 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters