Skip to content

Commit efa2266

Browse files
committed
Remove extra closing parentheses
1 parent 3918908 commit efa2266

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

spec/Section 2 -- Source Schema.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,8 @@ type Product {
447447
id: ID!
448448
delivery(
449449
zip: String!
450-
dimension: ProductDimensionInput! @require(field: "{ size: dimension.size, weight: dimension.weight }"))
450+
dimension: ProductDimensionInput!
451+
@require(field: "{ size: dimension.size, weight: dimension.weight }")
451452
): DeliveryEstimates
452453
}
453454
```
@@ -461,7 +462,9 @@ type Product {
461462
delivery(
462463
zip: String!
463464
dimension: ProductDimensionInput!
464-
@require(field: "{ productSize: dimension.size, productWeight: dimension.weight }"))
465+
@require(
466+
field: "{ productSize: dimension.size, productWeight: dimension.weight }"
467+
)
465468
): DeliveryEstimates
466469
}
467470

0 commit comments

Comments
 (0)