Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.14 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.14 KB

vscode-graphql

Syntax highlighting, diagnostics, autocomplete, and go to definition for .graphql files.

Features

  • Syntax highlighting
  • Autocomplete
  • Go to definition
  • Error diagnostics

Autocomplete, go to definition, and diagnostics are language server features supported by the graphql-language-service.

Installation

  1. Install stpn.vscode-graphql from the marketplace
  2. Install watchman, if using language service features (see below).

Watchman is currently a dependency of graphql-language-service. See issue #8.

Configuration

To turn on language server features, you can enable the graphql.useLanguageServer flag in your settings.

Using the language server will require a schema to be specified via a .graphqlconfig file.

Example:

{
  "schemaPath": "./schema.json"
}

See here for other ways to provide a GraphQL schema.