Skip to content

Releases: arackaf/mongo-graphql-starter

0.6.3

01 Feb 00:16
Compare
Choose a tag to compare

Add manual query args to get endpoint.

Remove same from filters input (or what gets passed to OR).

Small code cleanup.

0.6.2

01 Feb 00:16
Compare
Choose a tag to compare

0.6.2 Improved error messages for Mongo operations, and lifecycle hook processing.

0.6.1

01 Feb 00:16
Compare
Choose a tag to compare

Small bug fix for ADDTOSET

0.6.0

01 Feb 00:15
Compare
Choose a tag to compare

ADDTOSET mutation added for primitive array types. See the docs for more info.

For arrays of other types, the updates argument is now called Updates rather than _Update. For example

comments_UPDATE: {index: 0, Updates: { upVotes_INC: 1 } }

instead of

comments_UPDATE: {index: 0, Comment: { upVotes_INC: 1 } }

This is a breaking change, hence the minor version bump.

0.5.0

02 Jan 05:52
Compare
Choose a tag to compare

Bulk updates, multi updates, and a slightly different update arg for single updates, which is why I bumped the minor version on this one.

That should be the only breaking change, though. For single updates, the <Type> argument is now Updates.

0.4.7

25 Dec 21:03
Compare
Choose a tag to compare

Bug fixes, and an @std/esm upgrade.

0.4.6

24 Dec 22:10
Compare
Choose a tag to compare

Count filter for array types

0.4.5

11 Dec 00:16
Compare
Choose a tag to compare

Tweak schema generation for manual query args

0.4.4

11 Dec 00:09
Compare
Choose a tag to compare

Add custom query args

0.4.3

10 Dec 22:34
Compare
Choose a tag to compare

containsAny filters added for int, float, and string arrays.