I need to query the items of a couple of boards for an internal system and to run some reporting on it.
There is one board in particular that I receive the “500 Server Error: Internal Server Error for url: https://api.monday.com/v2” on some items but not all items.
If I remove the column_values from the query, I am able to query all items. If I keep the column values, I am able to query some items but not all, even if I just query the name and id in column_values, it doesn’t work.
You can send us an email to appsupport@monday.com with the exact query you are using and the error you are getting (and if you can a timestamp of the last time you ran this with the date, hour, minute and user whose API token is being used) and we can take a look from there!
we have identified the same “internal server error”.
Here are the specific conditions to reproduce the error:
Query:
{
items(ids: [5514944706]) {
id
board {
id
name
}
name
column_values {
column {
id
}
id
type
value
text
... on MirrorValue {
column {
id
}
id
type
value
text
display_value
}
}
subitems {
id
name
column_values {
column {
id
}
id
type
value
text
... on MirrorValue {
column {
id
}
id
type
value
text
display_value
}
}
}
parent_item {
id
name
column_values {
column {
id
}
id
type
value
text
... on MirrorValue {
column {
id
}
id
type
value
text
display_value
}
}
board {
id
name
}
}
}
}