https://dagster.io/ logo
#ask-community
Title
# ask-community
m

madhurt

05/03/2022, 11:38 AM
Hi, I was using graphQL APIs of Dagster and came across
PipelineRunsFilter
type which has an
updatedAfter: String
field. My only question is — how to pass values to it. As in, which format for date / time does it expect? Is it an
timestamp since epoch
or what?
p

prha

05/03/2022, 4:23 PM
Depending on your version,
updatedAfter
might take a
Float
(this got changed in
0.13.15
), which is number of seconds since epoch
prior to that, it used
pendulum.parse
to process the
updatedAfter
value, which I think (according to their documentation)
supports the RFC 3339 format, most ISO 8601 formats and some other common formats.
m

madhurt

05/03/2022, 4:26 PM
I am using 0.12.15 @prha
p

prha

05/03/2022, 4:36 PM
Here’s a link to the
pendulum.parse
accepted formats: https://pendulum.eustace.io/docs/#parsing