pub async fn execute_graph_operation(
query: Query,
) -> Result<OperationOutcome, DynError>Expand description
Executes a graph query expected to return exactly one row containing a boolean column named “flag”. Interprets the boolean as follows:
true=> ReturnsOperationOutcome::Updatedfalse=> ReturnsOperationOutcome::CreatedOrDeleted
If no rows are returned, this function returns OperationOutcome::MissingDependency, typically
indicating a missing dependency or an unmatched query condition.