FalkorDB

Dati

Query and Gestisci your FalkorDB graph database through Neotask on OpenClaw — graph Dati exploration and Analitiche attraverso la conversazione.

Cosa Puoi Fare

Esegui Cypher Queries

Dì Neotask what relationship or pattern you want to Trova in your graph and it writes the Cypher query against FalkorDB. Ottieni graph query results without memorizing Cypher syntax.

Explore Graph Relationships

Chiedi Neotask to Mostra all connections from a specific node, Trova the shortest path between two entities, or Identifica the most connected nodes in your graph.

Analizza Network Structures

Chiedi Neotask to Esegui community detection, calculate centrality scores, or Identifica clusters in your graph Dati. Useful for fraud detection, recommendation systems, and knowledge graph analysis.

Gestisci Nodes and Edges

Chiedi Neotask to Crea new nodes, add edges between existing nodes, Aggiorna node properties, or Elimina stale relationships.

Inspect Graph Schema

Chiedi Neotask to Elenca all node labels and relationship types in your FalkorDB graph, Mostra the properties associated with each label, or Identifica orphaned nodes.

Prova a Chiedere

  • "Trova all users who are connected to user ID 12345 within 2 hops"
  • "What\'s the shortest path between company A and company B in my knowledge graph?"
  • "Mostra me the 10 most connected nodes in my graph"
  • "Crea a new \'WORKS_AT\' relationship between person node 1 and company node 2"
  • "Trova all fraud rings: groups of accounts connected by shared device IDs"
  • Suggerimenti Professionali

  • Index for traversal performance — FalkorDB supports node label indexes; Controlla whether indexes exist on frequently filtered properties before running large traversal queries.
  • MATCH with LIMIT — always add LIMIT to exploratory queries; graph traversals without limits can return millions of results on dense graphs.
  • Path patterns for complex queries — Descrivi the relationship chain you want in plain English and let Neotask construct the Cypher path pattern.
  • Graph schema first — Chiedi Neotask to Descrivi the graph schema before writing complex queries so it uses the correct label and relationship type names.
  • Works Well With