GraphQL

!graphql

@programming.dev
Create post
Launching the GraphQL Local Initiative

Launching the GraphQL Local Initiative

Open link in next tab

Launching the GraphQL Local Initiative | GraphQL

https://graphql.org/blog/2024-08-15-graphql-local-initiative/

Launching the GraphQL Local Initiative | GraphQL
A 21,565X performance improvement in linting GraphQL

A 21,565X performance improvement in linting GraphQL

Open link in next tab

Introducing graphql-lint and gqlint

https://grafbase.com/changelog/graphql-lint

A Rust based GraphQL linter crate and CLI

Introducing graphql-lint and gqlint
GraphQL TSC Election Results

GraphQL TSC Election Results

Open link in next tab

GraphQL TSC Election Results | GraphQL

http://graphql.org/blog/2024-01-23-graphql-tsc-election-results

A query language for your API — GraphQL provides a complete description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools.

GraphQL TSC Election Results | GraphQL
Announcing the GraphQL Foundation's Grant Awardees: Benefitting a GraphQL Ecosystem for All

Announcing the GraphQL Foundation's Grant Awardees: Benefitting a GraphQL Ecosystem for All

Open link in next tab

Announcing the GraphQL Foundation's Grant Awardees: Benefitting a GraphQL Ecosystem for All | GraphQL

http://graphql.org/blog/2024-01-17-announcing-grant-awardees

A query language for your API — GraphQL provides a complete description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools.

Announcing the GraphQL Foundation's Grant Awardees: Benefitting a GraphQL Ecosystem for All | GraphQL
The Hidden Performance Cost of NodeJS and GraphQL

The Hidden Performance Cost of NodeJS and GraphQL

Open link in next tab

The Hidden Performance Cost of NodeJS and GraphQL

https://www.softwareatscale.dev/p/the-hidden-performance-cost-of-nodejs

NodeJS and GraphQL are popular technologies for building web applications, but in my experience, they come with certain scaling and performance tradeoffs to be aware of. tl;dr: GraphQL's modular structure generally leads to code that instantiates excessive promises, which degrades request performance. Benchmarks show a 2-3x latency increase.

The Hidden Performance Cost of NodeJS and GraphQL
where to implement directive logic

where to implement directive logic

Hello! I was writing a hobby graphql project just to get a better grasp on it and am using the Lacinia clojure library. It’s directive documentation isn’t very fleshed out and I was wondering where directive logic generally takes place. I am using it with the pedestal library and was going to just write an interceptor after the query is parsed but was wondering if it was more standard to have it take place in the resolver logic or something. Thanks :)