Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
5 changed files with 58 additions and 48 deletions
Showing only changes of commit f3b7e58ee1 - Show all commits

View File

@ -7,7 +7,8 @@ mutation (
$mediaType: media_type!,
$status: MediaListStatus,
) {
createLibraryEntry (input: {
libraryEntry {
create(input: {
userId: $userId
mediaId: $id
mediaType: $mediaType
@ -17,3 +18,4 @@ mutation (
status
}
}
}

View File

@ -7,7 +7,8 @@ mutation (
$type: media_type!,
$status: LibraryEntryStatus!,
) {
createLibraryEntry (input: {
libraryEntry {
create(input: {
userId: $userId
mediaId: $id
mediaType: $type
@ -25,3 +26,4 @@ mutation (
}
}
}
}

View File

@ -1,7 +1,9 @@
mutation ($id: ID!) {
deleteLibraryEntry(input: {id: $id}) {
libraryEntry{
delete(input: {id: $id}) {
libraryEntry {
id
}
}
}
}

View File

@ -1,5 +1,6 @@
mutation($id: ID!, $progress: Int) {
updateLibraryEntry(input: { id: $id, progress: $progress }) {
libraryEntry{
update(input: { id: $id, progress: $progress }) {
libraryEntry {
id
progress
@ -7,3 +8,4 @@ mutation($id: ID!, $progress: Int) {
}
}
}
}

View File

@ -8,7 +8,8 @@ mutation(
$reconsuming: Boolean,
$status: LibraryEntryStatus!,
) {
updateLibraryEntry(input: {
libraryEntry{
update(input: {
id: $id,
notes: $notes
private: $private
@ -30,3 +31,4 @@ mutation(
}
}
}
}