We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 052d842 commit b254b3dCopy full SHA for b254b3d
1 file changed
packages/apollo/src/commands/queries/extract.ts
@@ -59,7 +59,7 @@ export default class ExtractQueries extends Command {
59
task: (ctx, task) => {
60
const filename = args.output;
61
task.title = "Outputing extracted queries to " + filename;
62
- writeFileSync(filename, JSON.stringify(ctx.manifest));
+ writeFileSync(filename, JSON.stringify(ctx.manifest, null, 2));
63
}
64
65
]);
0 commit comments