stack
Find a stack by ID. Returns a Stack
.
Parameters
Name | Type | Description |
---|---|---|
id
required
|
ID
|
Example Queries
Find a stack by slug:
{
stack(id: "backend") {
name
}
}
Find a stack by id:
{
stack(id: "105986546944996851") {
name
}
}
Get a stack's tools:
{
stack(id: "backend") {
tools(first: 10) {
edges {
node {
name
}
}
}
}
}
Get a stack's tools with their versions:
{
stack(id: "backend") {
stackTools(first: 10) {
edges {
node {
tool {
name
}
version {
versionNumber
}
}
}
}
}
}