Any one know if you can set the ```createdAt: Date...
# orm-help
h
Any one know if you can set the
Copy code
createdAt: DateTime!
and
Copy code
updatedAt: DateTime!
values by Seeding or Import your data? I’m trying to write a parser that is importing data from other data sources and it would be nice not to have to make a ‘created_at’, and ‘updated_at’ property…
s
I think those values are upated when you do a Create or an Update via the prisma API. So you can't upate those values if your parser is written with an other language than the one supported by prisma client API unless you are creating your own (by sending the right header and body to the 4466 endpoint)
n
seeding - no import - yes