io.sphere.sdk.jsonnodes.queries.JsonNodeQueryModel Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.jsonnodes.queries;
import com.fasterxml.jackson.databind.JsonNode;
import io.sphere.sdk.queries.QueryPredicate;
import io.sphere.sdk.queries.ResourceQueryModel;
public interface JsonNodeQueryModel extends ResourceQueryModel {
static JsonNodeQueryModel of() {
return new JsonNodeQueryModelImpl();
}
QueryPredicate predicate(String predicateAsString);
}