@newmo/graphql-fake-core 0.13.0 → 0.14.0

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.
@@ -61,7 +61,7 @@ export function normalizeConfig(rawConfig) {
61
61
  typesPrefix: rawConfig.typesPrefix ?? "",
62
62
  typesSuffix: rawConfig.typesSuffix ?? "",
63
63
  namingConvention: rawConfig.namingConvention ?? "",
64
- maxFieldRecursionDepth: rawConfig.maxFieldRecursionDepth ?? 3,
64
+ maxFieldRecursionDepth: rawConfig.maxFieldRecursionDepth ?? 9,
65
65
  defaultValues: {
66
66
  String: rawConfig.defaultValues?.String ?? DefaultValues.String,
67
67
  Int: rawConfig.defaultValues?.Int ?? DefaultValues.Int,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newmo/graphql-fake-core",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "private": false,
5
5
  "description": "GraphQL fake core library",
6
6
  "keywords": [
@@ -65,5 +65,5 @@
65
65
  "access": "public",
66
66
  "registry": "https://registry.npmjs.org/"
67
67
  },
68
- "gitHead": "4ec846144d318fc5354b6666fb8301ea0c157c9b"
68
+ "gitHead": "b9817caa0b36489d9a2329be75adc99aa7b628c1"
69
69
  }
package/src/config.ts CHANGED
@@ -133,7 +133,7 @@ export function normalizeConfig(rawConfig: RawConfig): Config {
133
133
  typesPrefix: rawConfig.typesPrefix ?? "",
134
134
  typesSuffix: rawConfig.typesSuffix ?? "",
135
135
  namingConvention: rawConfig.namingConvention ?? "",
136
- maxFieldRecursionDepth: rawConfig.maxFieldRecursionDepth ?? 3,
136
+ maxFieldRecursionDepth: rawConfig.maxFieldRecursionDepth ?? 9,
137
137
  defaultValues: {
138
138
  String: rawConfig.defaultValues?.String ?? DefaultValues.String,
139
139
  Int: rawConfig.defaultValues?.Int ?? DefaultValues.Int,