amaretto

The GraphQL toolkit for Crystal

Amaretto

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      amaretto:
        github: amaretto-graphql/amaretto
    
  2. Run shards install

Usage

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

Contributing

  1. Fork it (https://github.com/amaretto-graphql/amaretto/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

Repository

amaretto

Owner
Statistic
  • 13
  • 0
  • 0
  • 0
  • 2
  • over 1 year ago
  • September 10, 2022
License

MIT License

Links
Synced at

Sun, 19 May 2024 03:11:02 GMT

Languages