templateselasticsearchnestelasticsearch-netelasticsearch-template

Calling Elasticsearch Template Query using NEST?


Is there a way to call Template Query using NEST? Is there any examples?


Solution

  • The search template endpoint isn't mapped in NEST yet, and poses a bit of a challenge since it's very different to how queries are normally constructed. We're actually working on this now (in this branch) and are hoping to get this functionality in the upcoming 1.1 release. Here's a link to the original issue for tracking purposes.

    EDIT: Forgot to mention, the endpoint is available on the low-level Elasticsearch.Net client, which you can access via ElasticClient:

    var client = new ElasticClient(...);
    client.Raw.SearchTemplate(...);