I am using Solr 6.6. I am trying atomic updates on a date field. The field is defined in schema as
field name="inventory_update_time" type="date" indexed="true" stored="true" omitNorms="true" multiValued="false" omitTermFreqAndPositions="true"/
and I am firing the curl request as curl 'localhost:8081/solr/sitename/update' -H 'Content-type:application/json' -d '[{"id":"9988062","inventoryUpdateTime":"2018-07-03T06:29:29Z"}]'
but the date is not getting updated.
any suggestions?