That’s correct. The Modeler has its own api to retrieve the models, the RepositoryService model query is doing queries against the ACT_RE_MODEL table, which is a different one. The Flowable Modeler also has a REST API you could use to get the model info and JSON.
Hi @joram
I used modelRepository.findByKeyAndType( processDefinitionKey, AbstractModel.MODEL_TYPE_BPMN )
to get models currently present in ACT_DE_MODEL, but this returns empty list if I make changes to already present model in modeler.
How can one implement the fetching and updating of Flowable model XML using Spring Boot and the Flowable engine when ModelRepository access is not available?