se.eval(p.getValue1(), bindings, language);
// re-assign graph bindings back to global bindings. prevent assignment of non-graph
// implementations just in case someone tries to overwrite them in the init
bindings.entrySet().stream()
.filter(kv -> kv.getValue() instanceof Graph)
.forEach(kv -> this.globalBindings.put(kv.getKey(), kv.getValue()));
logger.info("Initialized {} ScriptEngine with {}", language, p.getValue0());
} catch (ScriptException sx) {