GraphQL Fields Projection
This library create field projection from GraphQL query
NOTE: Since version 1.1.0 the default returnType is string
Why using this?
There are many libraries can do the same function. However, starting in MongoDB 4.4, the Path Collision Restrictions are introduced . And it is illegal to project an embedded document with any of the embedded document's fields:
db.inventory.find({}, { size: 1, "size.uom": 1 });
- And this library is created to remove the collision.
- This library can work with dataloader also
Install
npm install graphql-fields-projection
How to
Please see the following examples
Example 1: simplest usecase
Given the following query
query user {
user(id: 123) {
id
address
info {
firstName
lastName
}
}
}
const { createSelectedFields } = require('graphql-fields-projection');
resolve(parent, args, context, info){
const selectedFields = createSelectedFields(info);
}
Example 2: Get more fields
Given the following query
query user {
user(id: 123) {
id
address
info {
firstName
lastName
}
}
}
const { createSelectedFields } = require('graphql-fields-projection');
resolve(parent, args, context, info){
const selectedFields = createSelectedFields(info, { additionalFields: ['info', 'address', 'timezone'] });
}
Example 3: Get child path
Given the following query
query purchase {
purchase(id: 123) {
id
buyer {
id
address
info {
firstName
lastName
}
}
product {
id
}
}
}
const { createSelectedFields } = require('graphql-fields-projection');
resolve(parent, args, context, info){
const selectedFields = createSelectedFields(info, { path: 'buyer' });
const selectedFields2 = createSelectedFields(info, {
path: 'buyer', additionalFields: ['info', 'address', 'timezone'],
});
}
Example 4: returnTypes
NOTE: Since version 1.1.0 the default returnType is string
By the default the return result will be an string of projected fields. But you can also get the array or object
query user {
user(id: 123) {
id
address
info {
firstName
lastName
}
}
}
const { createSelectedFields } = require('graphql-fields-projection');
resolve(parent, args, context, info){
const resultString = createSelectedFields(info);
const resultString = createSelectedFields(info, { returnType : 'string' } );
const resultArray2 = createSelectedFields(info, { returnType : 'array' });
const resultObject = createSelectedFields(info, { returnType : 'object' });
}
Example 5: Using with Dataloader
query purchase {
purchase(id: 123) {
id
buyer {
id
address
info {
firstName
lastName
}
}
products {
id
sku
name
price
}
}
}
const { createSelectedFields, createMergedSelectedFields } = require('graphql-fields-projection');
__resolveReference(parent, context, info) {
const { loaders } = context;
const selectedFields = createSelectedFields(info, { returnType : 'array' });
return loaders.product.load(JSON.stringify({ id: parent.id, selectedFields }));
}
async function batchProducts(keys) {
const { ids: productIds, selectedFields } = createMergedSelectedFields(keys);
const products = await Product.find({ _id: { $in: productIds } })
.select(selectedFields)
.lean();
return products;
}
The function createMergedSelectedFields()
supports the following options: