Hi Community,
I needed same sequence of subitems that arranged manually by user on monday.com platform. But actually I receive that subitems data sequence in graphql api as per may be created at date time wise but I wanted same sequence of monday.com subitems must be reflect in graphql api.
Is there any suggestion or any graphql parameter that will help me lot?
This following image shows sequence of subitems and expecting same data sequence in graphql api
Actually I am reciving may be created at time wise subitems sequence that shown in following image but I dont want this order of sequence I want same sequence as monday.com shows for subitems in above image and expecting same in graphql api.
This is my graphql ap query
{
boards(ids: 3781143711) {
id
name
items (ids: 3781890439) {
id
name
subitems {
id
name
}
}
}
}