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

Method comments

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

Source from the content-addressed store, hash-verified

510 }
511
512 comments(
513 key: IntegrationTaskKey,
514 params: L.CommentsQueryVariables = {}
515 ): LinearReturnType<CommentConnection> {
516 return this.runTask(
517 key,
518 async (client) => {
519 const edges = await client.comments(params);
520 return serializeLinearOutput(edges);
521 },
522 {
523 name: "Get Comments",
524 params,
525 properties: queryProperties(params),
526 }
527 );
528 }
529
530 createComment(
531 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