Hendy Irawan
Hendy Irawan
Some code is available in http://www.j-ogg.de/ but I'm not sure how to use it.
If accepted, I volunteer for this.
If accepted, I volunteer for this.
This has been requested before: http://stackoverflow.com/questions/30286795/how-to-force-spring-hateoas-resources-to-render-an-empty-embedded-array#comment69331410_30297552 For example, if the array is not rendered, REST clients will break. Handling this edge case by default will require additional coding in all...
Webiny by default uses Pulumi local backend. I have tried following the guide in https://www.pulumi.com/docs/intro/concepts/state/#migrating-between-backends with a bit of modification (https://about.lovia.life/docs/engineering/webiny/). However, webiny still insists on using local Pulumi backend:...
Continuing original request at https://github.com/webiny/webiny-js/issues/1676#issuecomment-852346595 : > I'd like to request documentation on how to configure custom Elasticsearch to replace AWS's. So the developer has choice. > > For example,...
Client and server in different machines _Client:_ - Neo4j lib 1.7.2 - Neo4j rest graphdb 1.7 - java version "1.6.0_24" OpenJDK Runtime Environment (IcedTea6 1.11.1) (6b24-1.11.1-4ubuntu3) OpenJDK Client VM (build...
Trying to use batchRestApi.deleteEntity() to delete a node with relationships causes this error: ``` Exception in thread "main" java.lang.RuntimeException: Error recreating Product nodes at id.co.bippo.mall.admin.RecreateProductNodesFromMagento.run(RecreateProductNodesFromMagento.java:199) at id.co.bippo.mall.admin.RecreateProductNodesFromMagento.main(RecreateProductNodesFromMagento.java:207) Caused by: java.lang.RuntimeException:...
java.lang.UnsupportedOperationException: null when creating `RestGraphDatabase` index via Blueprints
REST Graph Database (v1.6), server powered by Neo4j v1.6.2 is unable to create index via Blueprints with the following error: ``` 01:43:11.983 [main] INFO com.hendyirawan.likebox.dao.LikeDao - Connecting to Neo4j REST...
``` final RestAPI restApi = graphDb.getRestAPI(); log.info("Deleting existing Person nodes..."); RestIndex personIndex = graphDb.index().forNodes("berbatikPerson"); RestCypherQueryEngine cypher = new RestCypherQueryEngine(restApi); for (List rows : Iterables.partition(cypher.query("START n=node:berbatikPerson('*:*') RETURN n", new HashMap()), 100))...