You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to build a custom Query, but the Query.Kind prevent me from doing this.
The reason I want to build a custom query is we have custom Plugins to support the query.
But it looks the new Java client have less support for this.
I just wondering why we use enum here to build Query.Kind, which is really less extensible.
public class CustomWildcardQuery extends QueryBase implements QueryVariant
{
@Override
public Query.Kind _queryKind()
{
return Query.Kind...
}
}
The text was updated successfully, but these errors were encountered:
I tried to build a custom Query, but the Query.Kind prevent me from doing this.
The reason I want to build a custom query is we have custom Plugins to support the query.
But it looks the new Java client have less support for this.
I just wondering why we use enum here to build Query.Kind, which is really less extensible.
The text was updated successfully, but these errors were encountered: