Skip to content

Commit

Permalink
fix: select events where artifact was added as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabolol committed Nov 27, 2024
1 parent d1e61a3 commit 9572f4e
Showing 1 changed file with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{% set event_source_name = '"DEPS_DEV"' %}

with snapshots as (
with artifacts as (
select artifact_name
from {{ ref('int_all_artifacts') }}
where artifact_source = "NPM"
),

snapshots as (
select
`SnapshotAt` as `time`,
`System` as from_artifact_type,
Expand All @@ -14,13 +20,9 @@ with snapshots as (
order by `SnapshotAt`
) as previous_to_artifact_name
from {{ ref('stg_deps_dev__dependencies') }}
where `MinimumDepth` = 1
),

artifacts as (
select artifact_name
from {{ ref('int_all_artifacts') }}
where artifact_source = "NPM"
where
`MinimumDepth` = 1
and `Dependency`.`Name` in (select artifact_name from artifacts)
),

intermediate as (
Expand Down Expand Up @@ -54,7 +56,6 @@ intermediate as (
from_artifact_type,
1.0 as amount
from snapshots
where from_artifact_name in (select artifact_name from artifacts)
),

artifact_ids as (
Expand Down

0 comments on commit 9572f4e

Please sign in to comment.