Felipe César
Felipe César
Thank you @DarshanGowda0. I need to query just once in a while for a limited number of results. I'm developing a newsfeed of posts that has a distance filter. So...
Yes. Have something like `getDocuments()` would be very helpful. I'm finishing other features, and then I'll come back to this need :)
Not yet. I'm finishing other things before being able to focus on this feature. But if you decide to start I can try to help :)
Hi, I just came back to this feature. Looks like it's impossible to convert to a Query. The best thing we can do is limit it artificially: create some kind...
This problem seems to be related to firestore query limitations, not to the library. In firestore you can use >, >=,
I was trying to fix the problem. For some reason when I add this step to set the node version to 14 the action works: ``` - name: 'Setup Node.js'...
I forked and tried to adapt the code to work server side. But got suck on a problem that I think is related to webpack. I search the project for...
@chyke007 I checked again and I think I figured out It comes from `libraryTarget: 'umd'` If I change `umd` to `amd` on `webpack.config.prod.js` the window is removed. Do you think...
To solve my user case I updated the asciiRegex to: ``` (?: |^)(${edgeCases})?(${names}|:)([${allowedAliasCharacters}]*:)?(?: |$) ``` I basically added `(?: |^)` and `(?: |$)` This forces the regex to make a...
hey @enzoferey, but this can help on many other cases. For example, instead of chrome: `safari, brave, firefox, file, base64 etc.` So it's probably safer require a whitespace or start/end...