Sha256: 9aa81ba3e882ab6a40e9da52c5d3901c198ca2656f82093a5f0add96ec425772

Contents?: true

Size: 1.43 KB

Versions: 8

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true
require "spec_helper"

describe GraphQL::Introspection::SchemaType do
  let(:query_string) {%|
    query getSchema {
      __schema {
        types { name }
        queryType { fields { name }}
        mutationType { fields { name }}
      }
    }
  |}
  let(:result) { Dummy::Schema.execute(query_string) }

  it "exposes the schema" do
    expected = { "data" => {
      "__schema" => {
        "types" => Dummy::Schema.types.values.map { |t| t.name.nil? ? (p t; raise("no name for #{t}")) : {"name" => t.name} },
        "queryType"=>{
          "fields"=>[
            {"name"=>"allAnimal"},
            {"name"=>"allAnimalAsCow"},
            {"name"=>"allDairy"},
            {"name"=>"allEdible"},
            {"name"=>"allEdibleAsMilk"},
            {"name"=>"cheese"},
            {"name"=>"cow"},
            {"name"=>"dairy"},
            {"name"=>"deepNonNull"},
            {"name"=>"error"},
            {"name"=>"executionError"},
            {"name"=>"favoriteEdible"},
            {"name"=>"fromSource"},
            {"name"=>"maybeNull"},
            {"name"=>"milk"},
            {"name"=>"root"},
            {"name"=>"searchDairy"},
            {"name"=>"valueWithExecutionError"},
          ]
        },
        "mutationType"=> {
          "fields"=>[
            {"name"=>"pushValue"},
            {"name"=>"replaceValues"},
          ]
        },
      }
    }}
    assert_equal(expected, result)
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
graphql-1.7.3 spec/graphql/introspection/schema_type_spec.rb
graphql-1.7.2 spec/graphql/introspection/schema_type_spec.rb
graphql-1.7.1 spec/graphql/introspection/schema_type_spec.rb
graphql-1.7.0 spec/graphql/introspection/schema_type_spec.rb
graphql-1.6.8 spec/graphql/introspection/schema_type_spec.rb
graphql-1.6.7 spec/graphql/introspection/schema_type_spec.rb
graphql-1.6.6 spec/graphql/introspection/schema_type_spec.rb
graphql-1.6.5 spec/graphql/introspection/schema_type_spec.rb