updated bruno files
This commit is contained in:
@ -29,16 +29,6 @@ body:graphql {
|
||||
coverImage {
|
||||
large
|
||||
}
|
||||
tags {
|
||||
id
|
||||
name
|
||||
description
|
||||
category
|
||||
rank
|
||||
isGeneralSpoiler
|
||||
isMediaSpoiler
|
||||
isAdult
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -50,3 +40,19 @@ body:graphql:vars {
|
||||
"listType": "ANIME"
|
||||
}
|
||||
}
|
||||
|
||||
docs {
|
||||
Title
|
||||
|
||||
Image
|
||||
|
||||
Description
|
||||
|
||||
Episodes
|
||||
|
||||
Status
|
||||
|
||||
Season
|
||||
|
||||
External & Streaming Links
|
||||
}
|
||||
|
103
bruno/AniTrack/AniList MediaList User Query.bru
Normal file
103
bruno/AniTrack/AniList MediaList User Query.bru
Normal file
@ -0,0 +1,103 @@
|
||||
meta {
|
||||
name: AniList MediaList User Query
|
||||
type: graphql
|
||||
seq: 6
|
||||
}
|
||||
|
||||
post {
|
||||
url: https://graphql.anilist.co
|
||||
body: graphql
|
||||
auth: none
|
||||
}
|
||||
|
||||
headers {
|
||||
Content-Type: "application/json"
|
||||
Accept: "application/json"
|
||||
}
|
||||
|
||||
body:graphql {
|
||||
# Write your query or mutation here
|
||||
query(
|
||||
$page: Int
|
||||
$perPage: Int
|
||||
$userId: Int
|
||||
$listType: MediaType
|
||||
$status: MediaListStatus
|
||||
) {
|
||||
Page(page: $page, perPage: $perPage) {
|
||||
pageInfo {
|
||||
total
|
||||
perPage
|
||||
currentPage
|
||||
lastPage
|
||||
hasNextPage
|
||||
}
|
||||
mediaList(userId: $userId, type: $listType, status: $status) {
|
||||
id
|
||||
mediaId
|
||||
userId
|
||||
media {
|
||||
id
|
||||
idMal
|
||||
title {
|
||||
romaji
|
||||
english
|
||||
native
|
||||
}
|
||||
description
|
||||
coverImage {
|
||||
large
|
||||
}
|
||||
season
|
||||
seasonYear
|
||||
episodes
|
||||
}
|
||||
status
|
||||
notes
|
||||
progress
|
||||
score
|
||||
repeat
|
||||
user {
|
||||
id
|
||||
statistics {
|
||||
anime {
|
||||
count
|
||||
statuses {
|
||||
status
|
||||
count
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
body:graphql:vars {
|
||||
{
|
||||
"page": 1,
|
||||
"perPage": 20,
|
||||
"userId": 413504,
|
||||
"listType": "ANIME",
|
||||
"status": "CURRENT"
|
||||
}
|
||||
}
|
||||
|
||||
docs {
|
||||
Title
|
||||
Image
|
||||
Description
|
||||
Episodes
|
||||
Status
|
||||
Season
|
||||
External & Streaming Links
|
||||
|
||||
User Stuff Per Item
|
||||
Status
|
||||
Score
|
||||
Episode Progress
|
||||
Total Rewatches
|
||||
Notes
|
||||
}
|
28
bruno/AniTrack/AniList MediaList User.bru
Normal file
28
bruno/AniTrack/AniList MediaList User.bru
Normal file
@ -0,0 +1,28 @@
|
||||
meta {
|
||||
name: AniList MediaList User
|
||||
type: http
|
||||
seq: 5
|
||||
}
|
||||
|
||||
post {
|
||||
url: https://graphql.anilist.co
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
docs {
|
||||
Title
|
||||
Image
|
||||
Description
|
||||
Episodes
|
||||
Status
|
||||
Season
|
||||
External & Streaming Links
|
||||
|
||||
User Stuff Per Item
|
||||
Status
|
||||
Score
|
||||
Episode Progress
|
||||
Total Rewatches
|
||||
Notes
|
||||
}
|
Reference in New Issue
Block a user