I'm trying to request documents that have "facet.venue_type" as
"Private Collection"
Instead I'm also getting items where another field is marked
"Permanent Collection"
My schema has:
<fields>
<field name="venue_type" type="text" indexed="true" stored="true"
required="false" />
<field name="facet.venue_type" type="string" indexed="true"
stored="true" required="false" />
</fields>
<copyField source="venue_type" dest="facet.venue_type" />
My query is
q=*:*
qt=standard
facet=true
facet.missing=true
facet.field=facet.venue_type
fq=venue_type:Private+Collection
Can anyone offer a suggestion as to what I'm doing wrong ?