Skip to main content

Module types

Module types 

Source
Expand description

Query result types and value re-exports.

Core value types (Value, Node, Edge, Path) are defined in uni_common::value and re-exported here for backward compatibility. Query-specific types (Row, QueryResult, QueryCursor) remain here.

Structs§

Edge
Graph edge with identity, type, endpoints, and properties.
ExecuteResult
Result of a write operation (CREATE, SET, DELETE, etc.).
Node
Graph node with identity, labels, and properties.
Path
Graph path consisting of alternating nodes and edges.
QueryCursor
Cursor-based result streaming for large result sets.
QueryMetrics
Timing metrics collected during query execution.
QueryResult
Collection of query result rows.
Row
Single result row from a query.

Enums§

QueryWarning
Warnings emitted during query execution.
Value
Dynamic value type for properties, parameters, and results.

Traits§

FromValue
Trait for fallible conversion from Value.