Date query error

As you can see i query created before ‘02/23/2016 09:58:09’ but it gave me all on 2/23/2016

Make sure to click the “Show dates in GMT0” toggle (set it to ON) and try searching against the timestamps displayed in that mode.

Thanks , but what is the format in code when GMT0 ?

Anyone who have this kind of problem , this is the answer

var formatter = NSDateFormatter();
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss ZZZ";
let defaultTimeZoneStr = formatter.stringFromDate(date);
    // "2014-07-23 11:01:35 -0700" <-- same date, local, but with seconds
formatter.timeZone = NSTimeZone(abbreviation: "UTC");