Packages

Elixir NIF bindings for RyuGraph - an embedded property graph database with Cypher query support

Current section

Files

Jump to
ryugraph_ex lib ryugraph_ex prepared_statement.ex
Raw

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