mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Linear Node): Fix pagination issue for get all issues (#5324)
This commit is contained in:
committed by
GitHub
parent
96ec5bc880
commit
f9ecc34b10
@@ -122,8 +122,8 @@ export const query = {
|
||||
}`;
|
||||
},
|
||||
getIssues() {
|
||||
return `query Issue ($first: Int){
|
||||
issues (first: $first){
|
||||
return `query Issue ($first: Int, $after: String){
|
||||
issues (first: $first, after: $after){
|
||||
nodes {
|
||||
id,
|
||||
title,
|
||||
@@ -149,6 +149,10 @@ export const query = {
|
||||
name
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
endCursor
|
||||
}
|
||||
}
|
||||
}`;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user