Version 5.1 - All the GraphQL #32
@ -7,7 +7,8 @@ mutation (
|
|||||||
$mediaType: media_type!,
|
$mediaType: media_type!,
|
||||||
$status: MediaListStatus,
|
$status: MediaListStatus,
|
||||||
) {
|
) {
|
||||||
createLibraryEntry (input: {
|
libraryEntry {
|
||||||
|
create(input: {
|
||||||
userId: $userId
|
userId: $userId
|
||||||
mediaId: $id
|
mediaId: $id
|
||||||
mediaType: $mediaType
|
mediaType: $mediaType
|
||||||
@ -17,3 +18,4 @@ mutation (
|
|||||||
status
|
status
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
@ -7,7 +7,8 @@ mutation (
|
|||||||
$type: media_type!,
|
$type: media_type!,
|
||||||
$status: LibraryEntryStatus!,
|
$status: LibraryEntryStatus!,
|
||||||
) {
|
) {
|
||||||
createLibraryEntry (input: {
|
libraryEntry {
|
||||||
|
create(input: {
|
||||||
userId: $userId
|
userId: $userId
|
||||||
mediaId: $id
|
mediaId: $id
|
||||||
mediaType: $type
|
mediaType: $type
|
||||||
@ -25,3 +26,4 @@ mutation (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
@ -1,7 +1,9 @@
|
|||||||
mutation ($id: ID!) {
|
mutation ($id: ID!) {
|
||||||
deleteLibraryEntry(input: {id: $id}) {
|
libraryEntry{
|
||||||
|
delete(input: {id: $id}) {
|
||||||
libraryEntry {
|
libraryEntry {
|
||||||
id
|
id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
@ -1,5 +1,6 @@
|
|||||||
mutation($id: ID!, $progress: Int) {
|
mutation($id: ID!, $progress: Int) {
|
||||||
updateLibraryEntry(input: { id: $id, progress: $progress }) {
|
libraryEntry{
|
||||||
|
update(input: { id: $id, progress: $progress }) {
|
||||||
libraryEntry {
|
libraryEntry {
|
||||||
id
|
id
|
||||||
progress
|
progress
|
||||||
@ -7,3 +8,4 @@ mutation($id: ID!, $progress: Int) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
@ -8,7 +8,8 @@ mutation(
|
|||||||
$reconsuming: Boolean,
|
$reconsuming: Boolean,
|
||||||
$status: LibraryEntryStatus!,
|
$status: LibraryEntryStatus!,
|
||||||
) {
|
) {
|
||||||
updateLibraryEntry(input: {
|
libraryEntry{
|
||||||
|
update(input: {
|
||||||
id: $id,
|
id: $id,
|
||||||
notes: $notes
|
notes: $notes
|
||||||
private: $private
|
private: $private
|
||||||
@ -30,3 +31,4 @@ mutation(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user