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
trying to run this:
mutation addKubernetes { addOpenshift(input: { name: "foobar", consoleUrl: "no-need", token: "no-need", routerPattern: "no-need", } ) { id } }
fails with:
{ "errors": [ { "message": "(conn=232212, no: 45018, SQLState: HY000) Placeholder 'id' is not defined\nsql: CALL CreateOpenshift(\n :id,\n :name,\n :console_url,\n :token,\n :router_pattern,\n NULL,\n NULL,\n NULL,\n NULL\n ); - parameters:{'name':'foobar','console_url':'no-need','token':'no-need','router_pattern':'no-need'}", "locations": [ { "line": 328, "column": 3 } ], "path": [ "addOpenshift" ] } ], "data": { "addOpenshift": null } }
you need to add it with a specific ID set:
mutation addKubernetes { addOpenshift(input: { name: "foobar", consoleUrl: "no-need", token: "no-need", routerPattern: "no-need", id: 151 } ) { id } }
which works, but that should not be expected
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
trying to run this:
fails with:
you need to add it with a specific ID set:
which works, but that should not be expected
The text was updated successfully, but these errors were encountered: