addToolsToStacks
Adds tools to your company's stacks. Returns true
if successful.
Parameters
Name | Type | Description |
---|---|---|
stackIds
required
|
[ID]
|
|
tools
required
|
[StackToolInput]
|
Example Queries
Add one tool to multiple stacks:
mutation {
addToolsToStacks(
tools: [{ toolId: "nodejs", versionNumber: "16.15.1" }],
stackIds: ["backend", "frontend"]
)
}
Add multiple tools to one stack:
mutation {
addToolsToStacks(
tools: [
{ toolId: "nodejs", versionNumber: "16.15.1" },
{ toolId: "slack" }
],
stackIds: ["backend"]
)
}