I am collecting some data from Monday for a report that upper management wanted.
Up until last week, everything was working fine. Now I am getting an internal server error when requesting pages of data. It loads some pages but eventually returns a code 500 internal server error. I thought maybe I was requesting too much data or a record that was deleted and somehow causing a crash but I haven’t been able to narrow down the cause.
This is the query I was trying:
query GetItemsWithUpdates($limit: Int, $ids: :Int]){
items(limit: $limit ids: $ids){
id
updates{
id
item_id
creator_id
created_at
updated_at
replies{
id
creator_id
created_at
updated_at
}
}
}
}
Any information would be appreciated. Thanks.