Hello,
First i want to to thank @dadish for this very helpful module!
I played around a bit with existing pages (in development) and i have a question regarding the "title issue":
I'm trying to get the title from child pages with this query:
{
job{
getTotal
list {
title
id
job_client {
list {
title
}
}
children(s: "template=task") {
list {
title
}
}
}
}
}
the task template has the title field but i only get this result:
{
"errors": [
{
"message": "Cannot query field \"title\" on type \"Page\".",
"extensions": {
"category": "graphql"
},
"locations": [
{
"line": 14,
"column": 11
}
]
}
]
}
Children results work with "name" instead of "title"...