module GraphQL::StaticValidation::QueryRootExists

def on_operation_definition(node, _parent)

def on_operation_definition(node, _parent)
  if (node.operation_type == 'query' || node.operation_type.nil?) && context.warden.root_type_for_operation("query").nil?
    add_error(GraphQL::StaticValidation::QueryRootExistsError.new(
      'Schema is not configured for queries',
      nodes: node
    ))
  else
    super
  end
end