-
Type:
Suggestion
-
Resolution: Unresolved
-
None
-
Component/s: Assets - Core experiences
-
0
-
2
Description
With JSON import, it's impossible to use wildcard in the selector.
Consider a sample JSON file below and it's not possible to import the id and name of each array unless we can use "objects.ObjectFamily*" or in a similar format as the selector.
{
"objects": {
"ObjectFamily::1": {
"key": "1",
"fields": {
"id": "1",
"name": "uno"
}
},
"ObjectFamily::2": {
"key": "2",
"fields": {
"id": "2",
"name": "des"
}
},
"ObjectFamily::3": {
"key": "3",
"fields": {
"id": "3",
"name": "tres"
}
},
},
"code": 0,
"message": "Found: 3"
}
Suggestion
- Support wildcard in the selector
- links to