-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
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
Boolean Query in Where-Clause? #1364
Comments
Hi @Meistercoach83, I'm sorry to hear you're having trouble! I've not been able to trigger the error using the code you shared. If you've shared a subset of the query, could you share the full query call? What version of PHP are you using? If you have a full stacktrace for the exception, could you please share that as well? |
Hi, sorry for the late response - I´m in a reha for 3 weeks. I´m running my script in the AppEngine. How can I create a full stacktrace? There´s just this short error message displayed and it´s my full query call... |
Hi @Meistercoach83. I've tried running an equivalent query in AppEngine, and still cannot replicate this. I've also tried all the PHP versions we support without success. Given the code you provided, I don't see how the error you report can arise from that A stacktrace will help you in verifying the source of the problem. Does the error replicate for you locally (i.e. not in the appengine environment)? If it does, you should be able to obtain a stacktrace there more easily. |
Hi! it´s just this function: public function getCurrentApplication()
{
$query = $this->applicationCollection->where('isCurrentApplication', '=', true);
$snapshot = $query->documents();
|
Hi @Meistercoach83. It looks like the older version of In case you're not aware, we also provide a package which contains only the Firestore client. It can be installed by requiring Sorry for the trouble, and apologies that I didn't find the source of the problem sooner. The full error you shared helped quite a bit. :) |
@Meistercoach83 I think this was resolved. If you happen to still be having issues, please feel free to re-open this thread. |
Hi! I´d like to query my firestore db with this statement:
$query = $this->applicationCollection->where('isCurrentApplication', '=', true);
But when I´m trying to do that, I get the following error:
Is that a bug?
The text was updated successfully, but these errors were encountered: