Packages
ryugraph_ex
0.1.0
Elixir NIF bindings for RyuGraph - an embedded property graph database with Cypher query support
Current section
Files
Jump to
Current section
Files
lib/ryugraph_ex/prepared_statement.ex
defmodule RyugraphEx.PreparedStatement do
@moduledoc """
Module representing a prepared statement in RyuGraph.
Prepared statements allow you to execute the same query multiple times
with different parameters efficiently, as the query is parsed and planned only once.
"""
@type t :: reference()
end