Steven Nguyen

Results 1190 comments of Steven Nguyen
trafficstars

I don't think we are clearing the old execution schedule when a new schedule is created. https://github.com/appwrite/appwrite/blob/c5dde7c2f56f56544e8e0a512622ae25860e7b7a/app/workers/functions.php#L124-L147 It seems like `execution` is `null` when on schedule updates. https://github.com/appwrite/appwrite/blob/c5dde7c2f56f56544e8e0a512622ae25860e7b7a/app/workers/functions.php#L100

@Maxbrt18, this has been [released](https://github.com/appwrite/appwrite/releases/tag/1.0.1)!

It seems like the problem is in the [Queries Validator](https://github.com/utopia-php/database/blob/ecc143f2cfe16b23675407035c6b5375ba263285/src/Database/Validator/Queries.php#L171) where it checks the queries against the index. ```php protected function arrayMatch($indexes, $queries): bool { // Check the count of...

Related PR https://github.com/utopia-php/database/pull/151

There is a search parameter in the list users api call: https://appwrite.io/docs/server/users#usersList would that work for you?

Considering [this](https://github.com/appwrite/sdk-for-node/blob/master/lib/services/users.js#L21) is the function signature, possibly: ```javascript const users = new sdk.Users(appwrite); users.list('[email protected]'); ```

Were you able to try the search?

You should definitely only be passing the search term rather than `Query.equal('email', '[email protected]')`. However, I do see that pass `"[email protected]"` causes a 500 error. This sounds related to https://github.com/appwrite/appwrite/issues/2394 since...

Related PR: https://github.com/utopia-php/database/pull/113. After this PR is merged, I would assume this would work: ```javascript const users = new sdk.Users(appwrite); console.log(await users.list('[email protected]'); ``` FYI, searching for `[email protected]` might be returning...

As of 0.15.2, searching on an email may return multiple results (especially if there are multiple domain matches). To get more of an exact match, you can wrap your search...