Hello there, I am pretty much new to SOLR and my question is about querying SOLR. Beginning from what I am doing:
I have updated the index with the following SOLR document: *<add> <doc> <field name="id">name-2</field> <field name="ap_firstName">Moiz</field> ** <field name="ap_lastName">Bhukhiya</field>* * </doc> </add> *I know how to search for a particular field like *q=ap_firstName:Moiz*which result this document. But how do I search in the entire document? I tried *q=Moiz* but it didn't work. Could you please tell me how can I query the entire document instead of querying in one field? In my schema I have *ap_** as a dynamic field. Thanks, Moiz