Skip to content

Commit

Permalink
Update GraphQL Reference Link
Browse files Browse the repository at this point in the history
- The link in the readme has been updated to reference a post by
  Iván Corrales Solera, "Dive into GraphQL".  The previous link
  does not resolve, likely because the personal site is no longer
  hosted.

Addresses: #794
  • Loading branch information
oshalygin committed Jul 17, 2019
1 parent 373359d commit 419f966
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

- **Schema first** — Define your API using the GraphQL [Schema Definition Language](http://graphql.org/learn/schema/).
- **Type safe** — You should never see `map[string]interface{}` here.
- **Codegen** — Let us generate the boring bits, so you can build your app quickly.
- **Codegen** — Let us generate the boring bits, so you can build your app quickly.

[Feature Comparison](https://gqlgen.com/feature-comparison/)

Expand Down Expand Up @@ -71,7 +71,7 @@ func (r *userResolver) User(ctx context.Context, obj *User) ([]*User, error) {
// select * from user where friendid = obj.ID
return friends, nil
}
```
```

### IDs are strings but I like ints, why cant I have ints?

Expand All @@ -95,4 +95,4 @@ There isnt any way around this, gqlgen has no way to know what you want in a giv

- [Christopher Biscardi @ Gophercon UK 2018](https://youtu.be/FdURVezcdcw)
- [Introducing gqlgen: a GraphQL Server Generator for Go](https://99designs.com.au/blog/engineering/gqlgen-a-graphql-server-generator-for-go/)
- [GraphQL workshop for Golang developers by Iván Corrales Solera](https://graphql-go.wesovilabs.com)
- [Dive into GraphQL by Iván Corrales Solera](https://medium.com/@ivan.corrales.solera/dive-into-graphql-9bfedf22e1a)

0 comments on commit 419f966

Please sign in to comment.