ยฉ 2026 Hedgehog Software, LLC
export const listDeployments = db .select() .from(deployments) .where(eq(deployments.organizationId, sql.placeholder("orgId"))) .prepare("listDeployments");
const response = await listDeployments.execute({ orgId: input });
orgId