Neo4j

ข้อมูล

Neotask บน OpenClaw ทำให้ graph database operations เป็นการสนทนาผ่าน Neo4j — สำรวจ schema อ่านความสัมพันธ์ และเขียน Cypher query เพื่อปลดล็อก connected data insight

สิ่งที่คุณทำได้

อินทิเกรชัน Neo4j ให้ Neotask 4 graph database action

  • `get-schema` — ดึง graph schema ทั้งหมดรวมถึง node label, relationship type และ property key
  • `read-cypher` — รัน read-only Cypher query เพื่อ traverse และดึง graph data
  • `write-cypher` — รัน write Cypher query เพื่อสร้าง อัปเดต และลบ node และ relationship
  • `list-gds-procedures` — แสดง Graph Data Science library procedure ที่มี
  • ทุกแอ็กชันทำงานโดยอัตโนมัติหรือต้องได้รับการอนุมัติจากคุณ — คุณเป็นคนตัดสินใจ

    ลองถาม

  • "แสดง schema ของ knowledge graph — มี node type และ relationship อะไร?"
  • "ค้นหาลูกค้าทั้งหมดที่เชื่อมต่อกับมากกว่า 3 enterprise account ใน graph"
  • "สร้าง relationship ระหว่าง product node P-123 และ supplier node S-456 ใน supply chain graph"
  • "shortest path ระหว่าง top sales rep และ CTO ของ target account คืออะไร?"
  • เคล็ดลับ

  • เริ่มด้วย `get-schema` เสมอเมื่อทำงานกับ graph database ที่ไม่คุ้นเคย — เอเจนต์ map โครงสร้างก่อนเขียน query
  • ใช้ประตูอนุมัติบน `write-cypher` ที่แก้ไข production graph data
  • จับคู่ Neo4j กับ CRM integration เพื่อเพิ่ม graph: sales relationship ใหม่ถูกเขียนเข้า Neo4j โดยอัตโนมัติ
  • Graph Data Science procedure ปลดล็อก advanced analytics: pagerank สำหรับ influence scoring, community detection สำหรับ account segmentation
  • Works Well With