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
Below, some examples which show invalid behaviour or missing checks.
type Product { id: ID! name: String! } type Query { getProduct(id: ID): Product @topic(name: "product-topic") }
The query is missing the keyArgment but since the mutation rule passes no error will be thrown. Another example:
keyArgment
type Query { getProduct(productId: ID): ProductInfo } type ProductInfo { product: Product @topic(name: "product-topic") url: String @topic(name: "url-topic", keyArgument: "productId") }
type Mutation { setClick(clickCount: Long): Long @topic(name: "click-topic") }
It should contain 2 inputs.
The text was updated successfully, but these errors were encountered:
DawidNiezgodka
Successfully merging a pull request may close this issue.
Below, some examples which show invalid behaviour or missing checks.
The query is missing the
keyArgment
but since the mutation rule passes no error will be thrown.Another example:
It should contain 2 inputs.
The text was updated successfully, but these errors were encountered: