jl-backend-rs/sql/agent/fetch_with_ids.sql

11 lines
224 B
MySQL
Raw Normal View History

SELECT
id,
2023-04-14 18:42:52 +00:00
shortcode,
full_name,
credential,
credential_type as "credential_type: _",
profile_picture_url,
time_created,
last_updated
FROM agent where id = ANY($1)
ORDER BY time_created DESC;