Я получаю контент от Содержательный .
Структура проста:
Page
- sections (ref)
-- Section1
--- modules (ref)
---- Module1
---- Module2
-- Section2
--- modules (ref)
---- Module1
---- Module2
Мне не удается найти вложенные ссылочные типы.
В моей модели содержимого есть страница с модулями справочных модулей, включающими заголовок и список других модулей. Кажется, что содержание не может быть достигнуто с помощью плагина. Ты знаешь почему? и как это исправить?
allContentfulProductLandingPage{
edges {
node {
name
sections { #this is a reference type
title
modules { #this is a reference type
__typename
#title #I need title and subfields here
}
}
}
}
}
}
}```
How can I get more then the __typename from this query? Likethe title I commented out?