Skip to content
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
4 changes: 2 additions & 2 deletions supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2234,7 +2234,7 @@ type Product implements Node
): ReviewConnection! @join__field(graph: REVIEW)

"""Retrieves average rating of product."""
averageRating: Float! @join__field(graph: REVIEW)
averageRating: Float @join__field(graph: REVIEW)
}

"""A connection to a list of `Product` values."""
Expand Down Expand Up @@ -2469,7 +2469,7 @@ type ProductVariant implements Node
): ReviewConnection! @join__field(graph: REVIEW)

"""Retrieves average rating of product variant."""
averageRating: Float! @join__field(graph: REVIEW)
averageRating: Float @join__field(graph: REVIEW)
}

"""A connection to a list of `ProductVariant` values."""
Expand Down