CREATE VIEW test_cycle_inner AS
SELECT
uniform_resource_id,
json_extract(frontmatter, '$.test_cycleId') AS test_cycle_id,
json_extract(frontmatter, '$.title') AS title,
json_extract(frontmatter, '$.description') AS description,
json_extract(frontmatter, '$.created_by') AS created_by,
json_extract(frontmatter, '$.created_at') AS created_at,
json_extract(frontmatter, '$.last_updated_at') AS last_updated_at,
json_extract(frontmatter, '$.status') AS status,
json_extract(frontmatter, '$.version') AS version,
json_extract(frontmatter, '$.tags') AS tags,
content
FROM uniform_resource
WHERE
uri LIKE '%.cycle.md%'