Hyperlinkv0.8.0-beta.28

Hyperlink

Hyperlink.fleetconstsrc/Hyperlink.ts:483
<M extends AnyMethod>(method: M): FleetField<M>

Mark a contract method as a fleet field — one combined across the nodes (its layer impl folds peers + its own value). It's served and client-visible like any query, but excluded from peers, so a fold over peers can't call a peer's own fleet field (a fan-out, not what you want). The one lightweight tag the plain-query model keeps, purely for this exclusion.

connections:      Hyperlink.effect(Schema.Number),               // per-instance (leaf) — peers see it
totalConnections: Hyperlink.fleet(Hyperlink.effect(Schema.Number)), // fleet — peers don't
spec fieldspeers
Source src/Hyperlink.ts:4832 lines
export const fleet = <M extends AnyMethod>(method: M): FleetField<M> =>
  marked(method, { fleet: true as const });