Interface SelectApi
-
@Path("/{indexType:cores|collections}/{indexName}/select") public interface SelectApi
V2 API implementation shim for Solr's querying or otherwise inspecting documents in a core or collection.Due to the complexity and configurability of Solr's '/select' endpoint, this interface doesn't attempt to be exhaustive in describing /select inputs and outputs. Rather, it exists to give Solr's OAS (and the clients generated from that) an approximate view of the endpoint until its inputs and outputs can be understood more fully.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlexibleSolrJerseyResponse
jsonQuery(InputStream structuredRequest)
FlexibleSolrJerseyResponse
query(String query, List<String> filterQueries, String fieldList, Integer rows)
-
-
-
Method Detail
-
query
@GET FlexibleSolrJerseyResponse query(@QueryParam("q") String query, @QueryParam("fq") List<String> filterQueries, @QueryParam("fl") String fieldList, @QueryParam("rows") Integer rows)
-
jsonQuery
@POST FlexibleSolrJerseyResponse jsonQuery(InputStream structuredRequest)
-
-