graphql-map-selections
TypeScript icon, indicating that this package has built-in type declarations

1.1.8 • Public • Published

graphql-map-selections

A simple package to map selections from graphql resolver info object.

To install:

> yarn add graphql-map-selections

or

> npm install graphql-map-selections

Basic Usage:

import { mapSelections } from "graphql-map-selections";

const resolverFn = (source, args, context, info) => {
    const select = mapSelections(info)
    ...
}

Example:

Graphql query to fetch profile:

query MyProfile {
    myProfile {
        id
        firstName
        lastName
        email
        phoneNumber
        address {
            id
            city
            country
            street
            postalCode
        }
    }
}

Query resolver function:

import { mapSelections } from "graphql-map-selections";

const resolvers = {
    Query: {
        myProfile: (source, args, context, info) => {
            const select = mapSelections(info)
            ...
        }
    }
}

In above resolver function, the mapSelectons(info) will return:

{
    id: true,
    firstName: true,
    lastName: true,
    email: true,
    phoneNumber: true,
    address {
        id: true,
        city: true,
        country: true,
        street: true,
        postalCode: true,
    }
}

Usage with Prisma

import { mapSelections, toPrismaSelect } from "graphql-map-selections";

const resolvers = {
    Query: {
        myProfile: async (source, args, context, info) => {
            const select = mapSelections(info)
            const prismaSelect = toPrismaSelect(select)
            await prismaClient.profile.findUnique({where: {id: args.id}, ...select})
            ...
        }
    }
}

Package Sidebar

Install

npm i graphql-map-selections

Weekly Downloads

1

Version

1.1.8

License

MIT

Unpacked Size

8.91 kB

Total Files

11

Last publish

Collaborators

  • susantlalshrestha