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 FetchThreadComments(
    $threadId: Int
    $id: Int
    $userId: Int
    $sort: [ThreadCommentSort]
    $page: Int = 1
    $perPage: Int = 25

    # HTML rendering options
    $comment_as_html: Boolean = false
) {
    Page(page: $page, perPage: $perPage) {
        pageInfo {
            total
            currentPage
            lastPage
            hasNextPage
            perPage
        }
        threadComments(
            threadId: $threadId
            id: $id
            userId: $userId
            sort: $sort
        ) {
            id
            threadId
            userId
            comment(asHtml: $comment_as_html)
            likeCount
            isLiked
            siteUrl
            createdAt
            updatedAt
            isLocked
            user {
                id
                name
                avatar {
                    large
                    medium
                }
                donatorTier
                donatorBadge
                moderatorRoles
            }
            likes {
                id
                name
                avatar {
                    medium
                }
            }
            childComments
        }
    }
}