aboutsummaryrefslogtreecommitdiff
path: root/queries/GET_MEDIA_USER.js
diff options
context:
space:
mode:
Diffstat (limited to 'queries/GET_MEDIA_USER.js')
-rw-r--r--queries/GET_MEDIA_USER.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/queries/GET_MEDIA_USER.js b/queries/GET_MEDIA_USER.js
deleted file mode 100644
index c422f56..0000000
--- a/queries/GET_MEDIA_USER.js
+++ /dev/null
@@ -1,52 +0,0 @@
-export const GET_MEDIA_USER = `
-query ($username: String, $status: MediaListStatus) {
- MediaListCollection(userName: $username, type: ANIME, status: $status, sort: SCORE_DESC) {
- user {
- id
- name
- about (asHtml: true)
- createdAt
- avatar {
- large
- }
- statistics {
- anime {
- count
- episodesWatched
- meanScore
- minutesWatched
- }
- }
- bannerImage
- mediaListOptions {
- animeList {
- sectionOrder
- }
- }
- }
- lists {
- status
- name
- entries {
- id
- mediaId
- status
- progress
- score
- media {
- id
- status
- title {
- english
- romaji
- }
- episodes
- coverImage {
- large
- }
- }
- }
- }
- }
- }
-`;