tool

Find a tool or package by ID.

If you don't know the ID of a tool, you could first use the tools query to search for it by name. Or you could manually get the slug from the last part of its StackShare URL (for example for https://stackshare.io/javascript the slug is javascript), and use that as an ID.

Returns a Tool.

Parameters

Name Type
id required ID

Example Queries

Find a tool by slug:

{
  tool(id: "javascript") {
    name
  }
}

Find a tool by id:

{
  tool(id: "101231773939333405") {
    name
  }
}

Get a tool's End of Life information:

{
  tool(id: "nodejs") {
    releasePolicyUrl
    versions(first: 10) {
      nodes {
        versionNumber
        endOfLife
        endOfLifeAt
        endOfActiveSupport
        endOfActiveSupportAt
      }
    }
  }
}