Created
April 16, 2019 14:54
-
-
Save jamescoxhead/eafc20ca2449125ec7045248f74a6d10 to your computer and use it in GitHub Desktop.
Lists Umbraco content and media nodes and their corresponding document type alias
This file contains 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
SELECT C.nodeId, CT.alias, N.text FROM cmsContent C | |
INNER JOIN cmsContentType CT ON C.contentType = CT.nodeId | |
INNER JOIN umbracoNode N ON C.nodeId = N.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment