what happens in neo4j when you give other nodes primary key as a property for a different node? can you retrieve data based on those primary keys given as properties.
i have created a node which has the primary key of its connected nodes as the properties. it also has an additional property which is not a pk of any other nodes. when i use below query, it retrieves the relevant nodes. but when i use any other properties (commented in below query) it says there is no data/records. -
MATCH (ce:ConnectionEvent )
//where ce.date = "6/9/2024"
// where ce.ipId = 14
// where ce.userId = 1
// where ce.deviceId = "1-2"
// where ce.appId=0
where ce.cpc = 17 //working
RETURN ce
what is the reason for this, i used the data importer in neo4j aura db to import the data.