Skip to content

Instantly share code, notes, and snippets.

@clemp
Created July 26, 2022 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clemp/b4f011994d149da5425c51e378bbe452 to your computer and use it in GitHub Desktop.
Save clemp/b4f011994d149da5425c51e378bbe452 to your computer and use it in GitHub Desktop.
Chainverse Portal Cypher Search Queries
CREATE FULLTEXT INDEX chainversePortalSearchIndex
FOR (n:Note | Partnership | Entity | Proposal)
ON EACH [n.text, n.name, n.body]
# need to modify below query
CALL db.index.fulltext.queryNodes("chainversePortalSearchIndex", $neodash_query) YIELD node
unwind(node) as signal
match (c:Contributor)-[r]-(signal:Signal)-[r1]-(t:Thread)
match (ch:Channel)-[r2]-(t)
return c,r,signal,r1,t,ch,r2
limit 75
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment