I am presently using HAPI FHIR server for implementation.
Presently I have HAPI code for below AND Query which is working fine.
http://127.0.0.1:8080/hapi-fhir-jpaserver/fhir/Organization?name=SIMPLY&address=SIMPLY
Bundle bundle = client.search().forResource(Organization.class).where(Organization.ADDRESS.contains().value("SIMPLY")).where(Organization.NAME.contains().value("SIMPLY")).returnBundle(Bundle.class).execute();
Can anyone help me with the
http://127.0.0.1:8080/hapi-fhir-jpaserver/fhir/Organization?name=SIMPLY,address=SIMPLY