I am posting my code below …
$originals = query_posts( array(
‘fields’ => ‘ids’,
‘post_type’ => ‘original’,
‘mediacategory’ => ‘fine-arts’
) );
$artists = new WP_Query( array(
‘connected_type’ => ‘artist_to_original’,
‘connected_items’ => $originals
) );
If an artist has created multiple originals in the category, they are showing up multiple times in my results.