async function getArtworks(Artist) {
const artistQuery = await db.sql`SELECT
artworks.*,
artists.DisplayName as artist
FROM artworks
JOIN lookup on artworks.ObjectID = lookup.ObjectID
JOIN artists on lookup.ConstituentID = artists.ConstituentID
WHERE artists.DisplayName = ${Artist}
ORDER BY DateAcquired ASC`;
return artistQuery;
}