in q rest query is there a way to return the text ...
# suitetalkapi
t
in q rest query is there a way to return the text from a select field in addition to the value
m
Use the
BUILTIN.DF()
function.
Copy code
{
  "q": "select id, subsidiary, BUILTIN.DF(subsidiary) as subsidiary_name from employee where id = 6441152"
}
t
thank you! will give it a try