How to
-
Using Helm and Kubernetes to deploy Camunda...
Everything you need to know to install, configure, and run Camunda Platform 8 Helm charts.
-
Custom Queries
Why Custom Queries? The process engine offers a pretty straightforward and easy to use Java Query API. If you want to build a task list you just write something like this: @Inject private TaskService taskService; public List<Task> getAllTasks() { return taskService.createTaskQuery().taskAssignee("bernd").list(); } Easy as it is, there are basically two catches: You can only build queries that the API supports. You cannot add constraints on your domain objects. Let us give you a simple use case example, which we implemented in the custom-queries example: You have a process variable “customer” holding the customerId You have your own entity “Customer” with all the details So far, a pretty common situation (please note that the object diagram has been simplified to show...