mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
no-issue This module was being shared between multiple parts of the codebase, the core/shared directory is a stopgap before we move it out to mongo-utils.
26 lines
536 B
Markdown
26 lines
536 B
Markdown
# nql-map-key-values
|
|
|
|
This utility returns a transformer which can be passed to the `@nexes/nql` library to transform queries
|
|
|
|
### Usage
|
|
|
|
```js
|
|
const nql = require('@nexes/nql');
|
|
const mapKeyValues = require('nql-map-key-values');
|
|
|
|
nql('good:true', {
|
|
transformer: mapKeyValues({
|
|
key: {
|
|
from: 'good',
|
|
to: 'bad'
|
|
},
|
|
values: [{
|
|
from: true,
|
|
to: false
|
|
}, {
|
|
from: false,
|
|
to: true
|
|
}]
|
|
});
|
|
}).toJSON(); // => {bad: false}
|
|
```
|