v0.8.1
Bug Fixes:
This release introduces a new CompilerOption useExperimentalPathBasedSkipInclude
. If you have multiple "fragment spreads" pointing to the same fragment and use skip include inside the fragment, it is recommended to use this option to avoid a bug. In future releases, this option will be removed when it becomes the default.
For example,
const compiledQuery = compileQuery(
schema, ast, operationName,
{
useExperimentalPathBasedSkipInclude: true
}
);