class ActiveFedora::SolrService
def construct_query_for_rel(field_pairs, join_with = 'AND')
-
join_with(String) -- ('AND') the value we're joining the clauses with -
field_pairs(Hash, Array) -- key is the predicate, value is the target_uri>
def construct_query_for_rel(field_pairs, join_with = 'AND') Deprecation.warn SolrService, "SolrService.construct_query_for_rel is deprecated. Use SolrQueryBuilder.construct_query_for_rel instead. This will be removed in active-fedora 10.0" SolrQueryBuilder.construct_query_for_rel(field_pairs, join_with) end