Skip to content

Instantly share code, notes, and snippets.

@yuchenQ
Created September 16, 2020 01:14
Show Gist options
  • Save yuchenQ/009fa7e51bc81d3d2886d8ba911ed7fa to your computer and use it in GitHub Desktop.
Save yuchenQ/009fa7e51bc81d3d2886d8ba911ed7fa to your computer and use it in GitHub Desktop.
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