-
Notifications
You must be signed in to change notification settings - Fork 58
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
No record found for id '${id}' #184
Comments
Do you have more information about your setup? This simple case is being tested and should be working. If you have a look at the migration guide you can see that the |
Running into the same issue. Fails in the same spot. I'm not sure how to clean up the query in a hook. There is no query that I'm sending with this call. In my case: |
I'm having the same issue as well. In my case, it only happens if |
Yep, that was it. Fixed in v5.0.3 |
Run code like
service('abc').patch(1, values)
fails with the error above. It looks like in line 263 the testitems.length === 1
returns false becauseitems
has adata
field that has alength
.In release 4.0.0 there was an
const items = page.data;
statement a few lines above, but it's gone starting with 5.0.0 and both 5.0.0 and 5.0.1 exhibit this issue.The text was updated successfully, but these errors were encountered: