We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd7b56b commit a12eab0Copy full SHA for a12eab0
1 file changed
packages/apollo/src/commands/service/check.ts
@@ -422,7 +422,6 @@ export default class ServiceCheck extends ProjectCommand {
422
gitContext: await gitInfo(this.log),
423
frontend: flags.frontend || config.engine.frontend,
424
...(historicParameters && { historicParameters }),
425
- // `variables` will either contain `schemaHash` or `schema`, not both.
426
...schemaCheckSchemaVariables
427
};
428
@@ -432,6 +431,9 @@ export default class ServiceCheck extends ProjectCommand {
432
431
if (schema) {
433
this.debug("SDL of introspection sent to Engine:");
434
this.debug(printSchema(schema));
+ } else {
435
+ this.debug("Schema hash generated:");
436
+ this.debug(schemaCheckSchemaVariables);
437
}
438
439
const newContext: typeof ctx = {
0 commit comments