I find myself very often having to resource to redundantly name my fields like:
"SEO": {
"seo_title": {
"type": "Text",
},
"seo_desc": {
"type": "Text",
},
"seo_img": {
"type": "Image",
}
}
Because title
cannot be used inside the group SEO
, as I have title
outside of it.
This makes my GraphQL queries messy and less intuitive! Is this a known limitation?
Thanks a lot!