import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular'; import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords'; import { Workflow, WorkflowVersion } from '@/workflow/types/Workflow'; export const useActiveWorkflowVersion = (workflowId: string) => { const { records: workflowVersions } = useFindManyRecords< WorkflowVersion & { workflow: Omit & { versions: Array<{ __typename: string }>; }; } >({ objectNameSingular: CoreObjectNameSingular.WorkflowVersion, filter: { workflowId: { eq: workflowId, }, status: { eq: 'ACTIVE', }, }, recordGqlFields: { id: true, name: true, createdAt: true, updatedAt: true, workflowId: true, trigger: true, steps: true, status: true, workflow: { id: true, name: true, statuses: true, versions: { totalCount: true, }, }, }, }); return workflowVersions?.[0]; };