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

Commit 70ae928

Browse files
author
Josh Price
committed
Prep for release
1 parent 0b6c805 commit 70ae928

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ transport, server and datastore agnostic.
1010

1111
In order to setup an HTTP server (ie Phoenix) to handle GraphQL queries you will
1212
need [plug_graphql](https://github.com/joshprice/plug_graphql).
13-
Examples for Phoenix can be found at [hello_graphql_phoenix](https://github.com/joshprice/hello_graphql_phoenix)
13+
Examples for Phoenix can be found at [hello_graphql_phoenix](https://github.com/joshprice/hello_graphql_phoenix), so look here for a starting point for writing your own schemas.
1414

1515
Other ways of handling queries will be added in due course.
1616

@@ -20,7 +20,7 @@ First, add GraphQL to your `mix.exs` dependencies:
2020

2121
```elixir
2222
defp deps do
23-
[{:graphql, "~> 0.0.9"}]
23+
[{:graphql, "~> 0.1.0"}]
2424
end
2525
```
2626

@@ -87,7 +87,7 @@ This is a work in progress, right now here's what is done:
8787
- [x] Fragments in queries
8888
- [ ] Extract variable values
8989
- [ ] Query validation
90-
- [ ] Introspection
90+
- [x] Introspection
9191

9292
## Resources
9393

mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule GraphQL.Mixfile do
22
use Mix.Project
33

4-
@version "0.0.9"
4+
@version "0.1.0"
55

66
@description "An Elixir implementation of Facebook's GraphQL core engine"
77
@repo_url "https://github.com/joshprice/graphql-elixir"
@@ -38,7 +38,7 @@ defmodule GraphQL.Mixfile do
3838
end
3939

4040
defp package do
41-
[maintainers: ["Josh Price", "James Sadler"],
41+
[maintainers: ["Josh Price", "Mark Olson"],
4242
licenses: ["BSD"],
4343
links: %{"GitHub" => @repo_url},
4444
files: ~w(lib src/*.xrl src/*.yrl mix.exs *.md LICENSE)]

0 commit comments

Comments
 (0)