> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Dependency Graph

> Visualize dependencies between forms, workflows, automations, decision tables, and events at /fw/settings/dependency-graph.

The Dependency Graph screen renders an interactive node-edge visualization of relationships between Forms & Workflow entities and is available at `/fw/settings/dependency-graph`.

## Overview

This admin screen uses the `@xyflow/react` library to render a graph where nodes represent FW entities (form, form\_field, workflow, automation\_rule, decision\_table, event, lookup\_config) and edges represent dependency relationships, loaded via `useDependencyGraph`. Node colors are mapped by entity type using semantic CSS variables. A search input filters the visible nodes. The graph includes pan/zoom controls and a minimap. A hard cap of 300 nodes is enforced in `buildGraphElements`.

## Who it's for

Requires permission: `fw.dependencies.view`.

## Before you start

* Hold `fw.dependencies.view` to access this screen.
* Large organizations with many entities may be capped at 300 nodes in the visualization.

## Steps

<Steps>
  <Step title="Open Dependency Graph">Navigate to `/fw/settings/dependency-graph`.</Step>
  <Step title="Search for an entity">Type in the search input to highlight matching nodes.</Step>
  <Step title="Explore the graph">Pan, zoom, and click nodes to explore entity relationships.</Step>
  <Step title="Use the minimap">The minimap at bottom-right provides orientation in large graphs.</Step>
</Steps>

## Key concepts

* **Entity types** — `form`, `form_field`, `workflow`, `automation_rule`, `decision_table`, `event`, `lookup_config`.
* **Node cap** — maximum 300 nodes rendered at once; the graph is truncated for very large dependency sets.

## Related

<Columns cols={2}>
  <Card title="Forms & Workflow" icon="diagram-project" href="/fw/overview">
    Forms & Workflow core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/fw\.tsx
  * src/cores/fw/pages/DependencyGraphPage.tsx
</Accordion>
