File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/sim/connectors/linear Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ const ISSUE_FIELDS = `
119119`
120120
121121const ISSUE_BY_ID_QUERY = `
122- query GetIssue($id: String !) {
122+ query GetIssue($id: ID !) {
123123 issue(id: $id) {
124124 ${ ISSUE_FIELDS }
125125 }
@@ -147,13 +147,13 @@ function buildIssuesQuery(sourceConfig: Record<string, unknown>): {
147147 const variables : Record < string , unknown > = { }
148148
149149 if ( teamId ) {
150- varDefs . push ( '$teamId: String !' )
150+ varDefs . push ( '$teamId: ID !' )
151151 filterClauses . push ( 'team: { id: { eq: $teamId } }' )
152152 variables . teamId = teamId
153153 }
154154
155155 if ( projectId ) {
156- varDefs . push ( '$projectId: String !' )
156+ varDefs . push ( '$projectId: ID !' )
157157 filterClauses . push ( 'project: { id: { eq: $projectId } }' )
158158 variables . projectId = projectId
159159 }
You can’t perform that action at this time.
0 commit comments