From f7c81e9997d2c708101c72b93454abfb02d3755b Mon Sep 17 00:00:00 2001 From: Ben Kraft Date: Thu, 16 Sep 2021 12:39:09 -0700 Subject: [PATCH] Actually mark genqlient as ready to use! (#102) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary: I'm not going to really publicize it until the blog post is done, but with all the usual boilerplate set up, it's time to remove this note! (Actually, I meant to do it in #96, but forgot.) ## Test plan: read it Author: benjaminjkraft Reviewers: dnerdy, dangoor, StevenACoffman Required Reviewers: Approved By: dnerdy, dangoor Checks: ✅ Test (1.17), ✅ Test (1.16), ✅ Test (1.15), ✅ Test (1.14), ✅ Lint, ✅ Test (1.17), ✅ Test (1.16), ✅ Test (1.15), ✅ Test (1.14), ✅ Lint Pull Request URL: https://github.com/Khan/genqlient/pull/102 --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index cf6be49e..3ea90f3b 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,6 @@ # genqlient: a truly type-safe Go GraphQL client -This is a proof-of-concept of using code-generation to create a truly type-safe GraphQL client in Go. It is not yet ready for contributions (see [docs/CONTRIBUTING.md](docs/CONTRIBUTING.md)). - ## What is genqlient? genqlient is a Go library to easily generate type-safe code to query a GraphQL API. It takes advantage of the fact that both GraphQL and Go are typed languages to ensure at compile-time that your code is making a valid GraphQL query and using the result correctly, all with a minimum of boilerplate. @@ -25,7 +23,7 @@ You can download and run genqlient the usual way: `go run github.com/Khan/genqli ## How can I help? -genqlient is not yet ready for contributions, but once it is, you'll be able to learn more in the ([Contribution Guidelines](docs/CONTRIBUTING.md)), or file an issue [on GitHub](issues). +genqlient welcomes contributions! Check out the ([Contribution Guidelines](docs/CONTRIBUTING.md)), or file an issue [on GitHub](issues). ## Why another GraphQL client?