Skip to content
Discussion options

You must be logged in to vote

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'

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@r-q82
Comment options

Answer selected by r-q82
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants