Skip to content

Commit 2a5cc94

Browse files
authored
add new mutations for add, update and delete Kind (#42)
* add new mutations for add, update and delete Kind * refactor documentation for add, update and delete Kind
1 parent c20b504 commit 2a5cc94

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,20 @@ can be found in the `errors` field of the response body. More information about
301301

302302
> Delete an existing Immobilie. The Haushaltsposition is referenced by the `id`.
303303
304+
### Update Kind
305+
306+
**addKind** ( vorgangsnummer String!, kind [Kind](#kind)! ) -> [BasicCreatedResponse](#basiccreatedresponse)!
307+
308+
> Add a Kind to a Vorgang. The Response contains the `id` of the created Haushaltsposition. This `id` can be used to update or delete this Haushaltsposition.
309+
310+
**updateKind** ( vorgangsnummer: String!, id: String!, kind [Kind](#kind)! ) -> [BasicResponse](#basicresponse)!
311+
312+
> Update an existing Kind. The Haushaltsposition is referenced by the `id`.
313+
314+
**deleteKind** ( vorgangsnummer: String!, id: String!) -> [BasicResponse](#basicresponse)!
315+
316+
> Delete an existing Kind. The Haushaltsposition is referenced by the `id`.
317+
304318
### Update Mietausgabe
305319

306320
**addMietausgabe** ( vorgangsnummer String!, mietausgabe [Mietausgabe](#mietausgabe)! ) -> [BasicCreatedResponse](#basiccreatedresponse)!
@@ -680,6 +694,15 @@ In addition there is the value "SONSTIGE" ("other")
680694
"wohnflaeche": Integer
681695
}
682696

697+
### Kind
698+
699+
{
700+
"gehoertZuAntragsteller": Antragstellerzuordnung,
701+
"kindergeldFuer": "ERSTES_ODER_ZWEITES_KIND" | "DRITTES_KIND" | "AB_VIERTEM_KIND",
702+
"name": String,
703+
"unterhaltseinnahmenMonatlich": BigDecimal
704+
}
705+
683706
### Mietausgabe
684707

685708
{

0 commit comments

Comments
 (0)