Hi!
I have a bit of an issue searching a user by custom attribute `is_desktop`. User attributes were set with a call to `batch` API with a following payload
{
api_key: process.env.AMPLITUDE_TOKEN,
events: [
{
user_id: userId,
time: 1652278787263,
event_type: '$identify',
user_properties: {
$set: {
is_desktop: 1,
is_real_estate: 0,
},
},
},
],
}
User record got successfully updated, but doesn’t appear in search results, even after 10 hours since update

For some reason integer values in search window didn’t appear either, only True, False and None are available

What should i do to make it work?