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.