How can I get the 'created_time' of a MID by composeDB graphql in PG

I created a Comment model, and I want to get the time to submit comments on a Post.
Only can I do it in a way that I define date property on Comment model?

Yes, that is correct, we do not have a built-in timestamp so you would want to create one or more date properties and set them when you submit the comment. There are timestamps down in the actual ceramic stream document but these are not exposed in the model interface.

1 Like