Closed 1moeses closed 5 years ago
Hi, the repeater field is not currently supported by the plugin. I'll implement it soon, I'll keep you posted :)
There are two different "modes" in which a repeater field can operate - a repeater where each field has the same type/structure or a repeater where entries might have a different structure from each other. The first use case is already partially supported. Images, Galleries & Markdown will not be resolved but scalar values will be in the GraphQL Tree.
The above described use case is the second and trickier use case as GraphQL does not allow for differying value types for a field. In order to support this use case I guess every entry needs to be wrapped in a wrapper object like this
{
type: "addGalleryField",
addGalleryField: { ... },
addImageField: null,
textField: null
}
This is wonderful, thank you guys. Where is your donation button ;)?
@diehenne Haha, it is at the top of the web page, it's written "Star" on it ;)
@diehenne Repeater are now integrated in version 1.0.13+.
Hi, I'm getting a warning caused by my repeater-field and can't query any value. Is the repeater-field already supported in your plugin?
Warning:
Edit: Options JSON of Repeater:
Thanks