1
在neo4j中,我想通過foreach語句篩選和收集數據。 示例 我的用戶案例與MySQL。 users = User ->findAll(); data = array(); foreach(users as user){ profile = Profile:findBy(user); if(user.age > 20 and profile.company is empty) data[] = user; } return data
如何過濾Neo4j中的數據?
感謝
嗨@cybersam,謝謝你的分片。它適合我!謝謝 – dungphanxuan
請記住接受適合您的最佳答案。 – cybersam