I have an issue where some dates do not get pulled from data source while others do.
All source dates are in python datetime.date object. Example of two dates where one works, one does not. Along with relevant code snipped from schema/model:
1995-05-01
1990-09-10
fields: {
rozuctovanie_vyhotovenie: {type: "date"},
rozuctovanie_fakturacia: {type: "date"},
}
And resulting dates shown in final grid; as you can see the September date didn't even get loaded. I'm honestly unsure if this is a problem of sourcing from python datetime.date object or something else.