Skip to content
Snippets Groups Projects

Test retrieving Radios elements using GraphQL 4.

2 files
+ 24
14
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 11
8
fragment webformElementOption on WebformElementOption {
__typename
title
description
value
}
fragment webformElementRadios on WebformElementRadios {
__typename
id
title
description
type
metadata {
key
type
title
description
required
requiredError
}
options {
...webformElementOption
}
}
fragment webformElement on WebformElement {
...webformElementRadios
}
fragment webform on Webform {
title
elements {
...webformElement
...webformElementRadios
}
}
Loading