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

Articles

Creating a GraphQL API with NextJS

If you’re just getting started with GraphQL and are already using NextJS in your project, take a look at this guide that takes you through all the required steps and explains the concepts along the way.

Announcing Hasuras $100M Series C funding

Hasura just announced their Series C for USD 100 million, allowing them to continue building and investing in both their Open Source project and their managed cloud service. We’re excited for what comes next from their fantastic team.

Netlify Graph: A faster way for teams to develop web apps with APIs

Netlify recently announced its Graph service as a public beta. It’s a way to easily integrate with APIs like Stripe, GitHub, or Salesforce via GraphQL via a single graph powered by Netlify. It also offers tools to model queries and generate necessary serverless function code. As the beta progresses, they expect more APIs to become available.

Videos

GraphQL Error Handling with Union Types

In the newest episode of graphql.wtf James dives into GraphQLs error handling and implementing a better system using GraphQLs type system and union types.

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.