module GraphQL::Schema::BuildFromDefinition

def from_definition(schema_superclass, definition_string, parser: GraphQL.default_parser, **kwargs)

Other tags:
    See: {Schema.from_definition} -
def from_definition(schema_superclass, definition_string, parser: GraphQL.default_parser, **kwargs)
  if defined?(parser::SchemaParser)
    parser = parser::SchemaParser
  end
  from_document(schema_superclass, parser.parse(definition_string), **kwargs)
end