Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update load csv docstring #305

Merged
merged 7 commits into from
Jul 9, 2024
2 changes: 1 addition & 1 deletion gqlalchemy/query_builders/memgraph_query_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def load_csv(self, path: str, header: bool, row: str) -> "DeclarativeBase":
"""Load data from a CSV file by executing a Cypher query for each row.

Args:
path: A string representing the path to the CSV file.
path: A string representing the path to the CSV file. If beginning with `http://`, `https://`, or `ftp://`, the CSV file will be fetched over the network.
header: A bool indicating if the CSV file starts with a header row.
row: A string representing the name of the variable for iterating
over each row.
Expand Down
Loading