Yaakov
10/19/2021, 3:57 PMprisma db seed command? In other words, to get all the insert statements without actually running them?Austin
10/19/2021, 6:22 PMPrismaClient to log your queries as they execute like this:
const prisma = new PrismaClient({
log: ['query']
})
but we don't have the preview functionality you described for prisma db seed. If this is something you would like to see, please tell us more about your use case in a feature request.Yaakov
10/19/2021, 6:33 PMYaakov
10/19/2021, 6:47 PM