Skip to content

Releases: graphql-compose/graphql-compose-mongoose

1.0.10 (August 25, 2016)

25 Aug 15:04

Choose a tag to compare

  • Resolvers findOne and findById now by default return object with data, not mongoose document.

1.0.9 (August 15, 2016)

15 Aug 13:43

Choose a tag to compare

1.0.8 (August 13, 2016)

13 Aug 12:34

Choose a tag to compare

  • fix: babel build process

1.0.7 (August 10, 2016)

10 Aug 10:06

Choose a tag to compare

  • Update packages, add babel-plugin-transform-runtime for build process. Fix issue for vanilla node.js users without babel (thanks @jacobbubu).

1.0.6 (August 8, 2016)

08 Aug 12:54

Choose a tag to compare

  • Fix projection extraction from record for updateById and updateOne resolvers.
  • Intermediate types now passed to TypeStorage (Enums, SubSchemas) when converting mongoose models.

1.0.5 (July 22, 2016)

22 Jul 10:47

Choose a tag to compare

1.0.5 (July 22, 2016)

  • Added typeStorage. If you create resolver on the second time, it should reuse existed internal types

1.0.4 (July 20, 2016)

20 Jul 17:27

Choose a tag to compare

  • expose fieldsConverter methods
  • fix filterHelper: if filter InputType without fields, then do not add it to args
  • fix projectionHelper: make projection flat, before passing to mongoose
  • add convertSchemaToGraphQL method for creating cached graphql type from MongooseSchema

1.0.3 (July 18, 2016)

18 Jul 16:19

Choose a tag to compare

  • HotFix for connection resolver
  • HotFix for operators' types in filter helper

1.0.1 (July 18, 2016)

18 Jul 15:24

Choose a tag to compare

  • Fix peerDependencies
  • Update flow till 0.29
  • Other small fixes

1.0.0 (July 15, 2016)

15 Jul 06:28

Choose a tag to compare

Production ready release.

What's new:

  • add connection resolver
  • add support for filtering with operators $gt, $gte, $lt, $lte, $ne, $in, $nin
  • small fixes