Skip to content

1.1.0

Compare
Choose a tag to compare
@timothyarmes timothyarmes released this 21 Feb 13:25
· 14 commits to master since this release

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.