Pagination
query Threads {
threads(last: 10) {
edges {
node {
id
subject
}
cursor
}
pageInfo {
hasNextPage
endCursor
}
}
}query Threads {
threads(order: lastMessage) {
edges {
node {
id
subject
}
cursor
}
}
}Last updated
Was this helpful?
