module GraphQLDocs

Constants

VERSION

Public Class Methods

build(options) click to toggle source
# File lib/graphql-docs.rb, line 16
def build(options)
  # do not let user provided values overwrite every single value
  %i[templates landing_pages].each do |opt|
    next unless options.key?(opt)

    GraphQLDocs::Configuration::GRAPHQLDOCS_DEFAULTS[opt].each_pair do |key, value|
      options[opt][key] = value unless options[opt].key?(key)
    end
  end

  options = GraphQLDocs::Configuration::GRAPHQLDOCS_DEFAULTS.merge(options)

  filename = options[:filename]
  schema = options[:schema]

  raise ArgumentError, 'Pass in `filename` or `schema`, but not both!' if !filename.nil? && !schema.nil?

  raise ArgumentError, 'Pass in either `filename` or `schema`' if filename.nil? && schema.nil?

  if filename
    raise TypeError, "Expected `String`, got `#{filename.class}`" unless filename.is_a?(String)

    raise ArgumentError, "#{filename} does not exist!" unless File.exist?(filename)

    schema = File.read(filename)
  else
    raise TypeError, "Expected `String` or `GraphQL::Schema`, got `#{schema.class}`" if !schema.is_a?(String) && !schema_type?(schema)

    schema = schema
  end

  parser = GraphQLDocs::Parser.new(schema, options)
  parsed_schema = parser.parse

  generator = GraphQLDocs::Generator.new(parsed_schema, options)

  generator.generate
end

Private Class Methods

schema_type?(object) click to toggle source
# File lib/graphql-docs.rb, line 55
        def schema_type?(object)
  object.respond_to?(:ancestors) && object.ancestors.include?(GraphQL::Schema)
end