class ActiveFedora::SolrService

def construct_query_for_ids(id_array)

Parameters:
  • id_array (Array) -- the ids that you want included in the query
def construct_query_for_ids(id_array)
  Deprecation.warn SolrService, "SolrService.construct_query_for_ids is deprecated. Use SolrQueryBuilder.construct_query_for_ids instead. This will be removed in active-fedora 10.0"
  SolrQueryBuilder.construct_query_for_ids(id_array)
end