Releases: timothyarmes/apongo
Releases · timothyarmes/apongo
Bug fixes
2.0.1
Fixes an issue whereby a deep object fetch on a null object returned {} instead of null.
Dependency updates
Breaking change
Apongo now uses @graphql-tool/utils v6, which needs to be installed as a peer dependency.
1.2.0
Added sort
and limit
options to lookup, so that we can simulate a findOne
1.1.3
Bug fixes
Empty fields weren't always removed after a deep join
1.1.0
Breaking changes
A very small API change. Apongo now exports apongoDirectives
rather than apongoDirective
. Your code should be changed from:
const schema = makeExecutableSchema({
...
schemaDirectives: { apongo: apongoDirective },
});
to
const schema = makeExecutableSchema({
...
schemaDirectives: { ...apongoDirectives },
});
This modification removes any temptation to rename the directive, since its name is actually required to be apongo
by the code base.
1.0.2
Fixes
- Fixed an incorrect expectation of the JSON type.
Changes
- Improved documentation
- Added unit test framework with basic tests
1.0.1
Unfortunately 1.0.0 was released incorrectly and didn't work at all due to the GraphQL type declaration not
being exported.
This release fixes the issue and updates the documentation.