@medplum/fhir-router 2.0.7 → 2.0.10

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.
@@ -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 = 8;
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})`, {