-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfixes, forwarding to nested LSP projects (#173)
Co-authored-by: Jerel Miller <[email protected]>
- Loading branch information
1 parent
0a518b1
commit 415ff4a
Showing
26 changed files
with
1,622 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"vscode-apollo": patch | ||
--- | ||
|
||
Fix a bug where when rapidly changing multiple files some of the changes might have gotten lost. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
"vscode-apollo": patch | ||
--- | ||
|
||
Fixed a bug where hints on the 0-th line of an embedded GraphQL document were offset incorrectly. | ||
|
||
|
||
E.g. in | ||
```js | ||
const veryLongVariableName = gql`type Foo { baaaaaar: String }` | ||
``` | ||
the hover on `String` would only appear when hovering characters left of it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ gql` | |
} | ||
} | ||
`; | ||
|
||
// prettier-ignore | ||
const verylonglala = gql`type Foo { baaaaaar: String }` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
rover: {}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
""" | ||
The query type, represents all of the entry points into our object graph | ||
""" | ||
type Query { | ||
me: User! | ||
} | ||
|
||
""" | ||
Test | ||
""" | ||
type User { | ||
id: ID! | ||
name: String! | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import gql from "graphql-tag"; | ||
|
||
sdfsdfs; | ||
gql` | ||
""" | ||
The query type, represents all of the entry points into our object graph | ||
""" | ||
type Query { | ||
me: User! | ||
} | ||
""" | ||
Test | ||
""" | ||
type User { | ||
id: ID! | ||
name: String! | ||
} | ||
`; | ||
|
||
console.log("foobar!"); | ||
|
||
gql` | ||
type User { | ||
lastName: String! | ||
} | ||
`; | ||
|
||
// prettier-ignore | ||
const verylonglala = gql`type Foo { baaaaaar: String }` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,9 @@ | |
}, | ||
{ | ||
"path": "localSchemaArray" | ||
}, | ||
{ | ||
"path": "rover" | ||
} | ||
], | ||
"settings": {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.