UNPKG

@graphql-inspector/cli

Version:

Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.

7 lines (6 loc) 207 B
export function findChangesByPath(changes, path) { return changes.filter(c => c.path === path); } export function findFirstChangeByPath(changes, path) { return findChangesByPath(changes, path)[0]; }