@graphql-inspector/cli
Version:
Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.
11 lines (10 loc) • 372 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.findChangesByPath = findChangesByPath;
exports.findFirstChangeByPath = findFirstChangeByPath;
function findChangesByPath(changes, path) {
return changes.filter(c => c.path === path);
}
function findFirstChangeByPath(changes, path) {
return findChangesByPath(changes, path)[0];
}
;