Автозаполнение не работает в расширении VSCode GraphQL

#visual-studio-code #graphql

Вопрос:

Я изо всех сил пытаюсь заставить расширение VSCode GraphQL работать, точнее, его функцию автозаполнения. Я настроил расширение с URL-адресом на мой сервер GraphQL (открытие его в браузере открывает игровую площадку, которую я включил):

 //graphql.config.js
module.exports = {
  extensions: {
    endpoints: {
      default: {
        url: "http://<my_url>:3000/graphql",
      },
    },
  },
};
 

и схема, похоже, не загружается. Автозаполнение gql`` не работает, и то, что я вижу в выводе расширения,-это:

 9/25/2021, 6:52:35 PM [4] (pid: 18905) graphql-language-service-usage-logs: {"type":"usage","messageType":"initialize"}
(node:18905) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:18905) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
is in debug mode: false
is in debug mode: false
(node:18905) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 3)
[Error - 6:52:39 PM] Request textDocument/documentSymbol failed.
  Message: Request textDocument/documentSymbol failed with message: A cached document cannot be found.
  Code: -32603 
[Error - 6:52:40 PM] Request textDocument/documentSymbol failed.
  Message: Request textDocument/documentSymbol failed with message: A cached document cannot be found.
  Code: -32603 
 

Есть идеи, в чем проблема? Вся помощь признательна!