diff --git a/gqlalchemy/query_builders/memgraph_query_builder.py b/gqlalchemy/query_builders/memgraph_query_builder.py index 66ed98ee..ae6f16a9 100644 --- a/gqlalchemy/query_builders/memgraph_query_builder.py +++ b/gqlalchemy/query_builders/memgraph_query_builder.py @@ -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.