critique_api 0.1.0

Interface to the SensCritique API
Documentation
query UserCollectionQuery(
    $username: String!
    $limit: Int
    $offset: Int
    $universe: String
) {
    user(username: $username) {
        collection(limit:$limit offset:$offset universe:$universe) {
            products { 
                id
                url
                title
                originalTitle
                yearOfProduction
                rating
                universe
                otherUserInfos(username:$username) {
                    rating
                    dateDone
                    isWished
                    review {
                        bodyText
                    }
                }
            }
        }
    }
}