allran / nexus-plugin-prisma

A plugin for Nexus that integrates Prisma

Home Page:http://nxs.li/plugins/prisma

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@morgothulhu/nexus-plugin-prisma

This plugin has been upgraded to support Prisma 4.0+. Latest version of prisma supported: Prisma 4.7.1


Note: A replacement for this library is under development and available in early preview. More details in #1039. Since the Prisma team is no longer keeping this library up to date with new Prisma versions, we have forked it.

This plugin integrates Prisma into Nexus. It gives you an API you to project fields from models defined in your Prisma schema into your GraphQL API. It also gives you an API to build GraphQL root fields that allow your API clients to query and mutate data.

You can find the documentation on the Nexus website.

Note2: This package is a fork from kenchi's. Thank you for your support pre-prisma 4.0.

Usage notes

AWS Lambda packaging

Make sure to include @prisma/internals in your AWS Lambda packaged node_modules folder, in addition to the @prisma/client package.

To mitigate overall package size issues, remove all libquery_engine-debian-openssl-1.1.x.so.node files under node_modules/@prisma as they are not leveraged by AWS Lambda.

Installation

npm install @morgothulhu/nexus-plugin-prisma
# OR
yarn add @morgothulhu/nexus-plugin-prisma

Package management

Build, test

build

yarn
yarn build

test

yarn test

If tests need snapshot updates, run yarn test:run:rebaseSnapshots

Windows pre-requisites

Install SQLite3

(follow instructions from here)

Interactive test run

Windows 32 (as an example)

.\node_modules\.bin\jest --forceExit --verbose=true --useStderr=true --silent=false -t "supports nested query with one id field" --watch

.\node_modules\.bin\jest --forceExit --verbose=true --useStderr=true --silent=false --watch ./tests/app.test.ts

validate sqlite install

[System.Environment]::SetEnvironmentVariable("DEBUG", "*")
cls ; .\node_modules\.bin\jest --forceExit --verbose --useStderr -t "supports custom resolver for t.crud" custom-

About

A plugin for Nexus that integrates Prisma

http://nxs.li/plugins/prisma

License:MIT License


Languages

Language:TypeScript 98.1%Language:JavaScript 1.9%