I want to work with GetResult directly rather than converting it in model classes due to the dynamic nature of the data. I have written the repository in spring data couchbase (latest version) in this fashion. Can you let me know if I am in right direction ?
import com.couchbase.client.java.kv.GetResult;
import org.springframework.data.couchbase.repository.ReactiveCouchbaseRepository;public interface GetRepository extends ReactiveCouchbaseRepository<GetResult, String> {
}