graphApplyCalls property
The bd create --graph <plan-file> … pours only
(StationBeadWriter.createMolecule's mint) — disjoint from
callsFor('create')'s plain single-bead creates, which never carry
--graph.
Implementation
List<List<String>> get graphApplyCalls => calls
.where((c) => c.length > 1 && c[0] == 'create' && c[1] == '--graph')
.toList();