straycat on Nostr: These are the commands I used to set up indices and constraints - I had thought it ...
These are the commands I used to set up indices and constraints - I had thought it would be redundant to set up a constraint when it’s already indexed, but I saw some nodes get unexpectedly duplicated which is why I added the constraints
CREATE INDEX event_id IF NOT EXISTS FOR (a:ApocNostrEvent) ON (a.id)
CREATE INDEX pubkey IF NOT EXISTS FOR (a:ApocNostrUser) ON (a.id)
CREATE CONSTRAINT constraint_event_id FOR (event:ApocNostrEvent) REQUIRE event.event_id IS UNIQUE
CREATE CONSTRAINT constraint_pubkey FOR (user:ApocNostrUser) REQUIRE user.pubkey IS UNIQUE
Published at
2025-02-09 17:18:44Event JSON
{
"id": "1c1e0c377cd9a50e78d9235cac94c50b8940ed3b15b6803f14b219aed5b09e5b",
"pubkey": "e5272de914bd301755c439b88e6959a43c9d2664831f093c51e9c799a16a102f",
"created_at": 1739121524,
"kind": 1,
"tags": [
[
"e",
"8fbb005b53bfc459ccf009385eaa62789b536a5498d919544f34bf78444cc1e9",
"",
"root"
],
[
"e",
"040671d0c197209e375db1436410bf1ec0c6e09940cd9402cda982ef5b4aa984",
"",
"reply"
],
[
"p",
"7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"
]
],
"content": "These are the commands I used to set up indices and constraints - I had thought it would be redundant to set up a constraint when it’s already indexed, but I saw some nodes get unexpectedly duplicated which is why I added the constraints \n\nCREATE INDEX event_id IF NOT EXISTS FOR (a:ApocNostrEvent) ON (a.id)\nCREATE INDEX pubkey IF NOT EXISTS FOR (a:ApocNostrUser) ON (a.id)\n\nCREATE CONSTRAINT constraint_event_id FOR (event:ApocNostrEvent) REQUIRE event.event_id IS UNIQUE\nCREATE CONSTRAINT constraint_pubkey FOR (user:ApocNostrUser) REQUIRE user.pubkey IS UNIQUE",
"sig": "56d2b7e74b6e3f2aa07522b2d42ee3da85a4e1ec81d38bd3c76df2912d81807086a5aef7785d433df30ac417b4555fe3c92ebdedb246b4a242e6c5ec3d18849c"
}