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 SaveMediaListEntry(
    $id: Int
    $mediaId: Int
    $status: MediaListStatus
    $score: Float
    $scoreRaw: Int
    $progress: Int
    $progressVolumes: Int
    $repeat: Int
    $priority: Int
    $private: Boolean
    $notes: String
    $hiddenFromStatusLists: Boolean
    $customLists: [String]
    $advancedScores: [Float]
    $startedAt: FuzzyDateInput
    $completedAt: FuzzyDateInput
) {
    SaveMediaListEntry(
        id: $id
        mediaId: $mediaId
        status: $status
        score: $score
        scoreRaw: $scoreRaw
        progress: $progress
        progressVolumes: $progressVolumes
        repeat: $repeat
        priority: $priority
        private: $private
        notes: $notes
        hiddenFromStatusLists: $hiddenFromStatusLists
        customLists: $customLists
        advancedScores: $advancedScores
        startedAt: $startedAt
        completedAt: $completedAt
    ) {
        id
        mediaId
        status
        score
        progress
        repeat
        priority
        private
        notes
        hiddenFromStatusLists
        customLists
        advancedScores
        startedAt {
            year
            month
            day
        }
        completedAt {
            year
            month
            day
        }
    }
}