I have been able to create the core, search index and also able to make queries using CQL and Solr Admin. But I am having trouble making spatial parameter, facet fields, facet pivots and filterquery(fq) in Gremlin. I am aware that we can make the Geo/Solr related queries using CQL with the solr_query field. But is there a way we can make these calls using gremlin?
Currently I am making a query like this using Solr,
val test= db.searchSolrClient .query("*:*") .filteredQuery("vertex_type:event") .facetPivotFields("state,region") .rows(9999) .getResultAsMap() .facetPivots
Is there a way we can make something like this using Gremlin?