This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This query returns all projects, and under which "root" project they lie. | |
You can adapt the "project link" so that you have an URL that points to the project. | |
You can combine this query with for example workbooks to find out under which root project the workbook is located. | |
*/ | |
WITH RECURSIVE recur_folder_structure AS | |
( | |
SELECT s.id AS "project site id", | |
s.name AS "project site name", |