Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion services/libs/tinybird/pipes/collections_filtered.pipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ NODE collections_filtered_0
SQL >
%
SELECT
collections.*,
collections.id AS id,
collections.name AS name,
collections.slug AS slug,
collections.description AS description,
collections.categoryId AS categoryId,
collections.starred AS starred,
collections.isPrivate AS isPrivate,
collections.ssoUserId AS ssoUserId,
collections.logoUrl AS logoUrl,
collections.createdAt AS createdAt,
collections.updatedAt AS updatedAt,
collections.deletedAt AS deletedAt,
SUM(
CASE
WHEN collectionsInsightsProjects.insightsProjectId != '' AND ip.enabled = 1
Expand Down
Loading