Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit 30ab5be

Browse files
author
Josh Price
committed
Merge pull request #15 from AdamBrodzinski/patch-1
Fixes readme typos
2 parents 50cdbd8 + a207c81 commit 30ab5be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This [Plug](https://github.com/elixir-lang/plug) allows you to easily mount a Gr
3333
end
3434
3535
def deps do
36-
[{:plug_graphql, "~> 0.1.3"}]
36+
[{:plug_graphql, "~> 0.1.4"}]
3737
end
3838
```
3939
@@ -45,11 +45,11 @@ This [Plug](https://github.com/elixir-lang/plug) allows you to easily mount a Gr
4545
defmodule TestSchema do
4646
def schema do
4747
%GraphQL.Schema{
48-
query: %GraphQL.ObjectType{
48+
query: %GraphQL.Type.ObjectType{
4949
name: "Hello",
5050
fields: %{
5151
greeting: %{
52-
type: %String{},
52+
type: %GraphQL.Type.String{},
5353
resolve: {TestSchema, :greeting}
5454
}
5555
}

0 commit comments

Comments
 (0)