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
query GetUserById($id: Int!, $about_as_html: Boolean = false) {
    User(id: $id) {
        id
        name
        about(asHtml: $about_as_html)
        avatar {
            large
            medium
        }
        bannerImage
        siteUrl
        createdAt
        updatedAt
        isFollowing
        isFollower
        isBlocked
        bans
        options {
            titleLanguage
            displayAdultContent
            airingNotifications
            profileColor
        }
        mediaListOptions {
            scoreFormat
            rowOrder
            animeList {
                sectionOrder
                splitCompletedSectionByFormat
                customLists
                advancedScoring
                advancedScoringEnabled
            }
            mangaList {
                sectionOrder
                splitCompletedSectionByFormat
                customLists
                advancedScoring
                advancedScoringEnabled
            }
        }
        unreadNotificationCount
        donatorTier
        donatorBadge
        moderatorRoles
    }
}