Hey again. Once again I’m asking for help about th...
# orm-help
l
Hey again. Once again I’m asking for help about this https://prisma.slack.com/archives/CA491RJH0/p1551189846440400. Or what is other place I could write to get help from?
h
Hi, How much data are you passing to bindings
also, if this is a new project please use prisma
l
This is not a new project, I have quite a few code in there already. I don’t think I want to switch at the moment. I’m creating 2 users, total of 150 loc maybe. The seed execution finishes in ~300 ms, so it’s not a problem. The problem is that the shell command
prisma seed
never exits
h
prisma seed? I think this is a graph.cool project
l
This is prisma project
h
The code uses graphcool-bindings, please change that to Prisma client
l
I have seed in
prisma.yml
and I don’t want to use
Prisma-client
since it has negative impact on my current codebase - I tried it already (to much things to implement in addition).
Copy code
# prisma.yml

datamodel:
  - datamodel.graphql
  - enums.graphql

secret: ${env:PRISMA_SECRET}

endpoint: ${env:PRISMA_ENDPOINT}

hooks:
  post-deploy:
    - echo "Deployment finished"
    - graphql get-schema

seed:
  run: node ./database/seed.js