You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will be useful to also render a clean, processed JSON structure (with the _fields and _fieldLookup keys merged) to be more human-readable.
Describe the solution you'd like
For the example above, we can create an advanced report setting returnFormat with three settings ['raw', 'json', 'yml'] that determines the output.
Example for json for the data above:
{
"X": "ABC",
"Y": 123
}
Example for yml for the data above:
X: ABC
Y: 123
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently the Raw JSON report type returns the direct output from the Neo4j driver:
It will be useful to also render a clean, processed JSON structure (with the _fields and _fieldLookup keys merged) to be more human-readable.
Describe the solution you'd like
For the example above, we can create an advanced report setting
returnFormat
with three settings['raw', 'json', 'yml']
that determines the output.Example for
json
for the data above:Example for
yml
for the data above:The text was updated successfully, but these errors were encountered: