Skip to content

Commit

Permalink
add new mutations addUnterhaltsverpflichtung, updateUnterhaltsverpfli…
Browse files Browse the repository at this point in the history
…chtung and deleteUnterhaltsverpflichtung (#40)

* add new mutations addUnterhaltsverpflichtung, updateUnterhaltsverpflichtung and deleteUnterhaltsverpflichtung

* typo fix

Co-authored-by: Susanne Grell <[email protected]>

Co-authored-by: Susanne Grell <[email protected]>
  • Loading branch information
Yildiz-Ercan and sgrell authored Feb 21, 2022
1 parent c377fea commit 93fd141
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,20 @@ can be found in the `errors` field of the response body. More information about

> Delete an existing private Krankenversicherung. The Haushaltsposition is referenced by the `id`.
### Update Unterhaltsverpflichtung

**addUnterhaltsverpflichtung** ( vorgangsnummer String!, unterhaltsverpflichtung [Unterhaltsverpflichtung](#unterhaltsverpflichtung)! ) -> [BasicCreatedResponse](#basiccreatedresponse)!

> Add an Unterhaltsverpflichtung to a Vorgang. The Response contains the `id` of the created Haushaltsposition. This `id` can be used to update or delete this Haushaltsposition.
**updateUnterhaltsverpflichtung** ( vorgangsnummer: String!, id: String!, unterhaltsverpflichtung [Unterhaltsverpflichtung](#unterhaltsverpflichtung)! ) -> [BasicResponse](#basicresponse)!

> Update an existing Unterhaltsverpflichtung. The Haushaltsposition is referenced by the `id`.
**deleteUnterhaltsverpflichtung** ( vorgangsnummer: String!, id: String!) -> [BasicResponse](#basicresponse)!

> Delete an existing Unterhaltsverpflichtung. The Haushaltsposition is referenced by the `id`.
## Update Finanzbedarf

### Hints
Expand Down Expand Up @@ -686,6 +700,13 @@ In addition there is the value "SONSTIGE" ("other")
"wichtig": Boolean
}

### Unterhaltsverpflichtung

{
"antragstellerIds": [ String ],
"betragMonatlich": BigDecimal
}

### Wohnsituation

{
Expand Down

0 comments on commit 93fd141

Please sign in to comment.