Saihajpreet Singh
Saihajpreet Singh
> but npm test is passing on my machine I assume you are on node `v16` cause `v16` tests are the only ones passing.
So we publish under deno branch here https://github.com/graphql/graphql-js/tree/deno which if you import should work
@github-actions run-benchmark
Started the site here https://github.com/graphql/graphql-js/pull/3269
Why not use the `enum` directly? ```diff const TYPENAME_FIELD: FieldNode = { - kind: 'Field', + kind: Kind.FIELD, name: { - kind: 'Name', + kind: Kind.NAME, value: '__typename', }, };...
> It's very hard to view git history and see what was changed. Well the example you shared yes the git history has many dependency updates but in reality those...
> When I open history for a repo to see what changes were made since the last time I checked I see a bunch of dependabot stuff. For example, it's...
I think GitHub doesn't have a way. There are only 2 options and a visible means they are visible to members of organizations. I don't think there is a way...
you can do this with [`envelop`](https://envelop.dev) https://www.envelop.dev/plugins/use-open-telemetry
> @saihaj That is much higher level and doesn't have subscriber awareness. adding something like this to graphql-js we would need to a way to export platform specific module. Cause...