I have a question, I have two types in my datamode...
# orm-help
c
I have a question, I have two types in my datamodel schema... for example one is
Post
and one is
UserData
... they are both just types in my datamodel schema with properties... but Post gets these functions made for it by prisma:
createManyPosts
, but also
createPost
, where as
UserData
only gets
createManyUserDatas
and not the singular
createUserData
.... why is this?? really confused