anilist_moe 0.4.0

Anilist_Moe is a Rust Wrapper for the Anilist API. This library allows you to seamlessly interact with Anilist's Public API with and without authentication. This currently supports Anime, Manga, Users, Staff, Forum, Threads, Recommendations, Reviews and User Activities
Documentation
mutation UpdateMediaListEntries(
    $status: MediaListStatus
    $score: Float
    $scoreRaw: Int
    $progress: Int
    $progressVolumes: Int
    $repeat: Int
    $priority: Int
    $private: Boolean
    $notes: String
    $hiddenFromStatusLists: Boolean
    $advancedScores: [Float]
    $startedAt: FuzzyDateInput
    $completedAt: FuzzyDateInput
    $ids: [Int]!
) {
    UpdateMediaListEntries(
        status: $status
        score: $score
        scoreRaw: $scoreRaw
        progress: $progress
        progressVolumes: $progressVolumes
        repeat: $repeat
        priority: $priority
        private: $private
        notes: $notes
        hiddenFromStatusLists: $hiddenFromStatusLists
        advancedScores: $advancedScores
        startedAt: $startedAt
        completedAt: $completedAt
        ids: $ids
    ) {
        id
        status
        score
        progress
    }
}