Nest wildcard exception

I have a wildcard query like:

.Query(q => q
    .Bool(b => b
       .Should(s => s.Wildcard(w=>w
                     .Field(f=>f.Title)
                     .Value("boo*")
                     .Rewrite(MultiTermQueryRewrite.TopTermsBoost(10))

When I run this query I get this exception:

Self referencing loop detected with type 'Nest.QueryContainerDescriptor

Can you post an entire example query the replicates this issue?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.