```search.createFilter({ name: 'modified', oper...
# suitescript
m
Copy code
search.createFilter({
	name: 'modified',	
	operator: 'after',
	values: '2020-07-06 15:10'
});
b
filters use the timezone of the current user
you can use N/format to convert a Date into a datetime string in the current user's date time format
and then remove the seconds
or you can use something like moment timezone to create the date time string yourself.