Skip to content

Commit

Permalink
Remove references to introspectionQuery which is now deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix committed Jan 3, 2020
1 parent ca1b3b7 commit 24db528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class FileSchemaProvider implements GraphQLSchemaProvider {

const ext = extname(path);

// an actual introspectionQuery result, convert to DocumentNode
// an actual introspection query result, convert to DocumentNode
if (ext === ".json") {
const parsed = JSON.parse(result);
const __schema = parsed.data
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo/src/Command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export abstract class ProjectCommand extends Command {
return JSON.stringify({ [key]: value });
},
description:
"Additional header to send to server for introspectionQuery. May be used multiple times to add multiple headers. NOTE: The `--endpoint` flag is REQUIRED if using the `--header` flag."
"Additional header to send during introspection. May be used multiple times to add multiple headers. NOTE: The `--endpoint` flag is REQUIRED if using the `--header` flag."
}),
endpoint: flags.string({
description: "The url of your service"
Expand Down

0 comments on commit 24db528

Please sign in to comment.