You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@click.option('--ssl-ca-certs', '-m', default=None, help='SSL CA certs')
55
58
# CSV file paths
56
59
@click.option('--nodes', '-n', multiple=True, help='Path to node csv file')
57
60
@click.option('--nodes-with-label', '-N', nargs=2, multiple=True, help='Label string followed by path to node csv file')
@@ -60,7 +63,7 @@ def process_entities(entities):
60
63
@click.option('--separator', '-o', default=',', help='Field token separator in csv file')
61
64
# Schema options
62
65
@click.option('--enforce-schema', '-d', default=False, is_flag=True, help='Enforce the schema described in CSV header rows')
63
-
@click.option('--id-type', '-i', default='STRING', help='The data type of unique node ID properties (either STRING or INTEGER)')
66
+
@click.option('--id-type', '-j', default='STRING', help='The data type of unique node ID properties (either STRING or INTEGER)')
64
67
@click.option('--skip-invalid-nodes', '-s', default=False, is_flag=True, help='ignore nodes that use previously defined IDs')
65
68
@click.option('--skip-invalid-edges', '-e', default=False, is_flag=True, help='ignore invalid edges, print an error message and continue loading (True), or stop loading after an edge loading failure (False)')
66
69
@click.option('--quote', '-q', default=0, help='the quoting format used in the CSV file. QUOTE_MINIMAL=0,QUOTE_ALL=1,QUOTE_NONNUMERIC=2,QUOTE_NONE=3')
@@ -71,7 +74,7 @@ def process_entities(entities):
71
74
@click.option('--max-token-size', '-t', default=64, help='max size of each token in megabytes (default 64, max 512)')
72
75
@click.option('--index', '-i', multiple=True, help='Label:Propery on which to create an index')
73
76
@click.option('--full-text-index', '-f', multiple=True, help='Label:Propery on which to create an full text search index')
0 commit comments