Export user "name" vs "id" in Created By and Modified By column

LabKey Support Forum (Inactive)
Export user "name" vs "id" in Created By and Modified By column Steve  2024-04-22 12:59
Status: Active
 

Hi Beatrix:

If you specify the columns to return, you can get the DisplayName as follows:

my_results = api.query.select_rows(
    schema_name='issues',
    query_name='Issues',
    columns='IssueId, CreatedBy/DisplayName'
)