├── .gitignore ├── .rspec ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── graphql_controller.rb ├── graphql │ ├── mutations │ │ ├── .keep │ │ ├── item_mutation.rb │ │ └── todo_list_mutation.rb │ ├── query_types │ │ ├── item_query_type.rb │ │ └── todo_list_query_type.rb │ ├── todos_graphql_api_schema.rb │ ├── types │ │ ├── .keep │ │ ├── item_type.rb │ │ ├── mutation_type.rb │ │ ├── query_type.rb │ │ └── todo_list_type.rb │ └── util │ │ └── field_combiner.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── item.rb │ └── todo_list.rb └── views │ └── layouts │ ├── mailer.html.erb │ └── mailer.text.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── backtrace_silencers.rb │ ├── cors.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20180412202512_create_todo_lists.rb │ └── 20180412202955_create_items.rb ├── schema.rb └── seeds.rb ├── lib └── tasks │ └── .keep ├── public └── robots.txt ├── spec ├── factories │ ├── item.rb │ └── todo_list.rb ├── graphql │ ├── mutations │ │ ├── item_mutation_spec.rb │ │ └── todo_list_mutation_spec.rb │ ├── query_types │ │ ├── item_query_type_spec.rb │ │ └── todo_list_query_type_spec.rb │ └── types │ │ ├── item_type_spec.rb │ │ └── todo_list_type_spec.rb ├── models │ ├── item_spec.rb │ └── todo_list_spec.rb ├── rails_helper.rb └── spec_helper.rb ├── tmp └── .keep └── vendor └── .keep /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config. 8 | /.bundle 9 | 10 | # Ignore all logfiles and tempfiles. 11 | /log/* 12 | /tmp/* 13 | !/log/.keep 14 | !/tmp/.keep 15 | 16 | # Ignore uploaded files in development 17 | /storage/* 18 | 19 | .byebug_history 20 | 21 | # Ignore master key for decrypting credentials and more. 22 | /config/master.key 23 | .env 24 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require rails_helper 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 | 4 | ruby '2.5.1' 5 | 6 | gem 'rails', '~> 5.2.0' 7 | gem 'pg', '>= 0.18', '< 2.0' 8 | gem 'puma', '~> 3.11' 9 | gem 'bootsnap', '>= 1.1.0', require: false 10 | gem 'graphql', '~> 1.7', '>= 1.7.14' 11 | 12 | group :development, :test do 13 | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 14 | gem 'pry-rails', '~> 0.3.6' 15 | gem 'pry-byebug' 16 | end 17 | 18 | group :development do 19 | gem 'listen', '>= 3.0.5', '< 3.2' 20 | gem 'spring' 21 | gem 'spring-watcher-listen', '~> 2.0.0' 22 | end 23 | 24 | group :test do 25 | gem 'database_cleaner', '~> 1.6', '>= 1.6.2' 26 | gem 'factory_bot_rails', '~> 4.8', '>= 4.8.2' 27 | gem 'faker', '~> 1.8', '>= 1.8.7' 28 | gem 'rspec-graphql_matchers' 29 | gem 'rspec-rails', '~> 3.7', '>= 3.7.2' 30 | gem 'shoulda-matchers', '~> 3.1', '>= 3.1.2' 31 | end 32 | 33 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 34 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 35 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actioncable (5.2.0) 5 | actionpack (= 5.2.0) 6 | nio4r (~> 2.0) 7 | websocket-driver (>= 0.6.1) 8 | actionmailer (5.2.0) 9 | actionpack (= 5.2.0) 10 | actionview (= 5.2.0) 11 | activejob (= 5.2.0) 12 | mail (~> 2.5, >= 2.5.4) 13 | rails-dom-testing (~> 2.0) 14 | actionpack (5.2.0) 15 | actionview (= 5.2.0) 16 | activesupport (= 5.2.0) 17 | rack (~> 2.0) 18 | rack-test (>= 0.6.3) 19 | rails-dom-testing (~> 2.0) 20 | rails-html-sanitizer (~> 1.0, >= 1.0.2) 21 | actionview (5.2.0) 22 | activesupport (= 5.2.0) 23 | builder (~> 3.1) 24 | erubi (~> 1.4) 25 | rails-dom-testing (~> 2.0) 26 | rails-html-sanitizer (~> 1.0, >= 1.0.3) 27 | activejob (5.2.0) 28 | activesupport (= 5.2.0) 29 | globalid (>= 0.3.6) 30 | activemodel (5.2.0) 31 | activesupport (= 5.2.0) 32 | activerecord (5.2.0) 33 | activemodel (= 5.2.0) 34 | activesupport (= 5.2.0) 35 | arel (>= 9.0) 36 | activestorage (5.2.0) 37 | actionpack (= 5.2.0) 38 | activerecord (= 5.2.0) 39 | marcel (~> 0.3.1) 40 | activesupport (5.2.0) 41 | concurrent-ruby (~> 1.0, >= 1.0.2) 42 | i18n (>= 0.7, < 2) 43 | minitest (~> 5.1) 44 | tzinfo (~> 1.1) 45 | arel (9.0.0) 46 | bootsnap (1.3.0) 47 | msgpack (~> 1.0) 48 | builder (3.2.3) 49 | byebug (10.0.2) 50 | coderay (1.1.2) 51 | concurrent-ruby (1.0.5) 52 | crass (1.0.4) 53 | database_cleaner (1.6.2) 54 | diff-lcs (1.3) 55 | erubi (1.7.1) 56 | factory_bot (4.8.2) 57 | activesupport (>= 3.0.0) 58 | factory_bot_rails (4.8.2) 59 | factory_bot (~> 4.8.2) 60 | railties (>= 3.0.0) 61 | faker (1.8.7) 62 | i18n (>= 0.7) 63 | ffi (1.9.23) 64 | globalid (0.4.1) 65 | activesupport (>= 4.2.0) 66 | graphql (1.7.14) 67 | i18n (1.0.0) 68 | concurrent-ruby (~> 1.0) 69 | listen (3.1.5) 70 | rb-fsevent (~> 0.9, >= 0.9.4) 71 | rb-inotify (~> 0.9, >= 0.9.7) 72 | ruby_dep (~> 1.2) 73 | loofah (2.2.2) 74 | crass (~> 1.0.2) 75 | nokogiri (>= 1.5.9) 76 | mail (2.7.0) 77 | mini_mime (>= 0.1.1) 78 | marcel (0.3.2) 79 | mimemagic (~> 0.3.2) 80 | method_source (0.9.0) 81 | mimemagic (0.3.2) 82 | mini_mime (1.0.0) 83 | mini_portile2 (2.3.0) 84 | minitest (5.11.3) 85 | msgpack (1.2.4) 86 | nio4r (2.3.0) 87 | nokogiri (1.8.2) 88 | mini_portile2 (~> 2.3.0) 89 | pg (1.0.0) 90 | pry (0.11.3) 91 | coderay (~> 1.1.0) 92 | method_source (~> 0.9.0) 93 | pry-byebug (3.6.0) 94 | byebug (~> 10.0) 95 | pry (~> 0.10) 96 | pry-rails (0.3.6) 97 | pry (>= 0.10.4) 98 | puma (3.11.3) 99 | rack (2.0.4) 100 | rack-test (1.0.0) 101 | rack (>= 1.0, < 3) 102 | rails (5.2.0) 103 | actioncable (= 5.2.0) 104 | actionmailer (= 5.2.0) 105 | actionpack (= 5.2.0) 106 | actionview (= 5.2.0) 107 | activejob (= 5.2.0) 108 | activemodel (= 5.2.0) 109 | activerecord (= 5.2.0) 110 | activestorage (= 5.2.0) 111 | activesupport (= 5.2.0) 112 | bundler (>= 1.3.0) 113 | railties (= 5.2.0) 114 | sprockets-rails (>= 2.0.0) 115 | rails-dom-testing (2.0.3) 116 | activesupport (>= 4.2.0) 117 | nokogiri (>= 1.6) 118 | rails-html-sanitizer (1.0.4) 119 | loofah (~> 2.2, >= 2.2.2) 120 | railties (5.2.0) 121 | actionpack (= 5.2.0) 122 | activesupport (= 5.2.0) 123 | method_source 124 | rake (>= 0.8.7) 125 | thor (>= 0.18.1, < 2.0) 126 | rake (12.3.1) 127 | rb-fsevent (0.10.3) 128 | rb-inotify (0.9.10) 129 | ffi (>= 0.5.0, < 2) 130 | rspec-core (3.7.1) 131 | rspec-support (~> 3.7.0) 132 | rspec-expectations (3.7.0) 133 | diff-lcs (>= 1.2.0, < 2.0) 134 | rspec-support (~> 3.7.0) 135 | rspec-graphql_matchers (0.7.1) 136 | graphql (>= 0.9, < 2) 137 | rspec-mocks (3.7.0) 138 | diff-lcs (>= 1.2.0, < 2.0) 139 | rspec-support (~> 3.7.0) 140 | rspec-rails (3.7.2) 141 | actionpack (>= 3.0) 142 | activesupport (>= 3.0) 143 | railties (>= 3.0) 144 | rspec-core (~> 3.7.0) 145 | rspec-expectations (~> 3.7.0) 146 | rspec-mocks (~> 3.7.0) 147 | rspec-support (~> 3.7.0) 148 | rspec-support (3.7.1) 149 | ruby_dep (1.5.0) 150 | shoulda-matchers (3.1.2) 151 | activesupport (>= 4.0.0) 152 | spring (2.0.2) 153 | activesupport (>= 4.2) 154 | spring-watcher-listen (2.0.1) 155 | listen (>= 2.7, < 4.0) 156 | spring (>= 1.2, < 3.0) 157 | sprockets (3.7.1) 158 | concurrent-ruby (~> 1.0) 159 | rack (> 1, < 3) 160 | sprockets-rails (3.2.1) 161 | actionpack (>= 4.0) 162 | activesupport (>= 4.0) 163 | sprockets (>= 3.0.0) 164 | thor (0.20.0) 165 | thread_safe (0.3.6) 166 | tzinfo (1.2.5) 167 | thread_safe (~> 0.1) 168 | websocket-driver (0.7.0) 169 | websocket-extensions (>= 0.1.0) 170 | websocket-extensions (0.1.3) 171 | 172 | PLATFORMS 173 | ruby 174 | 175 | DEPENDENCIES 176 | bootsnap (>= 1.1.0) 177 | byebug 178 | database_cleaner (~> 1.6, >= 1.6.2) 179 | factory_bot_rails (~> 4.8, >= 4.8.2) 180 | faker (~> 1.8, >= 1.8.7) 181 | graphql (~> 1.7, >= 1.7.14) 182 | listen (>= 3.0.5, < 3.2) 183 | pg (>= 0.18, < 2.0) 184 | pry-byebug 185 | pry-rails (~> 0.3.6) 186 | puma (~> 3.11) 187 | rails (~> 5.2.0) 188 | rspec-graphql_matchers 189 | rspec-rails (~> 3.7, >= 3.7.2) 190 | shoulda-matchers (~> 3.1, >= 3.1.2) 191 | spring 192 | spring-watcher-listen (~> 2.0.0) 193 | tzinfo-data 194 | 195 | RUBY VERSION 196 | ruby 2.5.1p57 197 | 198 | BUNDLED WITH 199 | 1.16.1 200 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Todo List GraphQL API 2 | 3 | [](https://forthebadge.com) 4 | [](https://forthebadge.com) 5 | 6 | This repo is the source companion for the `Building a GraphQL API in Rails` tutorial series. 7 | - [Part 1](https://github.com/ranchow/todos_graphql-api/tree/part-1) 8 | 9 | ## Setting up 10 | 11 | #### Requirements 12 | 13 | - Ruby 2.5.1 14 | - Rails 5.2.0 15 | - Postgresql => 10.3 16 | - [Graphiql](https://github.com/skevy/graphiql-app) - The GraphQL client 17 | - Your favorite editor. 18 | 19 | #### Installation 20 | 21 | **Clone the repo.** 22 | ```bash 23 | git clone https://github.com/ranchow/todos_graphql-api.git 24 | ``` 25 | 26 | **cd into the directory and install the reqirements.** 27 | ```bash 28 | cd todos_graphql-api && bundle install 29 | ``` 30 | 31 | **set up the database** 32 | ```bash 33 | rails db:create; rails db:migrate; rails db:seed 34 | ``` 35 | 36 | **Start the server** 37 | ```bash 38 | rails s 39 | ``` 40 | 41 | #### Running tests 42 | 43 | Running all tests. 44 | ```bash 45 | bundle exec rspec 46 | ``` 47 | 48 | Running a specific test file 49 | ```bash 50 | bundle exec rspec ./spec/path/to/file 51 | ``` 52 | 53 | ## Contributing 54 | 55 | To contribute, fix bugs that I might have missed or just want to play around, just go ahead and fork the repo, add a feature branch and raise a pull request. 56 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require_relative 'config/application' 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::API 2 | end 3 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/app/controllers/concerns/.keep -------------------------------------------------------------------------------- /app/controllers/graphql_controller.rb: -------------------------------------------------------------------------------- 1 | class GraphqlController < ApplicationController 2 | def execute 3 | variables = ensure_hash(params[:variables]) 4 | query = params[:query] 5 | operation_name = params[:operationName] 6 | context = { 7 | # Query context goes here, for example: 8 | # current_user: current_user, 9 | } 10 | result = TodosGraphqlApiSchema.execute(query, variables: variables, context: context, operation_name: operation_name) 11 | render json: result 12 | end 13 | 14 | private 15 | 16 | # Handle form data, JSON body, or a blank value 17 | def ensure_hash(ambiguous_param) 18 | case ambiguous_param 19 | when String 20 | if ambiguous_param.present? 21 | ensure_hash(JSON.parse(ambiguous_param)) 22 | else 23 | {} 24 | end 25 | when Hash, ActionController::Parameters 26 | ambiguous_param 27 | when nil 28 | {} 29 | else 30 | raise ArgumentError, "Unexpected parameter: #{ambiguous_param}" 31 | end 32 | end 33 | end 34 | -------------------------------------------------------------------------------- /app/graphql/mutations/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/app/graphql/mutations/.keep -------------------------------------------------------------------------------- /app/graphql/mutations/item_mutation.rb: -------------------------------------------------------------------------------- 1 | module Mutations 2 | ItemMutation = GraphQL::ObjectType.define do 3 | name 'ItemMutation' 4 | description 'Mutations for items' 5 | 6 | field :create_item, Types::ItemType do 7 | argument :todo_list_id, !types.ID 8 | argument :name, !types.String 9 | 10 | resolve ->(_obj, args, _ctx) do 11 | todo_list = TodoList.find(args[:todo_list_id]) 12 | 13 | return unless todo_list 14 | 15 | todo_list.items.create( 16 | name: args[:name] 17 | ) 18 | end 19 | end 20 | 21 | field :mark_item_done, Types::ItemType do 22 | argument :id, !types.ID 23 | 24 | resolve ->(_obj, args, _ctx) do 25 | item = Item.find_by(id: args[:id]) 26 | return unless item 27 | 28 | item.update( 29 | done: true 30 | ) 31 | 32 | item 33 | end 34 | end 35 | 36 | field :delete_item, Types::ItemType do 37 | argument :id, !types.ID 38 | 39 | resolve ->(_obj, args, _ctx) do 40 | item = Item.find_by(id: args[:id]) 41 | return unless item 42 | 43 | item.destroy 44 | end 45 | end 46 | end 47 | end 48 | -------------------------------------------------------------------------------- /app/graphql/mutations/todo_list_mutation.rb: -------------------------------------------------------------------------------- 1 | module Mutations 2 | TodoListMutation = GraphQL::ObjectType.define do 3 | name 'TodoListMutation' 4 | description 'Mutation type for todo list' 5 | 6 | field :create_todo_list, Types::TodoListType do 7 | argument :title, !types.String 8 | 9 | resolve ->(_obj, args, _ctx) do 10 | TodoList.create( 11 | title: args[:title] 12 | ) 13 | end 14 | end 15 | 16 | field :edit_todo_list, Types::TodoListType do 17 | argument :id, !types.ID, 'the ID of the todolist to edit' 18 | argument :title, types.String, 'the new title' 19 | 20 | resolve ->(_obj, args, _ctx) do 21 | todo_list = TodoList.find_by(id: args[:id]) 22 | 23 | if args.key?(:title) 24 | todo_list.update( 25 | title: args[:title] 26 | ) 27 | end 28 | todo_list 29 | end 30 | end 31 | 32 | field :delete_todo_list, types[Types::TodoListType] do 33 | argument :id, !types.ID, 'the ID of the todolist to delete' 34 | 35 | resolve ->(_obj, args, _ctx) do 36 | todo_lists = TodoList.all 37 | todo_list = TodoList.find_by(id: args[:id]) 38 | 39 | # Ensure that we find the todo list 40 | todo_list.destroy 41 | # return all todo lists 42 | todo_lists 43 | end 44 | end 45 | end 46 | end 47 | -------------------------------------------------------------------------------- /app/graphql/query_types/item_query_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/app/graphql/query_types/item_query_type.rb -------------------------------------------------------------------------------- /app/graphql/query_types/todo_list_query_type.rb: -------------------------------------------------------------------------------- 1 | module QueryTypes 2 | TodoListQueryType = GraphQL::ObjectType.define do 3 | name 'TodoListQueryType' 4 | description 'The todo list query type' 5 | 6 | field :todo_lists, types[Types::TodoListType], 'returns all todo lists' do 7 | resolve ->(_obj, _args, _ctx) { TodoList.all } 8 | end 9 | 10 | field :todo_list, Types::TodoListType, 'returns the queried tod list' do 11 | argument :id, !types[types.ID] 12 | 13 | resolve ->(_obj, args, _ctx) { TodoList.find_by!(id: args[:id]) } 14 | end 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /app/graphql/todos_graphql_api_schema.rb: -------------------------------------------------------------------------------- 1 | TodosGraphqlApiSchema = GraphQL::Schema.define do 2 | mutation(Types::MutationType) 3 | query(Types::QueryType) 4 | end 5 | -------------------------------------------------------------------------------- /app/graphql/types/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/app/graphql/types/.keep -------------------------------------------------------------------------------- /app/graphql/types/item_type.rb: -------------------------------------------------------------------------------- 1 | module Types 2 | ItemType = GraphQL::ObjectType.define do 3 | name 'ItemType' 4 | description 'Type definition for items' 5 | 6 | field :id, !types.ID 7 | field :name, !types.String 8 | field :done, types.Boolean 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /app/graphql/types/mutation_type.rb: -------------------------------------------------------------------------------- 1 | 2 | module Types 3 | MutationType = GraphQL::ObjectType.new.tap do |root_type| 4 | root_type.name = 'Mutation' 5 | root_type.description = 'The mutation root' 6 | root_type.interfaces = [] 7 | root_type.fields = Util::FieldCombiner.combine([ 8 | Mutations::TodoListMutation, 9 | Mutations::ItemMutation 10 | ]) 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /app/graphql/types/query_type.rb: -------------------------------------------------------------------------------- 1 | module Types 2 | QueryType = GraphQL::ObjectType.new.tap do |root_type| 3 | root_type.name = 'Query' 4 | root_type.description = 'The query root' 5 | root_type.interfaces = [] 6 | root_type.fields = Util::FieldCombiner.combine([ 7 | QueryTypes::TodoListQueryType 8 | ]) 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /app/graphql/types/todo_list_type.rb: -------------------------------------------------------------------------------- 1 | module Types 2 | TodoListType = GraphQL::ObjectType.define do 3 | name 'TodoListType' 4 | description 'The Todo List type' 5 | 6 | field :id, !types.ID 7 | field :title, !types.String 8 | field :items, types[Types::ItemType] do 9 | resolve ->(obj, _args, _ctx) { obj.items } 10 | end 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /app/graphql/util/field_combiner.rb: -------------------------------------------------------------------------------- 1 | module Util 2 | class FieldCombiner 3 | def self.combine(query_types) 4 | Array(query_types).inject({}) do |acc, query_type| 5 | acc.merge!(query_type.fields) 6 | end 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/app/models/concerns/.keep -------------------------------------------------------------------------------- /app/models/item.rb: -------------------------------------------------------------------------------- 1 | class Item < ApplicationRecord 2 | validates :name, presence: true, uniqueness: true 3 | belongs_to :todo_list 4 | end 5 | -------------------------------------------------------------------------------- /app/models/todo_list.rb: -------------------------------------------------------------------------------- 1 | class TodoList < ApplicationRecord 2 | validates :title, presence: true, uniqueness: true 3 | has_many :items, dependent: :delete_all 4 | end 5 | 6 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path('../spring', __FILE__) 4 | rescue LoadError => e 5 | raise unless e.message.include?('spring') 6 | end 7 | APP_PATH = File.expand_path('../config/application', __dir__) 8 | require_relative '../config/boot' 9 | require 'rails/commands' 10 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path('../spring', __FILE__) 4 | rescue LoadError => e 5 | raise unless e.message.include?('spring') 6 | end 7 | require_relative '../config/boot' 8 | require 'rake' 9 | Rake.application.run 10 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'fileutils' 3 | include FileUtils 4 | 5 | # path to your application root. 6 | APP_ROOT = File.expand_path('..', __dir__) 7 | 8 | def system!(*args) 9 | system(*args) || abort("\n== Command #{args} failed ==") 10 | end 11 | 12 | chdir APP_ROOT do 13 | # This script is a starting point to setup your application. 14 | # Add necessary setup steps to this file. 15 | 16 | puts '== Installing dependencies ==' 17 | system! 'gem install bundler --conservative' 18 | system('bundle check') || system!('bundle install') 19 | 20 | # puts "\n== Copying sample files ==" 21 | # unless File.exist?('config/database.yml') 22 | # cp 'config/database.yml.sample', 'config/database.yml' 23 | # end 24 | 25 | puts "\n== Preparing database ==" 26 | system! 'bin/rails db:setup' 27 | 28 | puts "\n== Removing old logs and tempfiles ==" 29 | system! 'bin/rails log:clear tmp:clear' 30 | 31 | puts "\n== Restarting application server ==" 32 | system! 'bin/rails restart' 33 | end 34 | -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | # This file loads spring without using Bundler, in order to be fast. 4 | # It gets overwritten when you run the `spring binstub` command. 5 | 6 | unless defined?(Spring) 7 | require 'rubygems' 8 | require 'bundler' 9 | 10 | lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) 11 | spring = lockfile.specs.detect { |spec| spec.name == "spring" } 12 | if spring 13 | Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path 14 | gem 'spring', spring.version 15 | require 'spring/binstub' 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'fileutils' 3 | include FileUtils 4 | 5 | # path to your application root. 6 | APP_ROOT = File.expand_path('..', __dir__) 7 | 8 | def system!(*args) 9 | system(*args) || abort("\n== Command #{args} failed ==") 10 | end 11 | 12 | chdir APP_ROOT do 13 | # This script is a way to update your development environment automatically. 14 | # Add necessary update steps to this file. 15 | 16 | puts '== Installing dependencies ==' 17 | system! 'gem install bundler --conservative' 18 | system('bundle check') || system!('bundle install') 19 | 20 | puts "\n== Updating database ==" 21 | system! 'bin/rails db:migrate' 22 | 23 | puts "\n== Removing old logs and tempfiles ==" 24 | system! 'bin/rails log:clear tmp:clear' 25 | 26 | puts "\n== Restarting application server ==" 27 | system! 'bin/rails restart' 28 | end 29 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require_relative 'boot' 2 | 3 | require "rails" 4 | # Pick the frameworks you want: 5 | require "active_model/railtie" 6 | require "active_job/railtie" 7 | require "active_record/railtie" 8 | require "active_storage/engine" 9 | require "action_controller/railtie" 10 | require "action_mailer/railtie" 11 | require "action_view/railtie" 12 | require "action_cable/engine" 13 | # require "sprockets/railtie" 14 | # require "rails/test_unit/railtie" 15 | 16 | # Require the gems listed in Gemfile, including any gems 17 | # you've limited to :test, :development, or :production. 18 | Bundler.require(*Rails.groups) 19 | 20 | module TodosGraphqlApi 21 | class Application < Rails::Application 22 | # Initialize configuration defaults for originally generated Rails version. 23 | config.load_defaults 5.2 24 | 25 | # Settings in config/environments/* take precedence over those specified here. 26 | # Application configuration can go into files in config/initializers 27 | # -- all .rb files in that directory are automatically loaded after loading 28 | # the framework and any gems in your application. 29 | 30 | # Only loads a smaller set of middleware suitable for API only apps. 31 | # Middleware like session, flash, cookies can be added back manually. 32 | # Skip views, helpers and assets when generating a new resource. 33 | config.api_only = true 34 | end 35 | end 36 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | require 'bootsnap/setup' # Speed up boot time by caching expensive operations. 5 | -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- 1 | development: 2 | adapter: async 3 | 4 | test: 5 | adapter: async 6 | 7 | production: 8 | adapter: redis 9 | url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> 10 | channel_prefix: todos_graphql_api_production 11 | -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- 1 | PMCWgY0KYXZCIDaXCKNu0z+48SSdDMvhtCFYSphNRfPrhGxK6NwOqYWnil5UAXmT6osG2lFF2/e6avVtFCcrbp9VarYDEC53mj1MwNiDCz3A/UWhRJQkpvV+toLasZnJ5+uooDerIz9r4Wxh1mwIbNDtpIFtF5OLuoE2sVpkTRaJfQkJfXfuMiJhupkXVnOXRwZz0n9yeYiqZwAjbftOQ7biEOHQh7Rx5mlhI3gybx8tyeALuCD63MvCAX+p9bp3Hs376jD7mV0fTG5XZxIp2z31nzbNE/cMYxxNsxh0uH7hTydD1Yo7G49xJpR5usbQuhek7fe0kwlksvQEMuvqJRzQBZ3qPSkQaOGizs6vLybN9K3/Yxv52+hSx31RO7okVxfumFe7AoMEg73DqQn5eu4+ByVx/9eQzDc2--uiEbUkzGAmOWynsr--wNBbDQLGquVA6WbiWENyrg== -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | # PostgreSQL. Versions 9.1 and up are supported. 2 | # 3 | # Install the pg driver: 4 | # gem install pg 5 | # On OS X with Homebrew: 6 | # gem install pg -- --with-pg-config=/usr/local/bin/pg_config 7 | # On OS X with MacPorts: 8 | # gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config 9 | # On Windows: 10 | # gem install pg 11 | # Choose the win32 build. 12 | # Install PostgreSQL and put its /bin directory on your path. 13 | # 14 | # Configure Using Gemfile 15 | # gem 'pg' 16 | # 17 | default: &default 18 | adapter: postgresql 19 | encoding: unicode 20 | # For details on connection pooling, see Rails configuration guide 21 | # http://guides.rubyonrails.org/configuring.html#database-pooling 22 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 23 | 24 | development: 25 | <<: *default 26 | database: todos_dev 27 | 28 | # The specified database role being used to connect to postgres. 29 | # To create additional roles in postgres see `$ createuser --help`. 30 | # When left blank, postgres will use the default role. This is 31 | # the same name as the operating system user that initialized the database. 32 | #username: todos_graphql_api 33 | 34 | # The password associated with the postgres role (username). 35 | #password: 36 | 37 | # Connect on a TCP socket. Omitted by default since the client uses a 38 | # domain socket that doesn't need configuration. Windows does not have 39 | # domain sockets, so uncomment these lines. 40 | #host: localhost 41 | 42 | # The TCP port the server listens on. Defaults to 5432. 43 | # If your server runs on a different port number, change accordingly. 44 | #port: 5432 45 | 46 | # Schema search path. The server defaults to $user,public 47 | #schema_search_path: myapp,sharedapp,public 48 | 49 | # Minimum log levels, in increasing order: 50 | # debug5, debug4, debug3, debug2, debug1, 51 | # log, notice, warning, error, fatal, and panic 52 | # Defaults to warning. 53 | #min_messages: notice 54 | 55 | # Warning: The database defined as "test" will be erased and 56 | # re-generated from your development database when you run "rake". 57 | # Do not set this db to the same as development or production. 58 | test: 59 | <<: *default 60 | database: todos_test 61 | 62 | # As with config/secrets.yml, you never want to store sensitive information, 63 | # like your database password, in your source code. If your source code is 64 | # ever seen by anyone, they now have access to your database. 65 | # 66 | # Instead, provide the password as a unix environment variable when you boot 67 | # the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database 68 | # for a full rundown on how to provide these environment variables in a 69 | # production deployment. 70 | # 71 | # On Heroku and other platform providers, you may have a full connection URL 72 | # available as an environment variable. For example: 73 | # 74 | # DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" 75 | # 76 | # You can use this database configuration with: 77 | # 78 | # production: 79 | # url: <%= ENV['DATABASE_URL'] %> 80 | # 81 | production: 82 | <<: *default 83 | database: todos_graphql_api_production 84 | username: todos_graphql_api 85 | password: <%= ENV['TODOS_GRAPHQL_API_DATABASE_PASSWORD'] %> 86 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require_relative 'application' 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # In the development environment your application's code is reloaded on 5 | # every request. This slows down response time but is perfect for development 6 | # since you don't have to restart the web server when you make code changes. 7 | config.cache_classes = false 8 | 9 | # Do not eager load code on boot. 10 | config.eager_load = false 11 | 12 | # Show full error reports. 13 | config.consider_all_requests_local = true 14 | 15 | # Enable/disable caching. By default caching is disabled. 16 | # Run rails dev:cache to toggle caching. 17 | if Rails.root.join('tmp', 'caching-dev.txt').exist? 18 | config.action_controller.perform_caching = true 19 | 20 | config.cache_store = :memory_store 21 | config.public_file_server.headers = { 22 | 'Cache-Control' => "public, max-age=#{2.days.to_i}" 23 | } 24 | else 25 | config.action_controller.perform_caching = false 26 | 27 | config.cache_store = :null_store 28 | end 29 | 30 | # Store uploaded files on the local file system (see config/storage.yml for options) 31 | config.active_storage.service = :local 32 | 33 | # Don't care if the mailer can't send. 34 | config.action_mailer.raise_delivery_errors = false 35 | 36 | config.action_mailer.perform_caching = false 37 | 38 | # Print deprecation notices to the Rails logger. 39 | config.active_support.deprecation = :log 40 | 41 | # Raise an error on page load if there are pending migrations. 42 | config.active_record.migration_error = :page_load 43 | 44 | # Highlight code that triggered database queries in logs. 45 | config.active_record.verbose_query_logs = true 46 | 47 | 48 | # Raises error for missing translations 49 | # config.action_view.raise_on_missing_translations = true 50 | 51 | # Use an evented file watcher to asynchronously detect changes in source code, 52 | # routes, locales, etc. This feature depends on the listen gem. 53 | config.file_watcher = ActiveSupport::EventedFileUpdateChecker 54 | end 55 | -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # Code is not reloaded between requests. 5 | config.cache_classes = true 6 | 7 | # Eager load code on boot. This eager loads most of Rails and 8 | # your application in memory, allowing both threaded web servers 9 | # and those relying on copy on write to perform better. 10 | # Rake tasks automatically ignore this option for performance. 11 | config.eager_load = true 12 | 13 | # Full error reports are disabled and caching is turned on. 14 | config.consider_all_requests_local = false 15 | config.action_controller.perform_caching = true 16 | 17 | # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] 18 | # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). 19 | # config.require_master_key = true 20 | 21 | # Disable serving static files from the `/public` folder by default since 22 | # Apache or NGINX already handles this. 23 | config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? 24 | 25 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 26 | # config.action_controller.asset_host = 'http://assets.example.com' 27 | 28 | # Specifies the header that your server uses for sending files. 29 | # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache 30 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX 31 | 32 | # Store uploaded files on the local file system (see config/storage.yml for options) 33 | config.active_storage.service = :local 34 | 35 | # Mount Action Cable outside main process or domain 36 | # config.action_cable.mount_path = nil 37 | # config.action_cable.url = 'wss://example.com/cable' 38 | # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] 39 | 40 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 41 | # config.force_ssl = true 42 | 43 | # Use the lowest log level to ensure availability of diagnostic information 44 | # when problems arise. 45 | config.log_level = :debug 46 | 47 | # Prepend all log lines with the following tags. 48 | config.log_tags = [ :request_id ] 49 | 50 | # Use a different cache store in production. 51 | # config.cache_store = :mem_cache_store 52 | 53 | # Use a real queuing backend for Active Job (and separate queues per environment) 54 | # config.active_job.queue_adapter = :resque 55 | # config.active_job.queue_name_prefix = "todos_graphql_api_#{Rails.env}" 56 | 57 | config.action_mailer.perform_caching = false 58 | 59 | # Ignore bad email addresses and do not raise email delivery errors. 60 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 61 | # config.action_mailer.raise_delivery_errors = false 62 | 63 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 64 | # the I18n.default_locale when a translation cannot be found). 65 | config.i18n.fallbacks = true 66 | 67 | # Send deprecation notices to registered listeners. 68 | config.active_support.deprecation = :notify 69 | 70 | # Use default logging formatter so that PID and timestamp are not suppressed. 71 | config.log_formatter = ::Logger::Formatter.new 72 | 73 | # Use a different logger for distributed setups. 74 | # require 'syslog/logger' 75 | # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') 76 | 77 | if ENV["RAILS_LOG_TO_STDOUT"].present? 78 | logger = ActiveSupport::Logger.new(STDOUT) 79 | logger.formatter = config.log_formatter 80 | config.logger = ActiveSupport::TaggedLogging.new(logger) 81 | end 82 | 83 | # Do not dump schema after migrations. 84 | config.active_record.dump_schema_after_migration = false 85 | end 86 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # The test environment is used exclusively to run your application's 5 | # test suite. You never need to work with it otherwise. Remember that 6 | # your test database is "scratch space" for the test suite and is wiped 7 | # and recreated between test runs. Don't rely on the data there! 8 | config.cache_classes = true 9 | 10 | # Do not eager load code on boot. This avoids loading your whole application 11 | # just for the purpose of running a single test. If you are using a tool that 12 | # preloads Rails for running tests, you may have to set it to true. 13 | config.eager_load = false 14 | 15 | # Configure public file server for tests with Cache-Control for performance. 16 | config.public_file_server.enabled = true 17 | config.public_file_server.headers = { 18 | 'Cache-Control' => "public, max-age=#{1.hour.to_i}" 19 | } 20 | 21 | # Show full error reports and disable caching. 22 | config.consider_all_requests_local = true 23 | config.action_controller.perform_caching = false 24 | 25 | # Raise exceptions instead of rendering exception templates. 26 | config.action_dispatch.show_exceptions = false 27 | 28 | # Disable request forgery protection in test environment. 29 | config.action_controller.allow_forgery_protection = false 30 | 31 | # Store uploaded files on the local file system in a temporary directory 32 | config.active_storage.service = :test 33 | 34 | config.action_mailer.perform_caching = false 35 | 36 | # Tell Action Mailer not to deliver emails to the real world. 37 | # The :test delivery method accumulates sent emails in the 38 | # ActionMailer::Base.deliveries array. 39 | config.action_mailer.delivery_method = :test 40 | 41 | # Print deprecation notices to the stderr. 42 | config.active_support.deprecation = :stderr 43 | 44 | # Raises error for missing translations 45 | # config.action_view.raise_on_missing_translations = true 46 | end 47 | -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # ActiveSupport::Reloader.to_prepare do 4 | # ApplicationController.renderer.defaults.merge!( 5 | # http_host: 'example.org', 6 | # https: false 7 | # ) 8 | # end 9 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Avoid CORS issues when API is called from the frontend app. 4 | # Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin AJAX requests. 5 | 6 | # Read more: https://github.com/cyu/rack-cors 7 | 8 | # Rails.application.config.middleware.insert_before 0, Rack::Cors do 9 | # allow do 10 | # origins 'example.com' 11 | # 12 | # resource '*', 13 | # headers: :any, 14 | # methods: [:get, :post, :put, :patch, :delete, :options, :head] 15 | # end 16 | # end 17 | -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure sensitive parameters which will be filtered from the log file. 4 | Rails.application.config.filter_parameters += [:password] 5 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, '\1en' 8 | # inflect.singular /^(ox)en/i, '\1' 9 | # inflect.irregular 'person', 'people' 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym 'RESTful' 16 | # end 17 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # To enable root element in JSON for ActiveRecord objects. 12 | # ActiveSupport.on_load(:active_record) do 13 | # self.include_root_in_json = true 14 | # end 15 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t 'hello' 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t('hello') %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # The following keys must be escaped otherwise they will not be retrieved by 20 | # the default I18n backend: 21 | # 22 | # true, false, on, off, yes, no 23 | # 24 | # Instead, surround them with single quotes. 25 | # 26 | # en: 27 | # 'true': 'foo' 28 | # 29 | # To learn more, please read the Rails Internationalization guide 30 | # available at http://guides.rubyonrails.org/i18n.html. 31 | 32 | en: 33 | hello: "Hello world" 34 | -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- 1 | # Puma can serve each request in a thread from an internal thread pool. 2 | # The `threads` method setting takes two numbers: a minimum and maximum. 3 | # Any libraries that use thread pools should be configured to match 4 | # the maximum value specified for Puma. Default is set to 5 threads for minimum 5 | # and maximum; this matches the default thread size of Active Record. 6 | # 7 | threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } 8 | threads threads_count, threads_count 9 | 10 | # Specifies the `port` that Puma will listen on to receive requests; default is 3000. 11 | # 12 | port ENV.fetch("PORT") { 3000 } 13 | 14 | # Specifies the `environment` that Puma will run in. 15 | # 16 | environment ENV.fetch("RAILS_ENV") { "development" } 17 | 18 | # Specifies the number of `workers` to boot in clustered mode. 19 | # Workers are forked webserver processes. If using threads and workers together 20 | # the concurrency of the application would be max `threads` * `workers`. 21 | # Workers do not work on JRuby or Windows (both of which do not support 22 | # processes). 23 | # 24 | # workers ENV.fetch("WEB_CONCURRENCY") { 2 } 25 | 26 | # Use the `preload_app!` method when specifying a `workers` number. 27 | # This directive tells Puma to first boot the application and load code 28 | # before forking the application. This takes advantage of Copy On Write 29 | # process behavior so workers use less memory. 30 | # 31 | # preload_app! 32 | 33 | # Allow puma to be restarted by `rails restart` command. 34 | plugin :tmp_restart 35 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | post "/graphql", to: "graphql#execute" 3 | # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 4 | end 5 | -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- 1 | %w[ 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ].each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- 1 | test: 2 | service: Disk 3 | root: <%= Rails.root.join("tmp/storage") %> 4 | 5 | local: 6 | service: Disk 7 | root: <%= Rails.root.join("storage") %> 8 | 9 | # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) 10 | # amazon: 11 | # service: S3 12 | # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> 13 | # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> 14 | # region: us-east-1 15 | # bucket: your_own_bucket 16 | 17 | # Remember not to checkin your GCS keyfile to a repository 18 | # google: 19 | # service: GCS 20 | # project: your_project 21 | # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> 22 | # bucket: your_own_bucket 23 | 24 | # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) 25 | # microsoft: 26 | # service: AzureStorage 27 | # storage_account_name: your_account_name 28 | # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> 29 | # container: your_container_name 30 | 31 | # mirror: 32 | # service: Mirror 33 | # primary: local 34 | # mirrors: [ amazon, google, microsoft ] 35 | -------------------------------------------------------------------------------- /db/migrate/20180412202512_create_todo_lists.rb: -------------------------------------------------------------------------------- 1 | class CreateTodoLists < ActiveRecord::Migration[5.2] 2 | def change 3 | create_table :todo_lists do |t| 4 | t.string :title 5 | 6 | t.timestamps 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /db/migrate/20180412202955_create_items.rb: -------------------------------------------------------------------------------- 1 | class CreateItems < ActiveRecord::Migration[5.2] 2 | def change 3 | create_table :items do |t| 4 | t.string :name 5 | t.boolean :done 6 | t.references :todo_list, foreign_key: true 7 | 8 | t.timestamps 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- 1 | # This file is auto-generated from the current state of the database. Instead 2 | # of editing this file, please use the migrations feature of Active Record to 3 | # incrementally modify your database, and then regenerate this schema definition. 4 | # 5 | # Note that this schema.rb definition is the authoritative source for your 6 | # database schema. If you need to create the application database on another 7 | # system, you should be using db:schema:load, not running all the migrations 8 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations 9 | # you'll amass, the slower it'll run and the greater likelihood for issues). 10 | # 11 | # It's strongly recommended that you check this file into your version control system. 12 | 13 | ActiveRecord::Schema.define(version: 2018_04_12_202955) do 14 | 15 | # These are extensions that must be enabled in order to support this database 16 | enable_extension "plpgsql" 17 | 18 | create_table "items", force: :cascade do |t| 19 | t.string "name" 20 | t.boolean "done" 21 | t.bigint "todo_list_id" 22 | t.datetime "created_at", null: false 23 | t.datetime "updated_at", null: false 24 | t.index ["todo_list_id"], name: "index_items_on_todo_list_id" 25 | end 26 | 27 | create_table "todo_lists", force: :cascade do |t| 28 | t.string "title" 29 | t.datetime "created_at", null: false 30 | t.datetime "updated_at", null: false 31 | end 32 | 33 | add_foreign_key "items", "todo_lists" 34 | end 35 | -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) 7 | # Character.create(name: 'Luke', movie: movies.first) 8 | require 'faker' 9 | 10 | 20.times do 11 | TodoList.create( 12 | title: Faker::Lorem.word 13 | ) 14 | end 15 | 16 | lists = TodoList.all 17 | 18 | lists.each do |list| 19 | 5.times do 20 | list.items.create( 21 | name: Faker::Lorem.word, 22 | done: [true, false].sample 23 | ) 24 | end 25 | end 26 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/lib/tasks/.keep -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file 2 | -------------------------------------------------------------------------------- /spec/factories/item.rb: -------------------------------------------------------------------------------- 1 | FactoryBot.define do 2 | factory :item do 3 | sequence(:name) { |n| "Item name #{n}"} 4 | done false 5 | 6 | todo_list 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /spec/factories/todo_list.rb: -------------------------------------------------------------------------------- 1 | FactoryBot.define do 2 | factory :todo_list do 3 | sequence(:title) { |n| "#{Faker::Lorem.word}-#{n}"} 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/graphql/mutations/item_mutation_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe Mutations::ItemMutation do 2 | describe 'creating a new record' do 3 | # an item belongs to a tod list so we create one 4 | let!(:todo_list) { create(:todo_list) } 5 | 6 | it 'adds a new item' do 7 | args = { 8 | todo_list_id: todo_list.id, 9 | name: 'An amazing name', 10 | } 11 | 12 | subject.fields['create_item'].resolve(nil, args, nil) 13 | # The items count increases by 1 14 | expect(Item.count).to eq(1) 15 | # The name of the most recently created item matches the value we passed in args 16 | expect(Item.last.name).to eq('An amazing name') 17 | end 18 | end 19 | 20 | describe 'editing an item' do 21 | let!(:todo_list) { create(:todo_list) } 22 | let!(:item) { create(:item, todo_list: todo_list) } 23 | # making an item as done 24 | it 'marks an item as done' do 25 | args = { 26 | id: item.id 27 | } 28 | query_result = subject.fields['mark_item_done'].resolve(nil, args, nil) 29 | 30 | expect(query_result.done).to eq true 31 | end 32 | end 33 | 34 | describe 'deleting an item' do 35 | let!(:todo_list) { create(:todo_list) } 36 | let!(:item1) { create(:item, todo_list: todo_list) } 37 | let!(:item2) { create(:item, todo_list: todo_list) } 38 | let!(:item3) { create(:item, todo_list: todo_list) } 39 | 40 | it 'deletes the wueried item' do 41 | args = { 42 | id: item1.id 43 | } 44 | subject.fields['delete_item'].resolve(nil, args, nil) 45 | 46 | expect(Item.count).to eq 2 47 | expect(Item.all).not_to include(item1) 48 | end 49 | end 50 | end 51 | -------------------------------------------------------------------------------- /spec/graphql/mutations/todo_list_mutation_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe Mutations::TodoListMutation do 2 | describe 'creating a new record' do 3 | let(:args) do 4 | { 5 | title: 'Some random title' 6 | } 7 | end 8 | 9 | it 'increases todo lists by 1' do 10 | subject.fields['create_todo_list'].resolve(nil, args, nil) 11 | # adds one todo_list to the db 12 | expect(TodoList.count).to eq 1 13 | end 14 | end 15 | 16 | describe 'editing a todo list' do 17 | let!(:todo_list) { create(:todo_list, title: 'Old title') } 18 | 19 | it 'updates a todo list' do 20 | args = { 21 | id: todo_list.id, 22 | title: 'I am a new todo_list title' 23 | } 24 | 25 | query_result = Mutations::TodoListMutation.fields['edit_todo_list'].resolve(nil, args, nil) 26 | 27 | expect(query_result.title).to eq(args[:title]) 28 | # test that the number of todo lists doesn't change 29 | expect(TodoList.count).to eq 1 30 | end 31 | end 32 | 33 | describe 'deleting a todo list' do 34 | let!(:todo_list1) { create(:todo_list) } 35 | let!(:todo_list2) { create(:todo_list) } 36 | 37 | it 'deletes a todo list' do 38 | args = { 39 | id: todo_list1.id 40 | } 41 | query = subject.fields['delete_todo_list'].resolve(nil, args, nil) 42 | 43 | expect(query).not_to include(todo_list1) 44 | end 45 | 46 | it 'reduces the number of todo lists by one' do 47 | args = { 48 | id: todo_list1.id 49 | } 50 | subject.fields['delete_todo_list'].resolve(nil, args, nil) 51 | 52 | expect(TodoList.count).to eq 1 53 | end 54 | end 55 | end 56 | -------------------------------------------------------------------------------- /spec/graphql/query_types/item_query_type_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe QueryTypes::TodoListQueryType do 2 | # Challenge: try figure out the tests ;) 3 | end 4 | -------------------------------------------------------------------------------- /spec/graphql/query_types/todo_list_query_type_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe QueryTypes::TodoListQueryType do 2 | # avail type definer in our tests 3 | types = GraphQL::Define::TypeDefiner.instance 4 | 5 | # create fake todo lists using the todo_list factory 6 | let!(:todo_lists) { create_list(:todo_list, 3) } 7 | 8 | describe 'querying all todo lists' do 9 | 10 | it 'has a :todo_lists that returns a ToDoList type' do 11 | expect(subject).to have_field(:todo_lists).that_returns(types[Types::TodoListType]) 12 | end 13 | 14 | it 'returns all our created todo lists' do 15 | query_result = subject.fields['todo_lists'].resolve(nil, nil, nil) 16 | 17 | # ensure that each of our todo lists is returned 18 | todo_lists.each do |list| 19 | expect(query_result.to_a).to include(list) 20 | end 21 | 22 | # we can also check that the number of lists returned is the one we created. 23 | expect(query_result.count).to eq(todo_lists.count) 24 | end 25 | end 26 | 27 | describe 'querying a specific todo_list using it\'s id' do 28 | it 'returns the queried todo list' do 29 | # set the id of list1 as the ID 30 | id = todo_lists.first.id 31 | args = { id: id } 32 | query_result = subject.fields['todo_list'].resolve(nil, args, nil) 33 | 34 | # we should only get the first todo list from the db. 35 | expect(query_result).to eq(todo_lists.first) 36 | end 37 | end 38 | end 39 | -------------------------------------------------------------------------------- /spec/graphql/types/item_type_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe Types::ItemType do 2 | # avail type definer in our tests 3 | types = GraphQL::Define::TypeDefiner.instance 4 | 5 | it 'has an :id field of ID type' do 6 | # Ensure that the field id is of type ID 7 | expect(subject).to have_field(:id).that_returns(!types.ID) 8 | end 9 | 10 | it 'has a :name field of String type' do 11 | # Ensure the field is of String type 12 | expect(subject).to have_field(:name).that_returns(!types.String) 13 | end 14 | 15 | it 'has a :done field of Boolean type' do 16 | # Ensure the field is of Boolean type 17 | expect(subject).to have_field(:done).that_returns(types.Boolean) 18 | end 19 | end 20 | -------------------------------------------------------------------------------- /spec/graphql/types/todo_list_type_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe Types::TodoListType do 2 | # avail type definer in our tests 3 | types = GraphQL::Define::TypeDefiner.instance 4 | 5 | it 'has an :id field of ID type' do 6 | # Ensure that the field id is of type ID 7 | expect(subject).to have_field(:id).that_returns(!types.ID) 8 | end 9 | 10 | it 'has a :title field of String type' do 11 | # Ensure the field is of String type 12 | expect(subject).to have_field(:title).that_returns(!types.String) 13 | end 14 | end 15 | -------------------------------------------------------------------------------- /spec/models/item_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe Item, type: :model do 2 | it 'has a valid factory' do 3 | expect(build(:item)).to be_valid 4 | end 5 | 6 | let(:todo_list) { create(:todo_list) } 7 | let(:attributes) do 8 | { 9 | name: 'A test item', 10 | done: false, 11 | todo_list: todo_list 12 | } 13 | end 14 | 15 | let(:item) { create(:item, **attributes) } 16 | 17 | describe 'model validations' do 18 | # check that the fields received the right values 19 | it { expect(item).to allow_value(attributes[:name]).for(:name) } 20 | it { expect(item).to allow_value(attributes[:done]).for(:done) } 21 | # ensure that the title field is never empty 22 | it { expect(item).to validate_presence_of(:name) } 23 | # ensure that the name is unique for each item 24 | it { expect(item).to validate_uniqueness_of(:name)} 25 | end 26 | 27 | describe 'model associations' do 28 | it { expect(item).to belong_to(:todo_list) } 29 | end 30 | end 31 | -------------------------------------------------------------------------------- /spec/models/todo_list_spec.rb: -------------------------------------------------------------------------------- 1 | RSpec.describe TodoList, type: :model do 2 | it 'has a valid factory' do 3 | # Check that the factory we created is valid 4 | expect(build(:todo_list)).to be_valid 5 | end 6 | 7 | let(:attributes) do 8 | { 9 | title: 'A test title' 10 | } 11 | end 12 | 13 | let(:todo_list) { create(:todo_list, **attributes) } 14 | 15 | describe 'model validations' do 16 | # check that the title field received the right values 17 | it { expect(todo_list).to allow_value(attributes[:title]).for(:title) } 18 | # ensure that the title field is never empty 19 | it { expect(todo_list).to validate_presence_of(:title) } 20 | # ensure that the title is unique for each todo list 21 | it { expect(todo_list).to validate_uniqueness_of(:title)} 22 | end 23 | 24 | describe 'model associations' do 25 | # ensure a todo list has many items 26 | it { expect(todo_list).to have_many(:items) } 27 | end 28 | end 29 | -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- 1 | # This file is copied to spec/ when you run 'rails generate rspec:install' 2 | require 'spec_helper' 3 | ENV['RAILS_ENV'] ||= 'test' 4 | require File.expand_path('../../config/environment', __FILE__) 5 | # Prevent database truncation if the environment is production 6 | abort("The Rails environment is running in production mode!") if Rails.env.production? 7 | require 'rspec/rails' 8 | # Add additional requires below this line. Rails is not loaded until this point! 9 | 10 | # Requires supporting ruby files with custom matchers and macros, etc, in 11 | # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are 12 | # run as spec files by default. This means that files in spec/support that end 13 | # in _spec.rb will both be required and run as specs, causing the specs to be 14 | # run twice. It is recommended that you do not name files matching this glob to 15 | # end with _spec.rb. You can configure this pattern with the --pattern 16 | # option on the command line or in ~/.rspec, .rspec or `.rspec-local`. 17 | # 18 | # The following line is provided for convenience purposes. It has the downside 19 | # of increasing the boot-up time by auto-requiring all files in the support 20 | # directory. Alternatively, in the individual `*_spec.rb` files, manually 21 | # require only the support files necessary. 22 | # 23 | # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f } 24 | 25 | # Checks for pending migrations and applies them before tests are run. 26 | # If you are not using ActiveRecord, you can remove this line. 27 | ActiveRecord::Migration.maintain_test_schema! 28 | 29 | Shoulda::Matchers.configure do |config| 30 | config.integrate do |with| 31 | with.test_framework :rspec 32 | with.library :rails 33 | end 34 | end 35 | 36 | RSpec.configure do |config| 37 | # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures 38 | config.fixture_path = "#{::Rails.root}/spec/fixtures" 39 | 40 | # If you're not using ActiveRecord, or you'd prefer not to run each of your 41 | # examples within a transaction, remove the following line or assign false 42 | # instead of true. 43 | config.use_transactional_fixtures = true 44 | 45 | # RSpec Rails can automatically mix in different behaviours to your tests 46 | # based on their file location, for example enabling you to call `get` and 47 | # `post` in specs under `spec/controllers`. 48 | # 49 | # You can disable this behaviour by removing the line below, and instead 50 | # explicitly tag your specs with their type, e.g.: 51 | # 52 | # RSpec.describe UsersController, :type => :controller do 53 | # # ... 54 | # end 55 | # 56 | # The different available types are documented in the features, such as in 57 | # https://relishapp.com/rspec/rspec-rails/docs 58 | config.infer_spec_type_from_file_location! 59 | 60 | # Filter lines from Rails gems in backtraces. 61 | config.filter_rails_from_backtrace! 62 | # arbitrary gems may also be filtered via: 63 | # config.filter_gems_from_backtrace("gem name") 64 | 65 | # set up factory bot 66 | config.include FactoryBot::Syntax::Methods 67 | 68 | # set up database cleaner 69 | #start by truncating all the tables but then use the faster transaction strategy the rest of the time. 70 | config.before(:suite) do 71 | DatabaseCleaner.clean_with(:truncation) 72 | DatabaseCleaner.strategy = :transaction 73 | end 74 | # start the transaction strategy as examples are run 75 | config.around(:each) do |example| 76 | DatabaseCleaner.cleaning do 77 | example.run 78 | end 79 | end 80 | end 81 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | # This file was generated by the `rails generate rspec:install` command. Conventionally, all 2 | # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. 3 | # The generated `.rspec` file contains `--require spec_helper` which will cause 4 | # this file to always be loaded, without a need to explicitly require it in any 5 | # files. 6 | # 7 | # Given that it is always loaded, you are encouraged to keep this file as 8 | # light-weight as possible. Requiring heavyweight dependencies from this file 9 | # will add to the boot time of your test suite on EVERY test run, even for an 10 | # individual file that may not need all of that loaded. Instead, consider making 11 | # a separate helper file that requires the additional dependencies and performs 12 | # the additional setup, and require it from the spec files that actually need 13 | # it. 14 | # 15 | # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration 16 | RSpec.configure do |config| 17 | # rspec-expectations config goes here. You can use an alternate 18 | # assertion/expectation library such as wrong or the stdlib/minitest 19 | # assertions if you prefer. 20 | config.expect_with :rspec do |expectations| 21 | # This option will default to `true` in RSpec 4. It makes the `description` 22 | # and `failure_message` of custom matchers include text for helper methods 23 | # defined using `chain`, e.g.: 24 | # be_bigger_than(2).and_smaller_than(4).description 25 | # # => "be bigger than 2 and smaller than 4" 26 | # ...rather than: 27 | # # => "be bigger than 2" 28 | expectations.include_chain_clauses_in_custom_matcher_descriptions = true 29 | end 30 | 31 | # rspec-mocks config goes here. You can use an alternate test double 32 | # library (such as bogus or mocha) by changing the `mock_with` option here. 33 | config.mock_with :rspec do |mocks| 34 | # Prevents you from mocking or stubbing a method that does not exist on 35 | # a real object. This is generally recommended, and will default to 36 | # `true` in RSpec 4. 37 | mocks.verify_partial_doubles = true 38 | end 39 | 40 | # This option will default to `:apply_to_host_groups` in RSpec 4 (and will 41 | # have no way to turn it off -- the option exists only for backwards 42 | # compatibility in RSpec 3). It causes shared context metadata to be 43 | # inherited by the metadata hash of host groups and examples, rather than 44 | # triggering implicit auto-inclusion in groups with matching metadata. 45 | config.shared_context_metadata_behavior = :apply_to_host_groups 46 | 47 | # The settings below are suggested to provide a good initial experience 48 | # with RSpec, but feel free to customize to your heart's content. 49 | =begin 50 | # This allows you to limit a spec run to individual examples or groups 51 | # you care about by tagging them with `:focus` metadata. When nothing 52 | # is tagged with `:focus`, all examples get run. RSpec also provides 53 | # aliases for `it`, `describe`, and `context` that include `:focus` 54 | # metadata: `fit`, `fdescribe` and `fcontext`, respectively. 55 | config.filter_run_when_matching :focus 56 | 57 | # Allows RSpec to persist some state between runs in order to support 58 | # the `--only-failures` and `--next-failure` CLI options. We recommend 59 | # you configure your source control system to ignore this file. 60 | config.example_status_persistence_file_path = "spec/examples.txt" 61 | 62 | # Limits the available syntax to the non-monkey patched syntax that is 63 | # recommended. For more details, see: 64 | # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/ 65 | # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/ 66 | # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode 67 | config.disable_monkey_patching! 68 | 69 | # Many RSpec users commonly either run the entire suite or an individual 70 | # file, and it's useful to allow more verbose output when running an 71 | # individual spec file. 72 | if config.files_to_run.one? 73 | # Use the documentation formatter for detailed output, 74 | # unless a formatter has already been configured 75 | # (e.g. via a command-line flag). 76 | config.default_formatter = "doc" 77 | end 78 | 79 | # Print the 10 slowest examples and example groups at the 80 | # end of the spec run, to help surface which specs are running 81 | # particularly slow. 82 | config.profile_examples = 10 83 | 84 | # Run specs in random order to surface order dependencies. If you find an 85 | # order dependency and want to debug it, you can fix the order by providing 86 | # the seed, which is printed after each run. 87 | # --seed 1234 88 | config.order = :random 89 | 90 | # Seed global randomization in this process using the `--seed` CLI option. 91 | # Setting this allows you to use `--seed` to deterministically reproduce 92 | # test failures related to randomization by passing the same `--seed` value 93 | # as the one that triggered the failure. 94 | Kernel.srand config.seed 95 | =end 96 | end 97 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/tmp/.keep -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karanjaE/todos_graphql-api/5c030fddd022d17c053f1abcad09de6112dd445b/vendor/.keep --------------------------------------------------------------------------------