Preview: select-params.doc.md
Size: 504 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/lib/utils/flat/select-params.doc.md
From all keys in `params` it selects only those passed in arguments.
### Example
```javascript
import flat from '@adminjs'
const params = {
name: 'John',
'education.school.name': 'Harvard',
'education.school.id': 123,
}
flat.selectParams(params, 'education.school')
// results to {
// 'education.school.name': 'Harvard',
// 'education.school.id': 123,
// }
flat.selectParams(params, 'education.school.id', 'name')
// results to {
// 'name': 'John',
// 'education.school.id': 123,
// }
Directory Contents
Dirs: 0 × Files: 26