graphql-info-transformer

0.0.1 • Public • Published

GraphQL Info Transformer

This is a proof of concept to transform GraphQL's info into an object that can be consumed by Prisma's PhotonJS (API schema and DB schema must match). Can be useful when migrating from Prisma v1 to v2 (i.e. from Prisma Binding to PhotonJS).

users(_, args, ctx, info) {
  return photon.users.findMany({
    select: infoToPhotonSelect(info)
  })
})

Based on this article and some GraphQL-related projects.

Installation

npm install graphql-info-transformer
yarn add graphql-info-transformer

Prisma2 example

In the example folder:

  1. Setup DB
yarn prisma2 dev
yarn seed
  1. Test query

Run the project with yarn start and open the Playground to try the following query:

query {
  users {
    id
    name
    email
    posts(where: { title: { contains: "prisma" } }, orderBy: { title: asc }) {
      id
      content
      title
    }
  }
}

It should show only 2 of the 3 posts in the seed.

/graphql-info-transformer/

    Package Sidebar

    Install

    npm i graphql-info-transformer

    Weekly Downloads

    1

    Version

    0.0.1

    License

    MIT

    Unpacked Size

    4.58 kB

    Total Files

    4

    Last publish

    Collaborators

    • frankdiox