I have a question about JSONStore searchFields.
If I use number as the searchFields key and try to find data by WL.JSONStore.find method with <
number
WL.JSONStore.find
The actual difference between a JSON number and integer is
defining {age: 'number'} indexes 1 as 1.0, while defining{age: 'integer'} indexes 1 as 1.
Hope you understand