Member Name in SQL
# help-with-other
j
How to get member name from SQL Database? I need to get member name in a stored procedure.
j
Members are nodes in the umbracoNode table with a specific type, technically to just get all names of members you can run
Copy code
sql
SELECT [text]
  FROM [umbracoNode]
  WHERE nodeObjectType = '39EB0F98-B348-42A1-8662-E7EB18487560'
j
Thanks. This works!
s
If you ever need others, you can find all off the node object type guids in Umbraco.Cms.Core.ObjectTypes.Strings
a
This should be in docs somewhere 😄
s
neih, just become a core team dev, you will learn these things 😅
Any suggestion on the place where you would search for this, and what wording?
a
Ok, maybe im just too tired, but why can I find the ObjectTypes library ?
Object Types references
Or atleast in that area ?
Or it overlaps a bit with the Models reference I guess
7 Views