added script to query db for tasks on the most recent process instance w/ burnettk

This commit is contained in:
jasquat 2023-05-02 15:31:25 -04:00
parent e525e50e29
commit 896da01701
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
#!/usr/bin/env bash
function error_handler() {
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
exit "$2"
}
trap 'error_handler ${LINENO} $?' ERR
set -o errtrace -o errexit -o nounset -o pipefail
mysql -uroot spiffworkflow_backend_local_development -e '
select * from process_instance;
select t.guid as task_guid, t.state as task_state, td.bpmn_identifier as task_id from task t
join task_definition td on td.id = t.task_definition_id
where process_instance_id=(select max(id) from process_instance) and td.bpmn_identifier = "top_level_subprocess";
select bp.guid as bp_guid, bpd.bpmn_identifier as bp_identifier from bpmn_process bp
join bpmn_process_definition bpd on bpd.id = bp.bpmn_process_definition_id
join bpmn_process bpb on bpb.id = bp.direct_parent_process_id
join process_instance pi on bpb.id = pi.bpmn_process_id
where bpd.bpmn_identifier = "top_level_subprocess" and pi.id = (select max(id) from process_instance);
'
# mysql -uroot spiffworkflow_backend_local_development -e '\
# select * from task where guid="c40c3b06-4f49-4fa2-83e2-ba13776402a7"; \
# select * from bpmn_process; \
# '