Skip to content
Snippets Groups Projects

Draft: Add all exchange reciprocals, exchange groupings

Open Lynn Foster requested to merge reciprocals into sprout
6 files
+ 68
28
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -13,6 +13,9 @@
type Commitment {
"This commitment is part of the exchange agreement."
clauseOf: Agreement
"This commitment is a reciprocal part of the exchange agreement."
reciprocalClauseOf: Agreement
}
type Agreement {
@@ -26,9 +29,15 @@ type Agreement {
input CommitmentCreateParams {
"(`Agreement`) This commitment is part of the agreement."
clauseOf: ID
"(`Agreement`) This commitment is a reciprocal part of the agreement."
reciprocalClauseOf: ID
}
input CommitmentUpdateParams {
"(`Agreement`) This commitment is part of the agreement."
clauseOf: ID
"(`Agreement`) This commitment is a reciprocal part of the agreement."
reciprocalClauseOf: ID
}
Loading