Table nodes (per-entity)
Every entity you model in WP-PFManagement gets its own family of table nodes in the Workflow editor — Get, Create, Update and friends — grouped under Management. They are the typed, permission-aware way for a workflow to read and write your records.

Fields are pins
These nodes are field-per-pin, not opaque JSON:
- Get
<Entity>loads a single record by itssys_idand emits every entity field as a flat pin — wire the ones you need downstream. - Create
<Entity>takes each field as a discrete input pin; the runtime composes the record and applies the entity's validation, just as the Management form would.
Permission-aware by construction
Table nodes run under the inherited moat: row visibility limits what Get / list can see, field projection strips pins the caller may not read (and ignores writes they may not make), and the verb guard blocks a create/update/delete the caller is not entitled to. The node is only ever as capable as the user running the workflow.