
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
dataloader-align-results
Advanced tools
Takes your back-end results and returns an Array acceptable to DataLoader.
Takes your back-end results and returns an Array acceptable to DataLoader.
npm install dataloader-align-results --save
To uphold the constraints of the DataLoader batch function, e.g. new DataLoader(callBatchGetUsers)
,
the batch function must return an Array of values the same length as the Array of keys,
and re-order them to ensure each index aligns with the original keys.
The back-end service typically returns results in a different order than we requested, and it typically omits a result for some keys when no value exists for that key.
This utility takes such back-end results and returns an Array acceptable to DataLoader.
dataLoaderAlignResults({ graphqlType, serializeDataLoaderKey, serializeRecordKey, onError });
grapgqlType
(string) - Type of GraphQL result to return for each DataLoader key
null
.null
.null
.null
.serializeDataLoaderKey
(optional, function(key)) - Function to serialize a key passed from DataLoader.
new DataLoader(keys => {/* ... */}, { cacheKeyFn: serializeDataLoaderKey })
,
than to dataLoaderAlignResults.key => key.toString()
.serializeRecordKey
(optional, function(record) or string) - Function to serialize key from the record.
record => record[serializeRecordKey].toString()
is used.onError
(optional, function(msg, detail)) - Handler for terminal errors.
isStrict
(optional, boolean) - It may be more convenient at times to return []
for a missing key rather than null
,
as the null
may require special processing in the calling code.
true
- Return null
.[]
.dataLoaderAlignResults returns a function(keys, resultsArray)
which should be passed to DataLoader
as its first parameter.
keys
- The keys passed from the DataLoader.resultsArray
- Result from back-end service after processing the keys
.
keys
.The batch loader function calls onError if it finds results incompatible with graphqlType.
However it cannot check for a null
final result for '[]!' or '[!]!' because DataLoader itself
builds the final Array from elements returned by the batch loader plus elements from the cache.
const DataLoader = require('dataloader');
const dataloaderAlignResults = require('dataloader-align-results');
const userLoader = new DataLoader(keys => myBatchGetUsers(keys));
const userAlignResults = dataloaderAlignResults({
graphqlType: '!', onError: (msg, detail) => { throw new Error(`${msg}\n${detail}`); } });
// These logical reads will be resolved with one call to the back-end service.
Promise.all([
userLoader.load(3),
userLoader.load(2),
userLoader.load(4),
userLoader.load(1),
])
.then(resolvedResults => { /* ... */ });
function myBatchGetUsers(keys) {
return callBatchGetUsers(keys) // Call back-end service.
.then(resultsArray => userAlignResults(resultsArray, keys));
}
Copyright (c) 2017
Licensed under the MIT license.
v0.4.0 (2017-10-09)
FAQs
Takes your back-end results and returns an Array acceptable to DataLoader.
We found that dataloader-align-results demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.