Hi devs.
I’ve found a couple of bugs in API v2024-01.
1. creator
is null
in items
object.
The query
{
items(ids: 12345) {
creator {
name
}
}
returns "creator": null
.
2. Despite what’s written in the documentation, retrieving the creator
in a CreationLogValue
rises an error.
The query
{
items(ids: 12345) {
column_values {
... on CreationLogValue {
creator {
name
}
}
}
}
}
returns
{
"errors": s
{
"message": "The string did not match the expected pattern.",
"stack": ""
}
]
}
Can you confirm you are experiencing the same problem?