More mutations

This commit is contained in:
Syer10
2023-04-28 21:56:25 -04:00
parent da8ca23496
commit 4577bbc572
4 changed files with 89 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ class ChapterMutation {
val chapter: ChapterType
)
data class UpdateChapterInput(
val clientMutationId: String?,
val clientMutationId: String? = null,
val id: Int,
val patch: UpdateChapterPatch
)
@@ -38,7 +38,7 @@ class ChapterMutation {
val chapters: List<ChapterType>
)
data class UpdateChaptersInput(
val clientMutationId: String?,
val clientMutationId: String? = null,
val ids: List<Int>,
val patch: UpdateChapterPatch
)