Hi, would it be possible to add an option when parsing data to be without edges and node?
Example:
from
{
"data": {
"markers": {
"edges": [
{
"node": {
"addresses": {
"edges": [
{
"node": {
"geo": {
"lat": 50.2699800871087,
"long": 19.003614752063
}
}
},
{
"node": {
"geo": {
"lat": 52.296189564637,
"long": 20.9322076727827
}
}
}
]
}
}
}
]
}
}
}
to
{
"data": {
"markers": [
{
"addresses": [
{
"geo": {
"lat": 50.2699800871087,
"long": 19.003614752063
}
},
{
"geo": {
"lat": 52.296189564637,
"long": 20.9322076727827
}
}
]
}
]
}
}
Hi, would it be possible to add an option when parsing data to be without edges and node?
Example:
from
{ "data": { "markers": { "edges": [ { "node": { "addresses": { "edges": [ { "node": { "geo": { "lat": 50.2699800871087, "long": 19.003614752063 } } }, { "node": { "geo": { "lat": 52.296189564637, "long": 20.9322076727827 } } } ] } } } ] } } }to
{ "data": { "markers": [ { "addresses": [ { "geo": { "lat": 50.2699800871087, "long": 19.003614752063 } }, { "geo": { "lat": 52.296189564637, "long": 20.9322076727827 } } ] } ] } }