HarborHarbor
DocumentationGuidesPlugins
All plugins

Linear GraphQL

Linear GraphQL API for issues, projects, and team state

APICategory: devPopularity 84linear_graphql

Linear GraphQL API for issues, projects, and team state

Install

hrbr plugins install linear-graphql

Harbor calls https://api.linear.app (driven by the upstream OpenAPI spec).

Quick start

hrbr exec 'return await linear_graphql.get({ /* see schema */ })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "linear-graphql-example",
  handler: async (ctx) => {
    return await ctx.plugins.linear_graphql.list({ limit: 5 });
  },
});

Tools

Tools are generated from the upstream OpenAPI spec. Inspect with:

hrbr plugins tools linear-graphql

Or open the dashboard plugin page for the live tool list.