@coderich/autograph 0.10.26 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coderich/autograph",
3
3
  "author": "Richard Livolsi (coderich)",
4
- "version": "0.10.26",
4
+ "version": "0.11.1",
5
5
  "description": "AutoGraph",
6
6
  "keywords": [
7
7
  "graphql",
package/src/data/Model.js CHANGED
@@ -82,9 +82,9 @@ module.exports = class extends Model {
82
82
 
83
83
  // Define target mapping
84
84
  const targetMap = {
85
- doc: ['defaultValue', 'castValue', 'ensureArrayValue', 'normalizers', 'instructs', ...crudKeys, `$${serdes}rs`, `${serdes}rs`, 'transforms'],
85
+ doc: [], // Do nothing...
86
+ // doc: ['defaultValue', 'castValue', 'ensureArrayValue', 'normalizers', 'instructs', ...crudKeys, `$${serdes}rs`, `${serdes}rs`, 'transforms'],
86
87
  input: ['defaultValue', 'castValue', 'ensureArrayValue', 'normalizers', 'instructs', ...crudKeys, `$${serdes}rs`, `${serdes}rs`, 'transforms'],
87
- // input: ['defaultValue', 'castValue', 'ensureArrayValue'],
88
88
  where: ['castValue', 'instructs', `$${serdes}rs`],
89
89
  };
90
90