# graph commands

Source: https://stratadb.org/docs/reference/graph

# `graph` — command reference

| Command | Summary |
|---|---|
| [Traverse graph breadth-first](/docs/reference/graph/analytics/bfs) | Run a bounded breadth-first traversal. |
| [Detect graph communities](/docs/reference/graph/analytics/cdlp) | Detect communities via label propagation. |
| [Compute graph clustering coefficients](/docs/reference/graph/analytics/lcc) | Compute local clustering coefficients. |
| [Compute graph pagerank](/docs/reference/graph/analytics/pagerank) | Compute PageRank importance scores. |
| [Compute graph shortest paths](/docs/reference/graph/analytics/sssp) | Compute shortest-path distances from a source. |
| [Compute graph connected components](/docs/reference/graph/analytics/wcc) | Compute weakly connected components. |
| [Apply graph delete policy](/docs/reference/graph/apply_delete_policy) | Apply a delete policy to bound graph facts. |
| [Batch write graph](/docs/reference/graph/batch_write) | Apply graph mutations atomically. |
| [List graph bindings for entity](/docs/reference/graph/bindings) | Find graph nodes bound to an entity. |
| [Bulk insert graph data](/docs/reference/graph/bulk_insert) | Bulk-load nodes and edges in chunks. |
| [Create graph](/docs/reference/graph/create) | Create a named graph. |
| [Delete graph](/docs/reference/graph/delete) | Delete a graph and its visible data. |
| [Add graph edge](/docs/reference/graph/edge/add) | Add or replace a graph edge. |
| [Get graph edge](/docs/reference/graph/edge/get) | Read one graph edge. |
| [Remove graph edge](/docs/reference/graph/edge/remove) | Remove a graph edge. |
| [List graphs](/docs/reference/graph/list) | List graph names. |
| [Read graph metadata](/docs/reference/graph/meta) | Read graph metadata and counts. |
| [List graph neighbors](/docs/reference/graph/neighbors) | List a node's neighbors. |
| [Add graph node](/docs/reference/graph/node/add) | Add or replace a graph node. |
| [Get graph node](/docs/reference/graph/node/get) | Read one graph node. |
| [List graph nodes](/docs/reference/graph/node/list) | List graph nodes. |
| [Remove graph node](/docs/reference/graph/node/remove) | Remove a graph node and its edges. |
| [List graph nodes by type](/docs/reference/graph/nodes_by_type) | List nodes declaring an object type. |
| [Define graph link type](/docs/reference/graph/ontology/define_link_type) | Define a graph link type. |
| [Define graph object type](/docs/reference/graph/ontology/define_object_type) | Define a graph object type. |
| [Delete graph link type](/docs/reference/graph/ontology/delete_link_type) | Delete a draft link type. |
| [Delete graph object type](/docs/reference/graph/ontology/delete_object_type) | Delete a draft object type. |
| [Freeze graph ontology](/docs/reference/graph/ontology/freeze) | Freeze the graph ontology. |
| [Read graph ontology](/docs/reference/graph/ontology/get) | Read the graph ontology. |
| [Read graph ontology summary](/docs/reference/graph/ontology/summary) | Read the ontology with usage counts. |
| [Sample graph nodes](/docs/reference/graph/sample) | Sample graph nodes. |