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 FetchThread(
    $id: Int!
    $body_as_html: Boolean = false
) {
    Thread(id: $id) {
        id
        title
        body(asHtml: $body_as_html)
        userId
        replyUserId
        replyCount
        viewCount
        replyCommentId
        repliedAt
        createdAt
        updatedAt
        isLocked
        isSticky
        isSubscribed
        likeCount
        isLiked
        siteUrl
        categories {
            id
            name
        }
        mediaCategories {
            id
            title {
                romaji
                english
                native
                userPreferred
            }
            type
            format
            status
            coverImage {
                large
                medium
                color
            }
            bannerImage
        }
        user {
            id
            name
            avatar {
                large
                medium
            }
            donatorTier
            donatorBadge
            moderatorRoles
        }
        replyUser {
            id
            name
            avatar {
                large
                medium
            }
            donatorTier
            donatorBadge
            moderatorRoles
        }
    }
}