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

chore: update metaphysics graphql schema #11440

Merged
merged 1 commit into from
Jan 24, 2025
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
41 changes: 40 additions & 1 deletion data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@ type Alert {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -1673,6 +1676,9 @@ type Artist implements EntityWithFilterArtworksConnectionInterface & Node & Sear
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -2145,6 +2151,9 @@ type ArtistSeries implements Node {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -9354,6 +9363,9 @@ interface EntityWithFilterArtworksConnectionInterface {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -9598,6 +9610,9 @@ type Fair implements EntityWithFilterArtworksConnectionInterface & Node {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -10105,6 +10120,9 @@ input FilterArtworksInput {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -10546,6 +10564,9 @@ type Gene implements Node & Searchable {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -12370,6 +12391,9 @@ type MarketingCollection implements Node {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -14737,6 +14761,9 @@ type Partner implements Node {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -16220,6 +16247,9 @@ type Query {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -18549,6 +18579,9 @@ type Show implements EntityWithFilterArtworksConnectionInterface & Node {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -19028,6 +19061,9 @@ type Tag implements Node {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -20931,6 +20967,9 @@ type Viewer {
periods: [String]
priceRange: String
saleID: ID

# When true, will only return signed artworks.
signed: Boolean
size: Int

# Filter results by Artwork sizes
Expand Down Expand Up @@ -22371,7 +22410,7 @@ input updateCollectionInput {

# The internal ID of the collection
id: String!
name: String!
name: String
private: Boolean
shareableWithPartners: Boolean
}
Expand Down