When creating a record, is there now a way to incl...
# orm-help
c
When creating a record, is there now a way to include relations in the return value? Or would I have to make a separate query?
j
According to the docs https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#create You should be able to specify the
include
for the relations to be returned on the object
👍 1