File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed 
sources/project-updated-instant Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1- import  linearApp  from  "@pipedream/linear_app" ; 
1+ //import linearApp from "@pipedream/linear_app"; 
2+ import  linearApp  from  "../linear_app/linear_app.app.mjs" ; 
3+ 
4+ // TODO: Will update above statement to import from @pipedream /linear_app 
5+ // after updates to linear_app are published 
26
37export  default  { 
48  ...linearApp , 
Original file line number Diff line number Diff line change 1- import  projectUpdatedInstant  from  "@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs" ; 
1+ //import projectUpdatedInstant from 
2+ //"@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs"; 
3+ import  projectUpdatedInstant  from  "../../../linear_app/sources/project-updated-instant/project-updated-instant.mjs" ; 
4+ 
5+ // TODO: Will update above statement to import from @pipedream /linear_app 
6+ // after updates to linear_app are published 
7+ 
28import  utils  from  "../../common/utils.mjs" ; 
39
410/* eslint-disable pipedream/required-properties-type */ 
Original file line number Diff line number Diff line change @@ -50,10 +50,18 @@ export default {
5050  listProjects : ` 
5151    query ListProjects( 
5252      $filter: ProjectFilter, 
53+       $before: String, 
54+       $after: String, 
55+       $first: Int, 
56+       $last: Int, 
5357      $orderBy: PaginationOrderBy 
5458    ) { 
5559      projects( 
5660        filter: $filter, 
61+         before: $before, 
62+         after: $after, 
63+         first: $first, 
64+         last: $last, 
5765        orderBy: $orderBy 
5866      ) { 
5967        pageInfo { 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments