We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@require
# Schema A type Product { shippingCost(dimensions: Dimension): Float } # Schema B type Product { shippingCost(dimensions: Dimension @require(fields: "width height")): Float } # Schema C type Product { width: Int height: Int } # Composed Schema type Product { width: Int height: Int shippingCost: Float }
In case of
# Schema A type Product { shippingCost(dimensions: Dimension!): Float }
this would lead to a validation error
The text was updated successfully, but these errors were encountered:
Closed by #100
Sorry, something went wrong.
PascalSenn
Successfully merging a pull request may close this issue.
In case of
this would lead to a validation error
The text was updated successfully, but these errors were encountered: