From 3a263036cd399a012feb9ebf7888205c6c0a258c Mon Sep 17 00:00:00 2001 From: Tiago Gimenes Date: Fri, 27 May 2022 19:19:11 -0300 Subject: [PATCH] fix property id --- packages/api/src/__generated__/schema.ts | 2 ++ packages/api/src/typeDefs/propertyValue.graphql | 4 ++++ 2 files changed, 6 insertions(+) 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. """