Hi, I am trying to follow along with your tutorial. I am at the part where we have just added the mutations_variable.rb. I've included the line config.include GraphQL::MutationVariables to my rails_helper.rb inside of the Rspec.configure block.
The issue I am getting happens when I run rspec spec to initialize the tests.
Hi, I am trying to follow along with your tutorial. I am at the part where we have just added the
mutations_variable.rb. I've included the lineconfig.include GraphQL::MutationVariablesto myrails_helper.rbinside of the Rspec.configure block.The issue I am getting happens when I run
rspec specto initialize the tests.Failure/Error: config.include GraphQL::MutationVariablesNameError: uninitialized constant GraphQL::MutationVariablesIt doesn't seem to recognize the line I included in my
rails_helper.rb. Any suggestions?It's a typo, your file name must match module name, so GraphQL::MutationVariables
Must be in file mutation_variables.rb,
not mutations_variable.rb