Created
September 16, 2020 01:14
-
-
Save yuchenQ/009fa7e51bc81d3d2886d8ba911ed7fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
assignedReviews: assignedReviews | |
} | |
type assignedReviews { | |
reviews: [review] | |
} | |
type review { | |
id: ID! | |
artistAccountId: String! | |
artistFederatedId: String! | |
artistUsername: String! | |
artist: artist | |
createdAt: DateTime! | |
} | |
type artist { | |
avatar: String | |
bio: String, | |
coverImageUrl: String | |
externalSites: [externalSite] | |
federatedId: String! | |
id: ID! | |
joinedDate: String | |
profileUrl: String | |
shopUrl: String | |
userName: String! | |
works: [content] | |
worksCount: Int | |
} | |
type content { | |
id: ID | |
workId: String! | |
artistId: String | |
title: String! | |
tags: [String!] | |
imageUrl: String | |
sourceImages: [sourceImage] | |
workCreatedAt: DateTime! | |
workUpdatedAt: DateTime! | |
} | |
type sourceImage { | |
id: ID! | |
workId: String! | |
url: String! | |
previewUrl: String! | |
previewWidth: Int! | |
previewHeight: Int! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment