What are version links?

Version entities can have links with link types that have version as input or output types.

Currently, “products” page doesn’t display these links like the “overview” page.

But, you can see them when querying version entities in GraphQL explorer.


Version Links Automation

Currently, in the pipeline we create Generative and Reference version links. to point out INs and OUTs. And, you can see them in GraphQL as follows:

query MyQuery {
  project(name: "project_name") {
    version(id: "version_id") {
      links {
        edges {
          linkType
          name
        }
      }
    }
  }

also, from python as in the example below:

1 Like