Created
July 26, 2022 20:20
-
-
Save clemp/b4f011994d149da5425c51e378bbe452 to your computer and use it in GitHub Desktop.
Chainverse Portal Cypher Search Queries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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