Elastic Term vector API (https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-termvectors.html) seems to be focused on getting the term-vector on a per-document basis, the classic user story being "Get me a term vector by Document Id". What if i want to always get term vectors? E.g. i search for documents matching a certain query, and all the documents should be returned with the corresponding term vectors for a certain field.
Is it a possibility or is getting the term-vector right after the index time and storing it somewhere the only workaround?