Does AEM 6.5.21 allows to customize GraphQL schema or use GraphQL resolvers?
{
"data": {
"sampleCFByPath": {
"item": {
"title": "Sample CF",
"section": [
"{\"field1\":\"value 1\",\"field2\":false}"
]
}
}
}
}
{
"data": {
"sampleCFByPath": {
"item": {
"title": "Sample CF",
"section": [
{
"field1": "value 1",
"field2": false
}
]
}
}
}
}


