How can I query for all values of a custom taxonomies?

Use get_terms($taxonomy, $args)

$terms = get_terms('Fruits'); 

Codex page