I want to disable case sensitive matching when running a cypher query

For example, if some property value is stored as 'Rice' it should matched with 'rice' as well.

I stored node property name: 'Rice'.

MATCH (n: Crop {name: 'rice'}) REUTRN n; -----> Gives empty result.

I want this to match with the node with value 'Rice'. Is there any possibility of achieving this without modifying the query and making some changes in database settings?