Excel Add-In for GraphQL

Build 26.0.9655

ExpandTypeRecursion

Specifies how the provider handles recursive types during GraphQL schema exploration.

Possible Values

NEVER, DIRECT, ALWAYS

Data Type

string

Default Value

"NEVER"

Remarks

This property determines the provider's behavior when encountering recursive types (types that reference themselves, either directly or indirectly) while building the schema.

Note: Regardless of this setting, schema traversal is bounded by the defined depth limits.

This property offers three modes of recursion handling:

  • NEVER: No type recursion is allowed. This provides a simpler schema representation by default.
  • DIRECT: Exactly one repetition is allowed for direct self-references. Nested exploration is then halted.
  • ALWAYS: All recursive types are expanded. Traversal is bounded only by the defined depth limits.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655