I'm trying to isolate a range based on custom timestamps; example:
myTimestamp: 12:30:42:069
Date type: string
I'm getting this error:
Discover: Expected AND, OR, end of input, whitespace but ":" found.
Attempts at QSS:
myTimestamp >12:30:42:069 // nope
myTimestamp >'12:30:42:069' // nope
myTimestamp >"12:30:42:069" // nope
myTimestamp.keyword >12:30:42:069 // nope
myTimestamp.keyword >'12:30:42:069' // nope
myTimestamp.keyword >"12:30:42:069" // nope
How can I apply this filter condition?
Thx, Keith :^)