i need to get the id of a node in neo4j using py2neo. using the following query i am getting a cypher result object which contains a record object
table_query = neo4j.CypherQuery(db, "merge (x: Table{name: 'table_param'}) return x")
the contents of the .data method are equal to the following [Record(x=Node('host/db/data/node/31'))]
how can i get the node object