A weekly newsletter of the best news, articles and projects about GraphQL

Articles

Building Maintainable and Scalable GraphQL APIs

Are you building a GraphQL API and struggling with maintainability and scalability? Christian's latest Medium post has got you covered! He provides practical tips and best practices to help you build a maintainable and scalable GraphQL API. From designing your schema to optimizing your queries, he covers it all.

Exploiting SQL Injection in Graphql | DVGA |

Are you interested in learning how SQL injection vulnerabilities can be exploited in GraphQL APIs? Check out the latest blog post by Medusa0xF on Medium! The post explores the ins and outs of SQL injection attacks in GraphQL and provides a step-by-step guide on executing such an attack.

Using Fetch API For Executing GraphQL Queries And Mutations

In this post, Atheros explores how to use the Fetch API to perform GraphQL queries and mutations. They provide a detailed walkthrough of the steps involved, including how to handle errors and customize the Fetch request. Whether you're a beginner or a seasoned developer, this post is a valuable resource for anyone looking to optimize their GraphQL API requests.

Tools & Open Source

Announcing Postman’s new GraphQL client

Postman’s just released their new GraphQL client in open beta! Applying their learnings from building support for WebSockets, Socket.IO, and gRPC, they revisited the GraphQL client and built a development environment that is both simple and powerful.

Garph

Garph is a GraphQL schema-builder for TypeScript, that aims to deliver tRPC-like Developer-Experience. On top of that, Garph provides a GraphQL compability layer and type-safety primitives for any TypeScript project

Videos

GraphQL over HTTP

In this video, we'll explore GraphQL over HTTP Specification and how we can audit GraphQL APIs to ensure compliance.

Feeling nerdy? Query issues of GraphQL Weekly, with GraphQL itself!
Powered by the GraphQL Playground
Enter a query
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  allIssues {
    id
    title
    published
    number
    date
    author {
      avatarUrl
      description
      name
    }
  }
}
or press CMD + Enter
Result
Curated by Stellate, and the awesome GraphQL community.