├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── lib └── generators │ └── graphql │ ├── USAGE │ ├── create_all_generator.rb │ ├── graphql_generator.rb │ ├── graphql_helpers.rb │ ├── init_generator.rb │ └── templates │ ├── config │ └── graphiql.rb │ ├── controllers │ └── graph_ql_controller.rb │ ├── graph │ ├── node_identification.rb │ ├── relay_schema.rb │ └── types │ │ ├── mutation_type.rb │ │ ├── query_type.rb │ │ └── root_level_type.rb │ └── models │ └── root_level.rb └── rails-graphql-generator.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .idea/ 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/generators/graphql/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/USAGE -------------------------------------------------------------------------------- /lib/generators/graphql/create_all_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/create_all_generator.rb -------------------------------------------------------------------------------- /lib/generators/graphql/graphql_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/graphql_generator.rb -------------------------------------------------------------------------------- /lib/generators/graphql/graphql_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/graphql_helpers.rb -------------------------------------------------------------------------------- /lib/generators/graphql/init_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/init_generator.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/config/graphiql.rb: -------------------------------------------------------------------------------- 1 | GraphiQL::Rails.config.query_params = true -------------------------------------------------------------------------------- /lib/generators/graphql/templates/controllers/graph_ql_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/controllers/graph_ql_controller.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/graph/node_identification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/graph/node_identification.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/graph/relay_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/graph/relay_schema.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/graph/types/mutation_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/graph/types/mutation_type.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/graph/types/query_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/graph/types/query_type.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/graph/types/root_level_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/graph/types/root_level_type.rb -------------------------------------------------------------------------------- /lib/generators/graphql/templates/models/root_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/lib/generators/graphql/templates/models/root_level.rb -------------------------------------------------------------------------------- /rails-graphql-generator.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svhawks/rails-graphql-generator/HEAD/rails-graphql-generator.gemspec --------------------------------------------------------------------------------