exec method

  1. @MPI(name: "mesh.graph.exec")
Future<void> exec(
  1. String expr,
  2. Map<String, dynamic> args, {
  3. Context? ctx,
})

Exec cypher.

Implementation

@MPI(name: "mesh.graph.exec")
Future<void> exec(String expr, Map<String, dynamic> args, {Context? ctx}) {
  throw UnimplementedError('exec() has not been implemented.');
}