Initial setup GraphQL using graphql-ruby 1.8
- All definitions have been replaced by classes: http://graphql-ruby.org/schema/class_based_api.html - Authorization & Presentation have been refactored to work in the class based system - Loaders have been replaced by resolvers - Times are now coersed as ISO 8601
Showing
... | ... | @@ -94,8 +94,7 @@ gem 'grape-entity', '~> 0.7.1' |
gem 'rack-cors', '~> 1.0.0', require: 'rack/cors' | ||
# GraphQL API | ||
gem 'graphql', '~> 1.7.14' | ||
gem 'graphql-preload', '~> 2.0.0' | ||
gem 'graphql', '~> 1.8.0' | ||
gem 'graphiql-rails', '~> 1.4.10' | ||
# Disable strong_params so that Mash does not respond to :permitted? | ||
... | ... |
Please register or sign in to comment