Skip to content

Commit b365d93

Browse files
author
Prabhu Ram
committed
Merge remote-tracking branch 'origin/MC-36977' into MC-36897
2 parents cad2de4 + 377d01d commit b365d93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/ReviewGraphQl/etc/schema.graphqls

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ type ProductReviewRatingsMetadata {
3939
}
4040

4141
type ProductReviewRatingMetadata {
42-
id: String! @doc(description: "Base64 encoded rating ID.")
42+
id: String! @doc(description: "An encoded rating ID.")
4343
name: String! @doc(description: "The label assigned to an aspect of a product that is being rated, such as quality or price")
4444
values: [ProductReviewRatingValueMetadata!]! @doc(description: "List of product review ratings sorted by position.") @resolver(class: "Magento\\ReviewGraphQl\\Model\\Resolver\\ProductReviewRatingValueMetadata")
4545
}
4646

4747
type ProductReviewRatingValueMetadata {
48-
value_id: String! @doc(description: "Base 64 encoded rating value id.")
48+
value_id: String! @doc(description: "An encoded rating value id.")
4949
value: String! @doc(description: "e.g Good, Perfect, 3, 4, 5")
5050
}
5151

@@ -73,8 +73,8 @@ input CreateProductReviewInput {
7373
}
7474

7575
input ProductReviewRatingInput {
76-
id: String! @doc(description: "Base64 encoded rating ID.")
77-
value_id: String! @doc(description: "Base 64 encoded rating value id.")
76+
id: String! @doc(description: "An encoded rating ID.")
77+
value_id: String! @doc(description: "An encoded rating value id.")
7878
}
7979

8080
type StoreConfig @doc(description: "The type contains information about a store config") {

0 commit comments

Comments
 (0)