We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am not sure where's the problem, is it datastore or this library?
public List<Campaign3> getLiveCampaignsForAccount(Long accountId) { EntityQueryRequest request = datastoreAdapter.getEm().createEntityQueryRequest("SELECT * FROM " + ENTITY_NAME + " WHERE accountId=@1 and live = @2"); request.addPositionalBinding(accountId); request.addPositionalBinding(true); QueryResponse<Campaign3> response = datastoreAdapter.getEm().executeEntityQueryRequest(Campaign3.class, request); return response.getResults(); }
The text was updated successfully, but these errors were encountered:
Have you tried the query from GCP console? What was the result?
Sorry, something went wrong.
No branches or pull requests
I am not sure where's the problem, is it datastore or this library?
The text was updated successfully, but these errors were encountered: