We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3918908 commit efa2266Copy full SHA for efa2266
spec/Section 2 -- Source Schema.md
@@ -447,7 +447,8 @@ type Product {
447
id: ID!
448
delivery(
449
zip: String!
450
- dimension: ProductDimensionInput! @require(field: "{ size: dimension.size, weight: dimension.weight }"))
+ dimension: ProductDimensionInput!
451
+ @require(field: "{ size: dimension.size, weight: dimension.weight }")
452
): DeliveryEstimates
453
}
454
```
@@ -461,7 +462,9 @@ type Product {
461
462
463
464
dimension: ProductDimensionInput!
- @require(field: "{ productSize: dimension.size, productWeight: dimension.weight }"))
465
+ @require(
466
+ field: "{ productSize: dimension.size, productWeight: dimension.weight }"
467
+ )
468
469
470
0 commit comments