Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ca02435

Browse files
committedOct 30, 2024
re-run codegen
1 parent 538fe01 commit ca02435

File tree

2 files changed

+1078
-1039
lines changed

2 files changed

+1078
-1039
lines changed
 

‎graphql/types.ts

Lines changed: 1059 additions & 1039 deletions
Large diffs are not rendered by default.

‎schema.graphql

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2750,14 +2750,33 @@ type LinearIssueThreadLink implements ThreadLink {
27502750
linearIssueUrl: String! @deprecated(reason: "Use url instead.")
27512751
}
27522752

2753+
type PlainThreadThreadLink implements ThreadLink {
2754+
id: ID!
2755+
title: String!
2756+
description: String
2757+
url: String!
2758+
status: ThreadLinkStatus!
2759+
threadId: ID!
2760+
createdAt: DateTime!
2761+
createdBy: InternalActor!
2762+
updatedAt: DateTime!
2763+
updatedBy: InternalActor!
2764+
plainThreadId: ID!
2765+
}
2766+
27532767
input LinearIssueThreadLinkInput {
27542768
linearIssueId: ID!
27552769
linearIssueUrl: String!
27562770
}
27572771

2772+
input PlainThreadLinkInput {
2773+
plainThreadId: ID!
2774+
}
2775+
27582776
input CreateThreadLinkInput {
27592777
threadId: ID!
27602778
linearIssue: LinearIssueThreadLinkInput
2779+
plainThread: PlainThreadLinkInput
27612780
}
27622781

27632782
type CreateThreadLinkOutput {

0 commit comments

Comments
 (0)
Please sign in to comment.