29 lines
437 B
JavaScript
29 lines
437 B
JavaScript
# Create minimal library item
|
|
# This is the more common use case, when adding an anime or manga to
|
|
# the user's library.
|
|
mutation (
|
|
$userId: ID!
|
|
$id: ID!,
|
|
$type: MediaTypeEnum!,
|
|
$status: LibraryEntryStatusEnum!,
|
|
) {
|
|
libraryEntry {
|
|
create(input: {
|
|
userId: $userId
|
|
mediaId: $id
|
|
mediaType: $type
|
|
status: $status
|
|
}) {
|
|
libraryEntry {
|
|
id
|
|
media {
|
|
type
|
|
}
|
|
user {
|
|
id
|
|
}
|
|
status
|
|
}
|
|
}
|
|
}
|
|
} |