@medplum/fhir-router 2.0.9 → 2.0.11
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/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.min.cjs +1 -1
- package/dist/cjs/index.min.cjs.map +1 -1
- package/dist/esm/index.min.mjs +1 -1
- package/dist/esm/index.min.mjs.map +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.mjs
CHANGED
|
@@ -13778,7 +13778,7 @@ const MaxDepthRule = (context) => ({
|
|
|
13778
13778
|
/** The key path to get to this node from the root node. */
|
|
13779
13779
|
path) {
|
|
13780
13780
|
const depth = getDepth(path);
|
|
13781
|
-
const maxDepth =
|
|
13781
|
+
const maxDepth = 12;
|
|
13782
13782
|
if (depth > maxDepth) {
|
|
13783
13783
|
const fieldName = node.name.value;
|
|
13784
13784
|
context.reportError(new GraphQLError(`Field "${fieldName}" exceeds max depth (depth=${depth}, max=${maxDepth})`, {
|