Sha256: bb2e335bfd3088815068866a23355578b706a04e062d6c4d9290a73156d5bc92
Contents?: true
Size: 921 Bytes
Versions: 76
Compression:
Stored size: 921 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe GraphQL::StaticValidation::MutationRootExists do include StaticValidationHelpers let(:query_string) {%| mutation addBagel { introduceShip(input: {shipName: "Bagel"}) { clientMutationId shipEdge { node { name, id } } } } |} let(:schema) { query_root = GraphQL::ObjectType.define do name "Query" description "Query root of the system" end GraphQL::Schema.define do query query_root end } it "errors when a mutation is performed on a schema without a mutation root" do assert_equal(1, errors.length) missing_mutation_root_error = { "message"=>"Schema is not configured for mutations", "locations"=>[{"line"=>2, "column"=>5}], "fields"=>["mutation addBagel"], } assert_includes(errors, missing_mutation_root_error) end end
Version data entries
76 entries across 76 versions & 1 rubygems