Select projects that have 2 terraformartifacts

PHOTO EMBED

Fri Jun 07 2024 13:57:08 GMT+0000 (Coordinated Universal Time)

Saved by @lokan32 #postgres #postgresql #json

select 
json_event->'project',
json_event->'pipeline_params'->'artifacts_iac' as iac
from cicd_event
where event_type = 'ci_start'
and jsonb_array_length(jsonb_path_query_array(
	json_event->'pipeline_params'->'artifacts_iac',
	'$[*] ? (@.classifier == "terraform")'
)) >=2
content_copyCOPY