Open randomuserid opened 3 months ago
maybe like this;
// Format the results as text
result.records.forEach(record => {
const node = record.get('n');
const entityType = record.get('entity_type');
console.log(`Node properties: ${JSON.stringify(node.properties)}, Entity type: ${entityType}`);
});
One of the optional output formats in Neo is a text blob which looks like this:
The URI looks like this from what I can see:
We need to work out how to get this output format from Neo so we can show it in a Forensic view when a user wants to see complete details of alerts in a set for various reasons.