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
Copy file name to clipboardExpand all lines: pages/data-migration/json.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -247,23 +247,23 @@ The same approach works for S3 files when proper credentials are provided.
247
247
248
248
{<h3className="custom-header">JSONL files</h3>}
249
249
250
-
-[`people_nodes.jsonl`](https://s3.eu-west-1.amazonaws.com/download.memgraph.com/asset/docs/people_nodes.jsonl) is used to create nodes labeled `:Person`.<br/> The file contains the following data:
250
+
-[`people_nodes.jsonl`](https://download.memgraph.com/asset/docs/people_nodes.jsonl) is used to create nodes labeled `:Person`.<br/> The file contains the following data:
-[`restaurants_nodes.jsonl`](https://s3.eu-west-1.amazonaws.com/download.memgraph.com/asset/docs/restaurants_nodes.jsonl) is used to create nodes labeled `:Restaurants`.<br/> The file contains the following data:
258
+
-[`restaurants_nodes.jsonl`](https://download.memgraph.com/asset/docs/restaurants_nodes.jsonl) is used to create nodes labeled `:Restaurants`.<br/> The file contains the following data:
-[`people_relationships.jsonl`](https://s3.eu-west-1.amazonaws.com/download.memgraph.com/asset/docs/people_relationships.jsonl) is used to connect people with the `:IS_FRIENDS_WITH` relationship.<br/> The file contains the following data:
266
+
-[`people_relationships.jsonl`](https://download.memgraph.com/asset/docs/people_relationships.jsonl) is used to connect people with the `:IS_FRIENDS_WITH` relationship.<br/> The file contains the following data:
-[`restaurants_relationships.jsonl`](https://s3.eu-west-1.amazonaws.com/download.memgraph.com/asset/docs/restaurants_relationships.parquet) is used to connect people with restaurants using the `:ATE_AT` relationship.<br/> The file contains the following data:
276
+
-[`restaurants_relationships.jsonl`](https://download.memgraph.com/asset/docs/restaurants_relationships.jsonl) is used to connect people with restaurants using the `:ATE_AT` relationship.<br/> The file contains the following data:
Copy file name to clipboardExpand all lines: pages/data-migration/parquet.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -288,7 +288,7 @@ single label or relationships of a single type.
288
288
289
289
{<h3className="custom-header">Parquet files</h3>}
290
290
291
-
-[`people_nodes.parquet`](s3://download.memgraph.com/asset/docs/people_nodes.parquet) is used to create nodes labeled `:Person`.<br/> The file contains the following data:
291
+
-[`people_nodes.parquet`](https://download.memgraph.com/asset/docs/people_nodes.parquet) is used to create nodes labeled `:Person`.<br/> The file contains the following data:
292
292
```parquet
293
293
id,name,age,city
294
294
100,Daniel,30,London
@@ -297,7 +297,7 @@ single label or relationships of a single type.
297
297
103,Mia,25,Zagreb
298
298
104,Lucy,21,Paris
299
299
```
300
-
-[`restaurants_nodes.parquet`](s3://download.memgraph.com/asset/docs/restaurants_nodes.parquet) is used to create nodes labeled `:Restaurants`.<br/> The file contains the following data:
300
+
-[`restaurants_nodes.parquet`](https://download.memgraph.com/asset/docs/restaurants_nodes.parquet) is used to create nodes labeled `:Restaurants`.<br/> The file contains the following data:
301
301
```parquet
302
302
id,name,menu
303
303
200,Mc Donalds,Fries;BigMac;McChicken;Apple Pie
@@ -306,7 +306,7 @@ single label or relationships of a single type.
-[`people_relationships.parquet`](s3://download.memgraph.com/asset/docs/people_relationships.parquet) is used to connect people with the `:IS_FRIENDS_WITH` relationship.<br/> The file contains the following data:
309
+
-[`people_relationships.parquet`](https://download.memgraph.com/asset/docs/people_relationships.parquet) is used to connect people with the `:IS_FRIENDS_WITH` relationship.<br/> The file contains the following data:
310
310
```parquet
311
311
first_person,second_person,met_in
312
312
100,102,2014
@@ -317,7 +317,7 @@ single label or relationships of a single type.
317
317
101,102,2017
318
318
100,103,2001
319
319
```
320
-
-[`restaurants_relationships.parquet`](s3://download.memgraph.com/asset/docs/restaurants_relationships.parquet) is used to connect people with restaurants using the `:ATE_AT` relationship.<br/> The file contains the following data:
320
+
-[`restaurants_relationships.parquet`](https://download.memgraph.com/asset/docs/restaurants_relationships.parquet) is used to connect people with restaurants using the `:ATE_AT` relationship.<br/> The file contains the following data:
321
321
```parquet
322
322
PERSON_ID,REST_ID,liked
323
323
100,200,true
@@ -338,14 +338,14 @@ single label or relationships of a single type.
338
338
for each row with properties based on the parsed row values:
339
339
340
340
```cypher
341
-
LOAD PARQUET FROM "s3://download.memgraph.com/asset/docs/people_nodes.parquet" AS row
341
+
LOAD PARQUET FROM "https://download.memgraph.com/asset/docs/people_nodes.parquet" AS row
0 commit comments