straycat on Nostr: Here’s the script I’m running now which took about 45 min: ``` #! /bin/bash sudo ...
Here’s the script I’m running now which took about 45 min:
```
#! /bin/bash
sudo /home/ubuntu/strfry/strfry export --since 0 >> /home/ubuntu/neo4jExport.json
sudo mv /home/ubuntu/neo4jExport.json /var/lib/neo4j/import/neo4jExport.json
cypher-shell -u XXXX -p XXXX -a bolt://localhost:7687 -f /home/ubuntu/apocCypherCommand
sudo rm /var/lib/neo4j/import/neo4jExport.json
```
And here’s apocCypherCommand:
```
CALL apoc.periodic.iterate(
"CALL apoc.load.json('file:///neo4jExport.json') YIELD value AS event",
"
MERGE (u:ApocNostrUser {pubkey:event.pubkey})
ON CREATE SET u.proceses=['initialization'], u.foo='bar'
MERGE (e:ApocNostrEvent {event_id:event.id})
ON CREATE SET e.kind=event.kind, e.created_at=event.created_at, e.author=event.pubkey, e.processes=['initialiation'], e.foo='bar'
WITH u, e
MATCH (e2:ApocNostrEvent) WHERE e2.author=e.author AND e2.kind=1 MERGE (u)-[r:AUTHOR {foo:'bar'}]->(e2)
",
{ batchSize:1000, parallel:true}
)
;
```
Some of the things like the edges I’m adding now just to see if I have the syntax right.
I’ll probably replace strfry export with strfry scan so I can use filters
Published at
2025-02-09 17:23:50Event JSON
{
"id": "a49a85e1e2c7f9797e958c6cb168e1b01ef01a8e4b600f54cb29d753585ab943",
"pubkey": "e5272de914bd301755c439b88e6959a43c9d2664831f093c51e9c799a16a102f",
"created_at": 1739121830,
"kind": 1,
"tags": [
[
"e",
"8fbb005b53bfc459ccf009385eaa62789b536a5498d919544f34bf78444cc1e9",
"",
"root"
],
[
"e",
"1c1e0c377cd9a50e78d9235cac94c50b8940ed3b15b6803f14b219aed5b09e5b",
"",
"reply"
],
[
"p",
"7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"
],
[
"t",
""
]
],
"content": "Here’s the script I’m running now which took about 45 min:\n\n```\n#! /bin/bash\n\nsudo /home/ubuntu/strfry/strfry export --since 0 \u003e\u003e /home/ubuntu/neo4jExport.json\nsudo mv /home/ubuntu/neo4jExport.json /var/lib/neo4j/import/neo4jExport.json\n\ncypher-shell -u XXXX -p XXXX -a bolt://localhost:7687 -f /home/ubuntu/apocCypherCommand\n\nsudo rm /var/lib/neo4j/import/neo4jExport.json\n```\n\nAnd here’s apocCypherCommand:\n```\nCALL apoc.periodic.iterate(\n \"CALL apoc.load.json('file:///neo4jExport.json') YIELD value AS event\",\n \"\n MERGE (u:ApocNostrUser {pubkey:event.pubkey})\n ON CREATE SET u.proceses=['initialization'], u.foo='bar'\n MERGE (e:ApocNostrEvent {event_id:event.id})\n ON CREATE SET e.kind=event.kind, e.created_at=event.created_at, e.author=event.pubkey, e.processes=['initialiation'], e.foo='bar'\n WITH u, e\n MATCH (e2:ApocNostrEvent) WHERE e2.author=e.author AND e2.kind=1 MERGE (u)-[r:AUTHOR {foo:'bar'}]-\u003e(e2)\n \",\n { batchSize:1000, parallel:true}\n)\n;\n```\n\nSome of the things like the edges I’m adding now just to see if I have the syntax right.\n\nI’ll probably replace strfry export with strfry scan so I can use filters",
"sig": "9c8f72e8292f117007518a6fce69e9301e55a395f0697fe76d8131b282b6aeef2d449f6f21b747d4effb273d2f13897b78d9dca1c2f677871f1cb6b28362e2de"
}