diff --git a/templates/components/memgraph.jsonnet b/templates/components/memgraph.jsonnet index 5ec0a76..609da3a 100644 --- a/templates/components/memgraph.jsonnet +++ b/templates/components/memgraph.jsonnet @@ -16,7 +16,7 @@ memgraph + { engine.container("store-triples") .with_image(images.trustgraph) .with_command([ - "triples-write-neo4j", + "triples-write-memgraph", "-p", url.pulsar, "-g", @@ -50,7 +50,7 @@ memgraph + { engine.container("query-triples") .with_image(images.trustgraph) .with_command([ - "triples-query-neo4j", + "triples-query-memgraph", "-p", url.pulsar, "-g", diff --git a/templates/stores/memgraph.jsonnet b/templates/stores/memgraph.jsonnet index 8f8b621..75faf5f 100644 --- a/templates/stores/memgraph.jsonnet +++ b/templates/stores/memgraph.jsonnet @@ -10,6 +10,9 @@ local images = import "values/images.jsonnet"; local container = engine.container("memgraph") .with_image(images.memgraph_mage) + .with_environment({ + MEMGRAPH: "--storage-properties-on-edges=true --storage-enable-edges-metadata=true" + }) .with_limits("1.0", "1000M") .with_reservations("0.5", "1000M") .with_port(7474, 7474, "api")