-
Hi, Is there any possibility of using cs_tools to identify all answers and Liveboards that depend on a specific Worksheet? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
boonhapus
Aug 29, 2023
Replies: 1 comment 1 reply
-
You can run Searchable gather to find all of the information across the platform. If you use a SQLite syncer, then you're able to write a query to get this information. SELECT
d.*
FROM
ts_metadata_object AS o
JOIN
ts_metadata_column AS c ON c.object_guid = o.object_guid
JOIN
ts_metadata_dependent as d ON d.column_id = c.column_id
WHERE
o.metadata_subtype = 'WORKSHEET'
-- change to the parent worksheet!
AND o.name = 'my worksheet name'
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
r-q82
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can run Searchable gather to find all of the information across the platform. If you use a SQLite syncer, then you're able to write a query to get this information.