Skip to content

Commit

Permalink
fix(daemon)find doc titles that werent last change
Browse files Browse the repository at this point in the history
  • Loading branch information
juligasa committed Feb 26, 2024
1 parent b7d52f4 commit 751d23b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/daemon/api/entities/v1alpha/entities.go
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ var qGetEntityTitles = dqb.Str(`
JOIN (
SELECT resource, MAX(ts) AS max_ts
FROM structural_blobs
WHERE type='Change'
WHERE type='Change' AND meta IS NOT NULL
GROUP BY resource
) AS latest_blobs ON sb.resource = latest_blobs.resource AND sb.ts = latest_blobs.max_ts;
`)

0 comments on commit 751d23b

Please sign in to comment.