The following is the code for my graph
CALL gds.graph.project(
'scamTraining',
{
Transaction: {
label: 'Transaction',
properties: {
num_input: {
property:'num_input',
defaultValue: -100
},
num_output: {
property: 'num_output',
defaultValue: -100
},
t...