Also separately, for the graphql API, Is it correc...
# ask-community
l
Also separately, for the graphql API, Is it correct to use unix timestamp for the
RunsFilter
field
updatedAfter: Float
? i.e.
1654128000
for
Thu Jun 02 2022 00:00:00 GMT
?
🤖 1
o
under the hood, the float input value is converted into a datetime using
pendulum.from_timestamp(updatedAfterFloat)
. This expects a unix timestamp (and I believe automatically detects if it's in microseconds or milliseconds). (so short answer is yes that's correct)