Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Upcoming

- `apollo`
- <First `apollo-codegen-core` related entry goes here>
- Relax graphql version, resolve missing types "Boolean", "String" [#1355](https://github.com/apollographql/apollo-tooling/pull/1355)
- `apollo-codegen-core`
- <First `apollo-codegen-core` related entry goes here>
- `apollo-codegen-flow`
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/apollo-language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"cosmiconfig": "^5.0.6",
"dotenv": "^8.0.0",
"glob": "^7.1.3",
"graphql": "~14.2.1",
"graphql": "14.0.2-14.2.0 || ^14.3.1",
Comment thread
trevor-scheer marked this conversation as resolved.
Outdated
"graphql-tag": "^2.10.1",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.1",
Expand Down
12 changes: 2 additions & 10 deletions packages/apollo-language-server/src/providers/schema/engine.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
// EngineSchemaProvider (engine schema reg => schema)
import { NotificationHandler } from "vscode-languageserver";

import gql from "graphql-tag";

import {
GraphQLSchema,
buildClientSchema,
IntrospectionSchema,
IntrospectionQuery
} from "graphql";

import { GraphQLSchema, buildClientSchema } from "graphql";
import { ApolloEngineClient, ClientIdentity } from "../../engine";
import { ClientConfig, parseServiceSpecifier } from "../../config";
import {
Expand Down Expand Up @@ -101,7 +93,7 @@ export const SCHEMA_QUERY = gql`
subscriptionType {
name
}
types {
types(filter: { includeBuiltInTypes: true }) {
...IntrospectionFullType
}
directives {
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"git-parse": "1.0.3",
"git-rev-sync": "1.12.0",
"glob": "7.1.4",
"graphql": "~14.2.1",
"graphql": "14.0.2-14.2.0 || ^14.3.1",
Comment thread
trevor-scheer marked this conversation as resolved.
Outdated
"graphql-tag": "2.10.1",
"heroku-cli-util": "8.0.11",
"listr": "0.14.3",
Expand Down