|
1 | 1 | ## master
|
2 | 2 |
|
| 3 | +## 1.0.6 (August 8, 2016) |
| 4 | +- Fix `projection` extraction from `record` for `updateById` and `updateOne` resolvers. |
| 5 | +- Intermediate types now passed to TypeStorage (Enums, SubSchemas) when converting mongoose models. |
| 6 | + |
3 | 7 | ## 1.0.5 (July 22, 2016)
|
4 | 8 | - Added typeStorage. If you create resolver in second time, it should reuse existed internal types
|
5 | 9 |
|
6 | 10 | ## 1.0.4 (July 20, 2016)
|
7 |
| -* expose `fieldsConverter` methods |
8 |
| -* fix filterHelper: if `filter` InputType without fields, then do not add it to args |
9 |
| -* fix projectionHelper: make projection flat, before passing to mongoose |
10 |
| -* add `convertSchemaToGraphQL` method for creating cached graphql type from MongooseSchema |
| 11 | +* Expose `fieldsConverter` methods |
| 12 | +* Fix filterHelper: if `filter` InputType without fields, then do not add it to args |
| 13 | +* Fix projectionHelper: make projection flat, before passing to mongoose |
| 14 | +* Add `convertSchemaToGraphQL` method for creating cached graphql type from MongooseSchema |
11 | 15 |
|
12 | 16 | ## 1.0.3 (July 18, 2016)
|
13 | 17 | * HotFix for connection resolver
|
|
19 | 23 | * Other small fixes
|
20 | 24 |
|
21 | 25 | ## 1.0.0 (July 15, 2016)
|
22 |
| -* add connection resolver |
23 |
| -* add support for filtering with operators $gt, $gte, $lt, $lte, $ne, $in, $nin |
24 |
| -* small fixes |
| 26 | +* Add connection resolver |
| 27 | +* Add support for filtering with operators $gt, $gte, $lt, $lte, $ne, $in, $nin |
| 28 | +* Small fixes |
25 | 29 |
|
26 | 30 | ## 0.0.6 (July 08, 2016)
|
27 |
| -* rename `input` argument to `record` for mutations (due `graphql-compose-relay` compatibility). |
| 31 | +* Rename `input` argument to `record` for mutations (due `graphql-compose-relay` compatibility). |
28 | 32 | `input` is a reserved name for mutations' arg in Relay, and may contains not only document/record data (eg. clientMutationId, sort and filter args). So better solution for `graphql-compose-mongoose` do not use this name, cause `graphql-compose-relay` get all args from mongoose resolvers and put them to `input` arg.
|
29 | 33 |
|
30 | 34 | ## 0.0.5 (July 07, 2016)
|
31 |
| -* refactor Resolvers due changes in graphql-compose api |
32 |
| -* exports flow annotations |
| 35 | +* Refactor Resolvers due changes in graphql-compose api |
| 36 | +* Exports flow annotations |
33 | 37 |
|
34 | 38 | ## 0.0.3 (July 01, 2016)
|
35 | 39 | * First beta version
|
|
0 commit comments