The How-To pocket is a set of task recipes: short, lookup-friendly procedures for the operational jobs that come up once your fleet is modeled and live. Each page is structured the same way — what you're doing → the steps → the result — so you can scan to the recipe you need and copy the commands.
These are procedures, not concepts. If you want the mental model first, read Learn; if you want the field-by-field schema, read the Catalog Schema Reference. This pocket sits between them: it assumes you know what an entity, a cell, a relationship, and an Action are, and shows you how to do a thing with them.
:::info Two rules that shape every recipe here
terraform apply. Actions open pull requests against
your repo (or dispatch runs to your runner); your CI applies. Re-imports and
rescans are observational — they update the graph to match your source; they
never provision.| Recipe | Use it when… |
|---|---|
| Cross-source drift | The graph and the external source it was imported from have diverged, and you want to detect and reconcile it. |
| Deprovision a tenant | You need to retire a tenant cleanly — the cascade order, the optional grace period, and the PR your CI applies. |
| Environments | You run the same fleet across dev / staging / prod and need per-env data, secrets, and access without schema drift. |
| Multi-stack golden path | You're onboarding a tenant that spans several Terraform stacks and want one command to open the right PRs in the right order. |
| Deploy on Kubernetes | You're self-hosting the backend and want a cluster deployment. |