amaretto
Amaretto
Installation
-
Add the dependency to your
shard.yml
:dependencies: amaretto: github: amaretto-graphql/amaretto
-
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
- 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
Contributors
- Giorgi Kavrelishvili - creator and maintainer
Repository
amaretto
Owner
Statistic
- 13
- 0
- 0
- 0
- 2
- almost 2 years ago
- September 10, 2022
License
MIT License
Links
Synced at
Sat, 23 Nov 2024 09:51:28 GMT
Languages