capactio / capact

Simple way to manage applications and infrastructure.
https://capact.io
Apache License 2.0
80 stars 19 forks source link

Fix fetching context from neo4j db #681

Closed mszostok closed 2 years ago

mszostok commented 2 years ago

Description

Changes proposed in this pull request:

Context is save in db with:

apoc.convert.fromJsonMap(this.context)

so we always need to fetch it as:

context: apoc.convert.fromJsonMap(specBackend.context)

but in a few places we forgot about this mapping.

This will be done in https://github.com/capactio/capact/pull/657