graphiql
graphiql copied to clipboard
GraphiQL & the GraphQL LSP Reference Ecosystem for building browser & IDE tools.
> there was an error loading the project config for this file e: File doesn't match any project This error should be trapped and hidden on save/change. It is irrelevant....
I'm experiencing this issue after explicitly adding `graphql-ws` as a dependency. Unfortunately, I'm using Webpacker (Ruby on Rails), so I don't really have direct access to the webpack config to...
Fields maintain their original schema order in both the docs and the autocomplete suggestions (#884). But arguments are sorted alphabetically. As with fields, although the order doesn't matter functionally it...
Providing autocomplete for deep symbols would be nice. For instance if I want the following query: ```graphql { person { name } } ``` I'm suggesting typing `na`... suggests `person.name`...
[Ariadne](https://ariadnegraphql.org/) is a GraphQL server implementation for Python that is gaining traction. It uses a Schema-first approach. It would be helpful if VSCode GraphQL could support syntax highlighting of inline...
The following works fine and the autocomplete works as expected: ```js const query = /* GraphQL */ ` query GetItem($name: String!) { getItem(name: $name) { id } } `; ```...
## Actual Behavior When executing query from within the source code file, I get the error: ``` Error: graphql operation failed t: File '/Volumes/Code/portfolio-tracker-fe/src/App.js' doesn't match any project ``` ##...
This might be related to #2270? I can reliably reproduce the following. I'm using the `/* GraphQL */` comment prefixing a normal template literal (not using `gql` tag). If this...
seems it breaks my builds with ``` Module not found: Error: Can't resolve 'graphql-ws' in '/proj/node_modules/@graphiql/toolkit/esm/create-fetcher' ``` i don't use graphql-ws directly but the fetcher as described in doc ```js...
Hi, how to a execute an query with the vscode plugin? After reading the existing issues, there should be an "execute" button on top of a graphql file. This is...