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

Open Source

GraphQL-React

Created by Jayden Seric, this is a lightweight GraphQL client for React; the first Relay and Apollo alternative with server side rendering. With a far smaller installation size, the client only has one dependency and doesn't require the gql tag for syntax highlighting.

OASGraph

A tool that turns APIs described by OpenAPI specifications (OAS) into GraphQL interfaces.

Articles

Discovering GraphQL endpoints and SQLi vulnerabilities

Matías Choren covers the way that individuals can confirm that GraphQL is being used and some SQL injections that may affect it. A sobering reminder that security should be top of mind no matter the tool in use.

Full Schema Stitching with Apollo Server

A post that cover stitching queries, mutations, and subscriptions from an Apollo Server and its Links packages, focused on the core of schema stitching. For those new to schema stitching, one can find a broader introduction here.

Course

Build Full-Stack Apps with GraphQL, Prisma, Node and React

In this eleven hour course, Haider Malik covers building a scalable GraphQL API, as well as full stack and front end apps. This course also does a deep dive into Prisma and Apollo Client.

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.