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

Frameworks and Libraries

Introducing RedwoodJS

Tom Preston-Werner, the founder of Github and several popular open source projects, has released a new and opinionated full-stack framework built for JAMstack. Redwood has GraphQL baked into its core and favours convention over configuration. As JAMStack and GraphQL see wider adoption, new frameworks that embrace those patterns follow.

The dataloader-codegen has been open sourced by Yelp

The Dataloader pattern is often used to deal with the N+1 problem. Take a look at dataloader-codegen–an opinionated JavaScript library for generating DataLoaders over a set of resources that was open sourced by Yelp. Interestingly, the library embraces code generation and type safety.

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.