here's what I came up with:
index = VectorStoreIndex.from_vector_store(vector_store=vector_store, service_context=service_context, storage_context=storage_context)
filters = MetadataFilters(filters=[ExactMatchFilter(key="name", value="Council Liquor License Review Committee")])
retriever = index.as_retriever(filters=filters, similarity_top_k=1000)
all_nodes = retriever.retrieve("Council Liquor License Review Committee")
nodes = [node.node for node in all_nodes]
summary_index = ListIndex(nodes=nodes, service_context=service_context)
response = summary_index.as_query_engine().query("Please summarize all concise details, what licenes were approved or denied, and include dates if possible")
print(response)