Skip to content

mikeburgh/prisma-nexus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup

Run

npm install

npx prisma db push --preview-feature

npx prisma db seed --preview-feature

npm run server

Then use the following query and note that it's not finding any child objects (despite query returning them)

query example {
    parents {
        id
      	child { 
          	id
        }
    }
}

Then in the schema, change Decimal to Int and run

npx prisma db push --preview-feature

npx prisma db seed --preview-feature

npm run server

Then re test with the same query from above and it works

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors