Limiting results in nested child of list type

query listTweets($limit:Int!, $offset: Int){queryTweet(first:$limit,offset:$offset,filter: {not:{ has : replyTo }}) { author { screenName } replyTo { id }, replies(first: 2) { id }}

I only want to get max two items from replies array ?

Basically I want to know if pagination in child nodes is possible

Hello @broy
Pagination works in child nodes. The logic is super simple, it executes your limit after getting all uids and it does not matter if this is child node or parent.