Open
Description
Hi, sorry to bother you with a question which is probably a simple one but is that possible (and if it is, how ?) to launch the code without using click or command and without giving every arguments ?
I just want to do this :
bulk_insert(graph, host, port, nodes, relations)
Without putting all parameters like this :
bulk_insert(graph, host, port, password, nodes, relations, separator, max_token_count, max_buffer_size, max_token_size, quote, field_types, skip_invalid_nodes, skip_invalid_edges)
But for now, the only way i found is (as you do on your test) by using Click :
from click.testing import CliRunner
from redisgraph_bulk_loader.bulk_insert import bulk_insert
def addToGraph(port,nodes,relations,graphName):
runner = CliRunner()
res = runner.invoke(bulk_insert, [
"--port", port,
"--nodes", nodes,
"--relations", relations,
graphName])
Thanks for your help.
Metadata
Metadata
Assignees
Labels
No labels