If I understand your question correctly it is quite easy.
Here is an example on how to do it (without PREFIXES). Here I presume that you have the wine URI.
select distinct ?p where {
vin:MountadamChardonnay ?p ?a .
}
Here you return all properties that your wine has.
If you do not have the wine URI, you can add a check for label or name of the wine before fetching rest of the properties. Below is an example. (If there is another name property just change it with rdfs:label, rdf:id etc). This example is more relevant if you had any other idetifier inside each wine resource.
select distinct ?p where {
?wine rdfs:label <wine name> .
?wine ?p ?a .
}