MCPcopy Index your code
hub / github.com/triggerdotdev/trigger.dev / projects

Method projects

integrations/linear/src/index.ts:1191–1207  ·  view source on GitHub ↗
(
    key: IntegrationTaskKey,
    params: L.ProjectsQueryVariables = {}
  )

Source from the content-addressed store, hash-verified

1189 }
1190
1191 projects(
1192 key: IntegrationTaskKey,
1193 params: L.ProjectsQueryVariables = {}
1194 ): LinearReturnType<ProjectConnection> {
1195 return this.runTask(
1196 key,
1197 async (client) => {
1198 const edges = await client.projects(params);
1199 return serializeLinearOutput(edges);
1200 },
1201 {
1202 name: "Get Projects",
1203 params,
1204 properties: queryProperties(params),
1205 }
1206 );
1207 }
1208
1209 archiveProject(
1210 key: IntegrationTaskKey,

Callers 1

linear.tsFile · 0.80

Calls 3

runTaskMethod · 0.95
queryPropertiesFunction · 0.90
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected