0.0.2 • Published 5 months ago

@carretto/projection v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

@carretto/mongodb

This is the adapter to use carretto with mongodb.

Install

npm i @carretto/mongodb

Usage

const loader = new DataloaderMongoDB(db.collection('Users'))

// resolver.ts


export async function(
  source,
  args,
  context,
  info
) {
  await loader.load({ query: args.query, projection: myFunctionToGetProjection(info), skip: args.skip, limit: args.limit })
}