How to retrieve all fields that are available in content fragment model ?
I have created a content fragment that contains multiple fields, and I am trying to retrieve all of them using GraphQL. I want to like to avoid listing each field individually. For example if my content fragment has 20 fields, I want to extract and view all field values without specifying them one by one. Is there a way to achieve this? I attempted using an asterisk (*), but it did not work. I also tried GraphQL introspection, but that did not yield any results. Any suggestions?
{
testFragmentByPath(_path:"/content/dam/projects/en-us/1",variation:"master") {
item{
h1text
h2text
buttonText
}
}
}