I have a Solr 6.5 index with schema: OrderId, OrderType, AirNumber & more..
My document looks like:
"OrderId":"-7878676767676",
"OrderType:"["Fee",
"Insurance",
"Air",
"Fee"]
"AirNumber":["",
"",
"[2608620989121, 2608620989123]",
""],
When I query for AirNumber, I am not able to retrieve the above order.
q=AirNumber:2608620989121
My schema for AirNumber is:
<field name="AirNumber" type="token" indexed="true" stored="true" multiValued="true" omitTermFreqAndPositions="false"/>
I have tried different combinations to query & I have tried with AirNumber as "string" too, Nothing works. What am I missing?