Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update metaphysics schema #5681

Merged
merged 1 commit into from
May 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 25 additions & 9 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,9 @@ type Artist implements EntityWithFilterArtworksConnectionInterface & Node & Sear
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -4047,7 +4049,9 @@ interface EntityWithFilterArtworksConnectionInterface {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -4185,7 +4189,9 @@ type Fair implements EntityWithFilterArtworksConnectionInterface & Node {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -4785,7 +4791,9 @@ type Gene implements Node & Searchable {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -5366,7 +5374,7 @@ type MarketingCollection {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -6581,7 +6589,9 @@ type Query {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -7737,7 +7747,9 @@ type Show implements EntityWithFilterArtworksConnectionInterface & Node {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -8115,7 +8127,9 @@ type Tag implements Node {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down Expand Up @@ -8476,7 +8490,9 @@ type Viewer {
priceRange: String
saleID: ID
size: Int
sizeBuckets: [ArtworkSizes]

# Filter results by Artwork sizes
sizes: [ArtworkSizes]
sort: String
tagID: String
width: String
Expand Down