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 SaveThread(
    $id: Int
    $title: String
    $body: String
    $categories: [Int]
    $mediaCategories: [Int]
    $locked: Boolean
    $sticky: Boolean

    # HTML rendering options
    $body_as_html: Boolean = false
) {
    SaveThread(
        id: $id
        title: $title
        body: $body
        categories: $categories
        mediaCategories: $mediaCategories
        locked: $locked
        sticky: $sticky
    ) {
        id
        title
        body(asHtml: $body_as_html)
        userId
        replyCount
        viewCount
        createdAt
        updatedAt
        isLocked
        isSticky
        isSubscribed
        likeCount
        isLiked
        siteUrl
        categories {
            id
            name
        }
        mediaCategories {
            id
            title {
                romaji
                english
                native
                userPreferred
            }
            type
            format
            coverImage {
                medium
            }
        }
        user {
            id
            name
            avatar {
                large
                medium
            }
        }
    }
}