diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts index 1fd00b4961..c5a75b0c44 100644 --- a/packages/api/src/__generated__/schema.ts +++ b/packages/api/src/__generated__/schema.ts @@ -69,6 +69,8 @@ export type IStoreProduct = { export type IStorePropertyValue = { /** Property name. */ name: Scalars['String']; + /** Property id. This propert changes according to the content of the object. */ + propertyID: Scalars['String']; /** Property value. May hold a string or the string representation of an object. */ value: Scalars['ObjectOrString']; /** Specifies the nature of the value */ diff --git a/packages/api/src/typeDefs/propertyValue.graphql b/packages/api/src/typeDefs/propertyValue.graphql index a91cff45a0..a390f6a427 100644 --- a/packages/api/src/typeDefs/propertyValue.graphql +++ b/packages/api/src/typeDefs/propertyValue.graphql @@ -21,6 +21,10 @@ type StorePropertyValue { } input IStorePropertyValue { + """ + Property id. This propert changes according to the content of the object. + """ + propertyID: String! """ Property value. May hold a string or the string representation of an object. """