I'm trying to use search fuzzy and with proximity in combination. I found an answer for how to do it with Lucene here, but it doesn't seem to work:
stackoverflow.com
Fuzzy and proximity search together in Azure searc...
I'm trying to seed a neo4j with data from a mongodb using apoc. The idea is to first create a kindof 1-1 mirror of the mongo db and then replace the key-based mapping with relations. I'm having troubles with ObjectId's which are extensively used as t...
Done. I can't link that issue because:
Probably should allow even newcomers to post links to github at least. But it's #1288.
I went another path so no rush for my sake
@mike.r.black I think it makes sense for anything but the most simple cases to ...
Ooh, ok, found the apoc.convert.toString
CALL apoc.mongodb.get('mongodb://host.docker.internal:5700','kostbevakningen','ingredients', {}, true) YIELD value as mongo_i
MERGE (i: Ingredient {_id: apoc.convert.toString(mongo_i._id)})
SET i += {
parent...
I noticed that the jar's permissions probably wasn't good. I figured maybe some automagic conversion wasn't flying because of missing bson.jar so I fixed that in my docker build:
COPY --from=sbt-build --chown=neo4j:neo4j /root/target/pack/lib/bson*.j...
Ok, just had bad permissions from my docker build, "ZipException" was the tell. Needed chown on add:
ADD --chown=neo4j:neo4j https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.5.0.4/apoc-3.5.0.4-all.jar /var/lib/neo4j/plugins/...