VSCODE中的Graphql文件路径自动完成

时间:2019-11-29 18:21:12

标签: javascript typescript visual-studio-code graphql

好像我的vscode拒绝在.graphql文件导入路径上给我自动补全…你知道为什么吗?{error

我已激活特定的Gql扩展程序...

Name: GraphQL for VSCode
Id: kumar-harsh.graphql-for-vscode
Description: GraphQL syntax highlighting, linting, auto-complete, and more!
Version: 1.15.3
Publisher: Kumar Harsh
VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=kumar-harsh.graphql-for-vscode

也定义TS

declare module '*/get-course.gql' {
  import { DocumentNode } from 'graphql';
  const defaultDocument: DocumentNode;
  export const GetCourses: DocumentNode;

  export default defaultDocument;
}

它也不会在js文件中提供自动完成功能…

提前谢谢……

2 个答案:

答案 0 :(得分:1)

我知道这是一个将近 2 年前的问题,但我刚刚遇到了同样的问题。

我只是想为有同样问题的人发布答案。

安装这个非常流行的 Path Intellisense~5M 下载)插件解决了我的问题,VSCode 开始显示我的 graphql 文件的自动完成。

安装插件前enter image description here

安装插件后enter image description here

答案 1 :(得分:0)

.graphql文件类型不包含在默认vs代码自动完成插件中。

您可以安装GraphQL pyramida.vscode-graphql或类似插件来实现此目的。