aboutsummaryrefslogtreecommitdiff
path: root/pages/queries/GET_MEDIA.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-14 00:14:12 +0700
committerFactiven <[email protected]>2023-04-14 00:14:12 +0700
commit70fda74d27d9b55c9030932794daa25c1e6cf50d (patch)
tree0c1f639be4e8ec1b960ba642b8e99c1485e83b1a /pages/queries/GET_MEDIA.js
parentUpdate 5th (diff)
downloadmoopa-70fda74d27d9b55c9030932794daa25c1e6cf50d.tar.xz
moopa-70fda74d27d9b55c9030932794daa25c1e6cf50d.zip
Update 6th
Diffstat (limited to 'pages/queries/GET_MEDIA.js')
-rw-r--r--pages/queries/GET_MEDIA.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/pages/queries/GET_MEDIA.js b/pages/queries/GET_MEDIA.js
deleted file mode 100644
index 8c42a00..0000000
--- a/pages/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
- }
- }
- }
- }
- }
-`;