https://dagster.io/ logo
#dagster-support
Title
# dagster-support
l

Liezl Puzon

06/02/2022, 6:42 PM
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

owen

06/02/2022, 8:09 PM
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)