python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to query couchbase with multiple values using spring-data-couchbase
Hi I have an endpoint like /findBy and it can take several query params similar like ;
findBy?color="blue"&size="big"&city="ny"&country="usa"
How c...
erondem
Votes: 0
Answers: 1
How to write a join query which accepts placeholders (query params) using couchbasetemplate from Spring Data Couchbase 4.X version
I need to get a set of data from 2 collections.
Employee
{"id":"1234",
"name":"Smith"}
Salary{
"employeeId":"1234",
"Salary":&quo...
Ajeesh
Votes: 0
Answers: 2
search on multiple fields in couchbase spring data where all fields are not passed
I need to write filtering method based on county/status/symbol.
my repository query looks like this
@Query("#{#n1ql.selectEntity} WHERE `platform`='FXSERVICE' " +
"AND `dele...
Hiccup
Votes: 0
Answers: 1
How to fetch a list from document using n1ql with spring-data-couchbase
I want to fetch actions list in user class by username with this query but its not working
@Repository
public interface IUserRepository extends CouchbaseRepository<User,Long> {
@Query("SEL...
hknyildz
Votes: 0
Answers: 1
