Current section

6 Versions

Jump to

Compare versions

5 files changed
+11 additions
-6 deletions
  @@ -1,5 +1,9 @@
1 1 # StrawHat.GraphQL
2 2
3 + [![Build Status](https://travis-ci.org/straw-hat-team/straw_hat_graphql.svg?branch=master)](https://travis-ci.org/straw-hat-team/straw_hat_graphql)
4 + [![Coverage Status](https://coveralls.io/repos/github/straw-hat-team/straw_hat_graphql/badge.svg?branch=master)](https://coveralls.io/github/straw-hat-team/straw_hat_graphql?branch=master)
5 + [![Inline docs](http://inch-ci.org/github/straw-hat-team/straw_hat_graphql.svg)](http://inch-ci.org/github/straw-hat-team/straw_hat_graphql)
6 +
3 7 GraphQL utils.
4 8
5 9 ## Installation
  @@ -7,7 +11,7 @@ GraphQL utils.
7 11 ```elixir
8 12 def deps do
9 13 [
10 - {:straw_hat_graphql, "~> 0.0.1"}
14 + {:straw_hat_graphql, "~> 0.1"}
11 15 ]
12 16 end
13 17 ```
  @@ -37,4 +37,4 @@
37 37 {<<"optional">>,false},
38 38 {<<"repository">>,<<"hexpm">>},
39 39 {<<"requirement">>,<<"~> 0.2">>}]]}.
40 - {<<"version">>,<<"0.1.2">>}.
40 + {<<"version">>,<<"0.2.0">>}.
  @@ -1,4 +1,4 @@
1 - defmodule StrawHat.GraphQL.Resolver.MetadataResolver do
1 + defmodule StrawHat.GraphQL.MetadataResolver do
2 2 @moduledoc """
3 3 It is been used on `metadata object type` of the graph, it is
4 4 `t:StrawHat.Error.ErrorMetadata.t/0` mapping. It converts the `key` and `value` to
  @@ -39,7 +39,7 @@ defmodule StrawHat.GraphQL.Types do
39 39
40 40 """
41 41 use Absinthe.Schema.Notation
42 - alias StrawHat.GraphQL.Resolver.MetadataResolver
42 + alias StrawHat.GraphQL.MetadataResolver
43 43
44 44 interface :straw_hat_node do
45 45 field(:id, non_null(:id))
  @@ -2,7 +2,7 @@ defmodule StrawHat.GraphQL.Mixfile do
2 2 use Mix.Project
3 3
4 4 @name :straw_hat_graphql
5 - @version "0.1.2"
5 + @version "0.2.0"
6 6 @elixir_version "~> 1.5"
7 7
8 8 @description """
  @@ -45,7 +45,8 @@ defmodule StrawHat.GraphQL.Mixfile do
45 45 {:dialyxir, ">= 0.0.0", only: [:dev], runtime: false},
46 46 {:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
47 47 {:excoveralls, ">= 0.0.0", only: [:test], runtime: false},
48 - {:ex_doc, ">= 0.0.0", only: [:dev], runtime: false}
48 + {:ex_doc, ">= 0.0.0", only: [:dev], runtime: false},
49 + {:inch_ex, ">= 0.0.0", only: [:dev], runtime: false}
49 50 ]
50 51 end