-
Add the dependency to your
shard.yml
:dependencies: amaretto: github: amaretto-graphql/amaretto
-
Run
shards install
require "amaretto"
module Untitled
class Schema < Amaretto::Schema
@[Amaretto::Annotations::Query]
def list_users : Array(String)
[] of String
end
@[Amaretto::Annotations::Mutation]
def create_user(string : String) : String
raise Exception.new("User #{string} already exists!")
end
end
end
query = Untitled::Schema::Query.new
mutation = Untitled::Schema::Mutation.new
schema = GraphQL::Schema.new(query, mutation)
puts schema.document.to_s
See the examples directory for detailed usage with Kemal or Grip
- Fork it (https://github.com/amaretto-graphql/amaretto/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Giorgi Kavrelishvili - creator and maintainer