How to correctly parse strings as datetimes?
I am using the Python SDK, and the relevant line from the source is this link:
elif isinstance(value, str):
self._value = datetime.strptime(value, "%Y-%m-%d")
But the string is a full timestamp, eg “2021-02-04T09:43:39.717-08:00”.
Can I tell CloudQuery to expect this format?
Answering my own question: it’s possible to transform the data from a string to a datetime in the table resolver, then CloudQuery detects it properly.