query Method
PropertyType analyzer에 의한 색인(index)에 query Method로 질의를 할 수 있다.
analyzer에 따라 같은 Method 질의의 결과가 달라질 수 있다.
ID | Description |
---|---|
matching | like |
notMatching | not like |
matchingShould | or 검색 should 끼리 or로 처리 |
wildcard | like |
notWildcard | not like |
wildcardShould | or 검색 should 끼리 or로 처리 |
equals | only DB
|
above | >= |
below | <= |
excess | > |
under | < |
fromto | {
"field": "created",
"method": "fromto",
"value": "20200101~20201231"
} |
hasReferenced |
|
referenceJoin | PropertyType의 참조 nodeType (referenceType)에 Join 을 할 수 있다 {
"field": "product",
"method": "referenceJoin",
"value": "saleSatatus_matching=selling&saleEndDate_above={{:today}}"
}
|
sorting | 정렬 {
"method": "sorting",
"value": "created desc"
} |
page | 페이지 번호 default : 1 |
pageSize | 페이징 기준 사이즈 default : 10
|
includeReferenced | PropertyType의 하위 노드 리스트를 pid 객체에 반환
|
referenceView | PropertyType의 참조 객체 데이터를 읽어와서 Object로 pid 객체의 item에 리턴
|
facet | value 기준 group by 된 count 를 Object로 반환
|
limit | 쿼리 결과 제한 건수 resultCount : 2 |