Skip to content

Commit

Permalink
chore: update metaphysics graphql schema (#10450)
Browse files Browse the repository at this point in the history
  • Loading branch information
artsyit committed Jul 3, 2024
1 parent d0b01ec commit c987cc2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2362,6 +2362,7 @@ type Artwork implements Node & Searchable & Sellable {
first: Int
last: Int
): AuctionResultConnection
condition: ArtworkCondition
conditionDescription: ArtworkInfoRow

# Notes by a partner or MyCollection user on the artwork, can only be accessed by partner or the user that owns the artwork
Expand Down Expand Up @@ -2718,6 +2719,19 @@ enum ArtworkAttributionClassType {
UNKNOWN_EDITION
}

type ArtworkCondition {
description: String
displayText: String
value: String
}

enum ArtworkConditionEnumType {
EXCELLENT
FAIR
GOOD
VERY_GOOD
}

# A connection to a list of items.
type ArtworkConnection implements ArtworkConnectionInterface {
# A list of edges.
Expand Down Expand Up @@ -13614,6 +13628,7 @@ input MyCollectionCreateArtworkInput {

# The given location of the user as structured data
collectorLocation: EditableLocation
condition: ArtworkConditionEnumType
conditionDescription: String
confidentialNotes: String
costCurrencyCode: String
Expand Down Expand Up @@ -13714,6 +13729,7 @@ input MyCollectionUpdateArtworkInput {

# The given location of the user as structured data
collectorLocation: EditableLocation
condition: ArtworkConditionEnumType
conditionDescription: String
confidentialNotes: String
costCurrencyCode: String
Expand Down

0 comments on commit c987cc2

Please sign in to comment.