You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since created_at and modified_at use the default marshmallow datetime field, its very hard to pass filter parameter validation. As noted before in #188, Marshmallow has issues deserializing datetime fields bc it doesn't ever hit the logic which uses dateutils parser (which is much better at parsing various formats of datetime).
We should consider using our custom marshmallow datetime field for created_at and modified_at in our base schema.
Additionally, we may want to allow people to search by just dates rather than exact timestamp when using created_at, modified_at filter parameters.
The text was updated successfully, but these errors were encountered:
Since
created_at
andmodified_at
use the default marshmallow datetime field, its very hard to pass filter parameter validation. As noted before in #188, Marshmallow has issues deserializing datetime fields bc it doesn't ever hit the logic which uses dateutils parser (which is much better at parsing various formats of datetime).We should consider using our custom marshmallow datetime field for
created_at
andmodified_at
in our base schema.Additionally, we may want to allow people to search by just dates rather than exact timestamp when using
created_at
,modified_at
filter parameters.The text was updated successfully, but these errors were encountered: