Revision 7e6c2f41e76d49285e7a35afafd1308caf61a9ce
Committed on 05/11/2018 1:55 am by
Bertrand Dunogier <bertrand.dunogier@ez.no> [GitHub Diff]
Improved selection field resolution (#35)
Depending on the field definition isMultiple setting, selection fields will yield either a String (single), or an array of String (multiple):
```
{
"data": {
"test": {
"selectionTest": {
"singleSelection": "Lord Vetinari",
"multipleSelection": [
"Lord Vetinari",
"Vimes",
"Granny Weatherwax"
]
}
}
}
}
```