type
JoinMutationEnvelope
type JoinMutationEnvelope[Document any] struct {
Doc Document `json:"doc"`
Added int `json:"added"`
Removed int `json:"removed"`
}The refreshed source document and applied inverse-relation delta counts.
Source protocol/envelope.go:93
DocDocument- The Doc value.
Addedint- The Added value.
Removedint- The Removed value.