You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: fieldConfig validation moved from `astToSchema()` to `directory…
…ToAst()` method.
BREAKING CHANGE: FieldConfig is now stored in AST.fieldConfig property and is used as mutable value (every ast transformer use this value and may change it).
refactor: rename `relativePath` to `rootDir` like in typescript manner
BREAKING CHANGE: in `directoryToAst(module, opts)` was renamed option `relativePath` to `rootDir`
refactor: rename `relativePath` to `rootDir` like in typescript manner
BREAKING CHANGE: in `directoryToAst(module, opts)` was renamed option `relativePath` to `rootDir`
feat(astVisitor): add VisitInfo utility class which returns `node` in…
…fo and useful methods for writing middlewares
BREAKING CHANGE: `astVisitor` function now requires `schemaComposer` as the second argument. `VisitKindFn` now provide just one new argument `info: VisitInfo`.