Query child posts on parents single.php?

You could do (untested):

if( get_post_type($post->post_parent) == 'apples' ){

get_template_part('single-apple-child')

} else {

/* the rest of your current single page */

}

Though there may be a better way!