I’d like to get the newest items from a group first and the documentation mentions the newest_first boolean under items. But I get this:
“Field ‘items’ doesn’t accept argument ‘newest_first’”
Am I stupid? Can anyone tell me what’s going wrorng?
{
boards(ids: 000000000) {
groups(ids: “group_id”) {
items(newest_first: true, limit: 1) {
name
}
}
}
}