(improvement)(Headless) Change queryMode TAG_MODE to DETAIL_MODE (#1050)

This commit is contained in:
LXW
2024-05-30 10:49:09 +08:00
committed by GitHub
parent 6aaf471582
commit 40b3142730
18 changed files with 52 additions and 75 deletions

View File

@@ -11,13 +11,13 @@ public enum QueryType {
/**
* queries with tag-based entity targeting
*/
TAG,
DETAIL,
/**
* queries with ID-based entity selection
*/
ID;
public boolean isNativeAggQuery() {
return TAG.equals(this);
return DETAIL.equals(this);
}
}