Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

graphql-lsp lacks dependencies and fails silently, whether installed globally with npm/yarn #3214

Closed
dcunited001 opened this issue Jun 5, 2023 · 5 comments
Labels
enhancement lsp-server graphql-language-service-server

Comments

@dcunited001
Copy link

dcunited001 commented Jun 5, 2023

Current Behavior (if applicable)

installing with npm install -g graphql-language-service-cli vscode-language-server doesn't seem to satisfy dependences. the binary fails, but gives no error whatsoever.

  • what do i need to do to run an LSP process in a docker container, preferably making available to my editor over HTTPS/TCP without needing to share the editor file system? is this possible or am i an idiot?

I understand that I could just run graphiql and I may do this, but can I do that from a docker container? The reason I don't is because I know how my editor handles secrets and I don't want to know how this application does that. I'll be using it for the Github API and maybe some other API's.

I do not want to have to have nodejs on my system, except in a docker container. This is because I use two linux distributions, one of them being Guix, so when I depend on X scripting language, I have to configure it twice.

Dockerfile

#FROM node:18-bullseye
FROM node:18-alpine

RUN apk update --no-cache &&\
    apk upgrade --no-cache &&\
    apk add --no-cache bash

ENV NODE_VERSION=18.16.0
ENV YARN_VERSION=1.22.19
ENV NPM_VERSION=9.5.1

WORKDIR /opt/gql

RUN npm install -g graphql-language-service-cli vscode-languageserver

EXPOSE 8080

ENV REACT_APP_DISABLE_LIVE_RELOAD=true

VOLUME /opt/gql/schema

CMD ["/bin/bash"]

initializing the container with:

lvol=$(pwd)/gql/schema/
#lvol=$(pwd)/gql/
cvol=/opt/gql/schema
#cvol=/opt/gql
gql_config=.
gql_schema=./schema.sdl
gql_image=dc/graphql-lsp
gql_cntr=dc-graphql-lsp
docker run -it --rm --mount type=bind,src=$lvol,dst=$cvol --name $gql_cntr $gql_image

and any command containing graphql-lsp server fails without an error in the Docker container and on my Arch system as well.

Desired Behavior

strace indicates the application fails because it's trying to find dependencies that don't seem to be specified in the graphql-language-service-cli:

mmap(0x4cc2e640000, 520192, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x4cc2e640000
munmap(0x4cc2e680000, 258048)           = 0
mprotect(0x4cc2e640000, 262144, PROT_READ|PROT_WRITE) = 0
futex(0x55b7d645b824, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x55b7d645b80c, FUTEX_WAIT_PRIVATE, 3, NULL) = 0
futex(0x55b7d645b820, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x55b7d645b7d0, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x55b7d645b820, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x55b7d645b7d0, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x55b7d645b820, FUTEX_WAKE_PRIVATE, 1) = 1
mmap(0xd3841140000, 520192, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0xd3841140000
munmap(0xd3841180000, 258048)           = 0
mprotect(0xd3841140000, 262144, PROT_READ|PROT_WRITE) = 0
mmap(0x181e10580000, 520192, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x181e10580000
munmap(0x181e105c0000, 258048)          = 0
mprotect(0x181e10580000, 262144, PROT_READ|PROT_WRITE) = 0
mmap(0x3dd959880000, 520192, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x3dd959880000
munmap(0x3dd9598c0000, 258048)          = 0
mprotect(0x3dd959880000, 262144, PROT_READ|PROT_WRITE) = 0
futex(0x7ffd6216ba60, FUTEX_WAKE_PRIVATE, 1) = 0
mmap(0x14e7a4980000, 520192, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x14e7a4980000
munmap(0x14e7a49c0000, 258048)          = 0
mprotect(0x14e7a4980000, 262144, PROT_READ|PROT_WRITE) = 0
futex(0x55b7d68586e0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, FUTEX_BITSET_MATCH_ANY) = -1 EAGAIN (Resource temporarily unavailable)
futex(0x55b7d6858668, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x55b7d645b824, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x55b7d645b7d0, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x7f2a9c7f1ba0, FUTEX_WAKE_PRIVATE, 1) = 1
getpid()                                = 1507106
futex(0x7f2a9c7f1ba0, FUTEX_WAKE_PRIVATE, 1) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/Logger", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216cad0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/Logger.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=686, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/Logger.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=686, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/Logger.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=686, ...}) = 0
read(21, "\"use strict\";\nObject.definePrope"..., 686) = 686
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/startServer", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d5a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/startServer.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7606, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/startServer.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7606, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/startServer.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7606, ...}) = 0
read(21, "\"use strict\";\nvar __createBindin"..., 7606) = 7606
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d0c0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d0c0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/package.json", O_RDONLY|O_CLOEXEC) = 21
pread64(21, "{\n\t\"name\": \"vscode-jsonrpc\",\n\t\"d"..., 32768, 0) = 1944
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d0c0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/node.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=218, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/node.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/node.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
read(21, "/* -----------------------------"..., 408) = 408
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=218, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/main", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216cc10) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/main.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=9778, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=34, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=60, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/main.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=9778, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/main.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=9778, ...}) = 0
read(21, "\"use strict\";\nvar __createBindin"..., 9778) = 9778
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=60, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/ril", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c690) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/ril.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5392, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/ril.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5392, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/node/ril.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5392, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 5392) = 5392
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/api", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c190) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/api.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10611, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=808, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/api.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10611, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/api.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10611, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 10611) = 10611
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=808, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messages", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messages.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10373, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messages.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10373, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messages.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10373, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 10373) = 10373
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/is", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b500) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/is.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1272, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/is.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1272, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/is.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1272, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1272) = 1272
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/linkedMap", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/linkedMap.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=11767, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/linkedMap.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=11767, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/linkedMap.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=11767, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 11767) = 11767
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/disposable", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/disposable.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=685, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/disposable.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=685, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/disposable.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=685, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 685) = 685
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/events", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/events.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=4514, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/events.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=4514, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/events.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=4514, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 4514) = 4514
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/ral", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b650) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/ral.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=834, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/ral.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=834, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/ral.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=834, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 834) = 834
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/cancellation", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/cancellation.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3296, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/cancellation.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3296, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/cancellation.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3296, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 3296) = 3296
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2640, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2640, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2640, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2640) = 2640
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageReader", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageReader.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7834, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageReader.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7834, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageReader.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7834, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 7834) = 7834
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/semaphore", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b630) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/semaphore.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2197, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/semaphore.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2197, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/semaphore.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2197, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2197) = 2197
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageWriter", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageWriter.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=4439, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageWriter.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=4439, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageWriter.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=4439, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 4439) = 4439
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageBuffer", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5646, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5646, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5646, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 5646) = 5646
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/connection", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bb50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/connection.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=51184, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/connection.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=51184, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/lib/common/connection.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=51184, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 51184) = 51184
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/dist/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d0c0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/graphql-language-service-server/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d0c0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/package.json", O_RDONLY|O_CLOEXEC) = 21
pread64(21, "{\n\t\"name\": \"vscode-languageserve"..., 32768, 0) = 1485
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216d0c0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=224, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
read(21, "/* -----------------------------"..., 408) = 408
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=224, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/main", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216cc10) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/main.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7442, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=34, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=112, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/main.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7442, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/main.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7442, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 7442) = 7442
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/is", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/is.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1534, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=1030, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=56, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/is.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1534, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/is.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1534, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1534) = 1534
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/server", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/server.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=34971, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/server.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=34971, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/server.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=34971, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 34971) = 34971
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/package.json", O_RDONLY|O_CLOEXEC) = 21
pread64(21, "{\n\t\"name\": \"vscode-languageserve"..., 32768, 0) = 2525
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=246, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c060) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol.json", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c060) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol.node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c060) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node/main.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1512, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=246, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=34, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=32, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node/main.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1512, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node/main.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1512, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1512) = 1512
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bc60) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bc60) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bc60) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc/node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bc60) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/api", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bc60) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/api.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3277, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=2258, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/api.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3277, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/api.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3277, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 3277) = 3277
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b6a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc.json", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b6a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-jsonrpc.node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b6a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-types.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b6a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-types.json", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b6a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-types.node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b6a0) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=2258, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/messages", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/messages.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1931, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/messages.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1931, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/messages.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1931, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1931) = 1931
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=55332, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=55332, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=55332, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 55332) = 55332
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/utils/is", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1814, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/utils", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=24, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1814, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1814, ...}) = 0
read(21, "/* -----------------------------"..., 1814) = 1814
close(21)                               = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/utils/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1303, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1303, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1303, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1303) = 1303
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1303, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1303, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1303, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1303) = 1303
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1841, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1841, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1841, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1841) = 1841
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1452, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1452, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1452, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1452) = 1452
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1891, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1891, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1891, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1891) = 1891
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1125, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1125, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1125, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 1125) = 1125
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1319, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1319, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1319, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1319) = 1319
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1166, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1166, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1166, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 1166) = 1166
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2283, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2283, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2283, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2283) = 2283
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2521, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2521, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2521, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2521) = 2521
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3491, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3491, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3491, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 3491) = 3491
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1164, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1164, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1164, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1164) = 1164
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1059, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1059, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1059, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 1059) = 1059
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5127, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5127, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5127, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 5127) = 5127
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2524, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2524, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2524, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2524) = 2524
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2424, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2424, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2424, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2424) = 2424
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1654, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1654, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1654, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 1654) = 1654
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2293, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2293, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2293, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 2293) = 2293
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3462, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3462, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3462, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 3462) = 3462
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216af50) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10150, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10150, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=10150, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 10150) = 10150
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/connection", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216b780) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/connection.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=859, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/connection.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=859, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/common/connection.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=859, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 859) = 859
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=1030, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/is", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/uuid", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/uuid.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3006, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/uuid.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3006, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/utils/uuid.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=3006, ...}) = 0
read(21, "\"use strict\";\n/*----------------"..., 3006) = 3006
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/progress", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/progress.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5645, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/progress.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5645, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/progress.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=5645, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 5645) = 5645
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/configuration", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/configuration.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1576, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/configuration.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1576, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/configuration.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1576, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1576) = 1576
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/workspaceFolder", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/workspaceFolder.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2407, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/workspaceFolder.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2407, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/workspaceFolder.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2407, ...}) = 0
read(21, "/* -----------------------------"..., 2407) = 2407
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/callHierarchy", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/callHierarchy.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1930, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/callHierarchy.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1930, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/callHierarchy.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1930, ...}) = 0
read(21, "/* -----------------------------"..., 1930) = 1930
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/semanticTokens", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/semanticTokens.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=6241, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/semanticTokens.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=6241, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/semanticTokens.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=6241, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 6241) = 6241
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/showDocument", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/showDocument.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=838, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/showDocument.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=838, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/showDocument.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=838, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 838) = 838
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/fileOperations", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/fileOperations.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2085, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/fileOperations.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2085, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/fileOperations.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2085, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2085) = 2085
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/linkedEditingRange", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/linkedEditingRange.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1000, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/linkedEditingRange.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1000, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/linkedEditingRange.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1000, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1000) = 1000
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/typeHierarchy", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/typeHierarchy.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1914, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/typeHierarchy.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1914, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/typeHierarchy.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1914, ...}) = 0
read(21, "/* -----------------------------"..., 1914) = 1914
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlineValue", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlineValue.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1228, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlineValue.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1228, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlineValue.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1228, ...}) = 0
read(21, "/* -----------------------------"..., 1228) = 1228
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlayHint", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlayHint.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1491, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlayHint.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1491, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/inlayHint.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1491, ...}) = 0
read(21, "/* -----------------------------"..., 1491) = 1491
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/diagnostic", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/diagnostic.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1784, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/diagnostic.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1784, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/diagnostic.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1784, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 1784) = 1784
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/notebook", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/notebook.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=11869, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/notebook.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=11869, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/notebook.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=11869, ...}) = 0
read(21, "/* -----------------------------"..., 11869) = 11869
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/textDocuments", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216bc10) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/textDocuments.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7132, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/textDocuments.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7132, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/textDocuments.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=7132, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 7132) = 7132
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/moniker", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c140) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/moniker.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1119, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/moniker.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1119, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/moniker.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=1119, ...}) = 0
read(21, "/* -----------------------------"..., 1119) = 1119
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=112, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/files", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/files.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=9101, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/files.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=9101, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/files.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=9101, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 9101) = 9101
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/node.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=408, ...}) = 0
read(21, "/* -----------------------------"..., 408) = 408
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver-protocol/lib/node/main", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c260) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/api", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c710) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/api.js", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2100, ...}) = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/api.js", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2100, ...}) = 0
openat(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/api.js", O_RDONLY|O_CLOEXEC) = 21
statx(21, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=2100, ...}) = 0
read(21, "\"use strict\";\n/* ---------------"..., 2100) = 2100
close(21)                               = 0
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c230) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c230) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/node_modules", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c230) = -1 ENOENT (No such file or directory)
statx(AT_FDCWD, "/home/notme/.npm-global/lib/node_modules/graphql-language-service-cli/node_modules/vscode-languageserver/lib/common/server", AT_STATX_SYNC_AS_STAT, STATX_ALL, 0x7ffd6216c230) = -1 ENOENT (No such file or directory)

A little difficult to tell, since it tries to find a lot of files (and eventually succeeds on some of them), but that's the last line before the process begins failing.

@dcunited001 dcunited001 added enhancement lsp-server graphql-language-service-server labels Jun 5, 2023
@dcunited001 dcunited001 changed the title [lsp-server] <title> graphql-lsp lacks dependencies and fails silently, whether installed globally with npm/yarn Jun 6, 2023
@dcunited001
Copy link
Author

213a41e17823:/opt/gql# graphql-lsp server

when rebuilding the docker image by installing dependencies with yarn global add graphql-language-service-cli instead of npm, i get the following:

node:internal/modules/cjs/loader:1078
throw err;
^

Error: Cannot find module 'graphql'
Require stack:
- /usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/dist/client.js
- /usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/dist/cli.js
- /usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/bin/graphql.js
at Module._resolveFilename (node:internal/modules/cjs/loader:1075:15)
at Module._load (node:internal/modules/cjs/loader:920:27)
at Module.require (node:internal/modules/cjs/loader:1141:19)
at require (node:internal/modules/cjs/helpers:110:18)
at Object.<anonymous> (/usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/dist/client.js:6:19)
at Module._compile (node:internal/modules/cjs/loader:1254:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
at Module.load (node:internal/modules/cjs/loader:1117:32)
at Module._load (node:internal/modules/cjs/loader:958:12)
at Module.require (node:internal/modules/cjs/loader:1141:19) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'/usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/dist/client.js',
'/usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/dist/cli.js',
'/usr/local/share/.config/yarn/global/node_modules/graphql-language-service-cli/bin/graphql.js'
]
}

However, running yarn global add graphql gets me to a silent error that like pretty much the same thing.

213a41e17823:/opt/gql# yarn global add graphql
yarn global v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
warning "graphql-language-service-cli > graphql-language-service-server > graphql-config > @endemolshinegroup/cosmiconfig-typescript-loader > [email protected]" has unmet peer dependency "typescript@>=2.7".
[4/4] Building fresh packages...
warning "[email protected]" has no binaries
Done in 0.79s.
213a41e17823:/opt/gql# graphql-lsp server
213a41e17823:/opt/gql# yarn global add vscode-languageserver
yarn global v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
warning Pattern ["vscode-languageserver@^8.1.0"] is trying to unpack in the same destination "/usr/local/share/.cache/yarn/v6/npm-vscode-languageserver-8.1.0-5024253718915d84576ce6662dd46a791498d827-integrity/node_modules/vscode-languageserver" as pattern ["vscode-languageserver@^8.0.1"]. This could result in non-deterministic behavior, skipping.
[3/4] Linking dependencies...
warning "graphql-language-service-cli > graphql-language-service-server > graphql-config > @endemolshinegroup/cosmiconfig-typescript-loader > [email protected]" has unmet peer dependency "typescript@>=2.7".
[4/4] Building fresh packages...
success Installed "[email protected]" with binaries:
- installServerIntoExtension
Done in 0.55s.
213a41e17823:/opt/gql# graphql-lsp server
213a41e17823:/opt/gql#

@acao
Copy link
Member

acao commented Jun 8, 2023

graphql is a peer dependency, so if you are using yarn, it is not installed automatically. this cli will not give you graphiql, it gives you an lsp server that uses RPC to use with IDEs

@acao
Copy link
Member

acao commented Jun 24, 2023

@dcunited001 I looked closely at the error, and saw the issue is with graphql. this means you need to install as such for now;

npm i -g graphql-language-service-cli graphql

@acao acao closed this as completed Jun 24, 2023
@dcunited001
Copy link
Author

Thanks for getting back with me. I will give it a try soon.

@acao
Copy link
Member

acao commented Jul 11, 2023

@dcunited001 the reason we do this is because companies can be on many graphql versions, and may have server libraries that match legacy or modern versions of the reference implementation

for the most part though, many are on the latest. in that case, I hope to soon add an ncc bundle to releases that would make it a bundled native package that wouldnt even require installing node

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement lsp-server graphql-language-service-server
Projects
None yet
Development

No branches or pull requests

2 participants