We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19ff743 commit 6ca972eCopy full SHA for 6ca972e
1 file changed
packages/apollo-cli/src/commands/queries/check.ts
@@ -126,7 +126,7 @@ export default class CheckQueries extends Command {
126
127
return tasks.run().then(async ({ changes }) => {
128
const failures = changes.filter(
129
- ({ type }: Change) => type === ChangeType.FAILURE
+ ({ type }: { type: ChangeType }) => type === ChangeType.FAILURE
130
);
131
const exit = failures.length > 0 ? 1 : 0;
132
if (flags.json) {
0 commit comments