Skip to content

Commit

Permalink
remove page ids (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko authored Oct 14, 2024
1 parent 4e477fb commit 99cec8d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion definitions/output/all/reprocess_pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,12 @@ SELECT
SAFE.PARSE_JSON(lighthouse, wide_number_mode => 'round') AS lighthouse,
features,
technologies,
SAFE.PARSE_JSON(metadata, wide_number_mode => 'round') AS metadata
JSON_REMOVE(
SAFE.PARSE_JSON(metadata, wide_number_mode => 'round'),
'$.page_id',
'$.parent_page_id',
'$.root_page_id'
) AS metadata
FROM \`all.pages\`
WHERE
date = "${iteration.month}" AND
Expand Down

0 comments on commit 99cec8d

Please sign in to comment.