Hi my question is how can I add a condition
right now i am using
Backendless.Persistence.of(snacks.class).findFirst(new AsyncCallback<snacks>() {
@Override
public void handleResponse(snacks snacks) {
String URL = snacks.getImage();
final String descript = snacks.getDescription();
final String ttle = snacks.getName();
title.setText(ttle);
description.setText(descript);
the above code for like getting the data now i want to add some condition for example want to get the row where the email id matches with the current user email id