Query filter and transformation as Document
This commit is contained in:
parent
fe4110213d
commit
f33ccd3e91
|
@ -1,6 +1,7 @@
|
|||
package org.gcube.application.geoportal.common.model.rest;
|
||||
|
||||
import lombok.Data;
|
||||
import org.bson.Document;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -20,8 +21,8 @@ public class QueryRequest {
|
|||
private String json;
|
||||
private List<String> fields;
|
||||
}
|
||||
private String filter;
|
||||
private String transformation;
|
||||
private Document filter;
|
||||
private Document transformation;
|
||||
private OrderedRequest ordering;
|
||||
private PagedRequest paging;
|
||||
}
|
||||
|
|
Reference in New Issue