cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

francois
Node
since ‎11-06-2022
‎11-15-2022

User Statistics

  • 1 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

So I run this simple request: const res = await session.run('MATCH p=(t:Account {account_id: '123598'})-[]-(j) return count(j)')   And to catch the count I have to dig: const count = res.records[0]._fields[0].low  It feels I'm doing it the wrong wa...