diff options
| author | Factiven <[email protected]> | 2023-04-17 13:33:37 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-17 13:33:37 +0700 |
| commit | 545d8a3473823f0a86cad3c177dbbb4ebb794a75 (patch) | |
| tree | 1606111911ea31c8fd8f9560dade41f5fedd6520 /queries/GET_MEDIA.js | |
| parent | Update 7th (diff) | |
| download | moopa-545d8a3473823f0a86cad3c177dbbb4ebb794a75.tar.xz moopa-545d8a3473823f0a86cad3c177dbbb4ebb794a75.zip | |
Snapshot Moopa v3.2
Diffstat (limited to 'queries/GET_MEDIA.js')
| -rw-r--r-- | queries/GET_MEDIA.js | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/queries/GET_MEDIA.js b/queries/GET_MEDIA.js deleted file mode 100644 index 8c42a00..0000000 --- a/queries/GET_MEDIA.js +++ /dev/null @@ -1,26 +0,0 @@ -import { gql } from "@apollo/client"; - -export default gql` - query ($page: Int, $userId: Int, $type: MediaType, $status: MediaListStatus) { - Page(page: $page, perPage: 100) { - pageInfo { - hasNextPage - } - mediaList(type: $type, userId: $userId) { - status - score(format: POINT_100) - media { - siteUrl - id - coverImage { - large - extraLarge - } - title { - userPreferred - } - } - } - } - } -`; |