Jopie01
Jopie01
> I know there is also https://openkvk.nl/ but don't know how well supported it is at the moment. Didn't know that site, I was more thinking about using https://www.kvk.nl/zoeken/handelsregister/ which...
Ok, after a bit more digging it seems something goes wrong with OCP. The line https://github.com/CadQuery/cadquery/blob/d7801273704134fdb172e3c6ac22d34d326e2800/cadquery/occ_impl/shapes.py#L1335 returns `None` so no data is returned. I downgraded `cadquery-ocp` to version `7.7.0` with...
I want to add some more context to understand the issue a bit better. I'm using my own CRUD functions inside the store to request data from the backend. I...
Ok, I was thinking that I messed up my installation, but as it turned out, the issue existed a bit longer than I expected. I'm not going into the messy...
I was able to narrow it down to the `resetOnRemoteUpdate` key in the field options. Because when not set (default is `true`), I got a deprecation warning linked to https://deprecations.emberjs.com/ember-data/v5.x#toc_ember-data-deprecate-relationship-remote-update-clearing-local-state...
Ok, the cache does everything with the complete `identifier`. But in the example of the `instantiateRecord` hook from the `store` package the `identifier` is basically thrown away. Only the `type`...
The question is if it is right to use `setAttr` for relationships? It works, my record got updated but the 'existing` in the `changedAttr` array is `null` even if there...
> The question is if it is right to use setAttr for relationships? No it isn't. I used the `clientDidCreate` in the `json-api-cache` package and in particular the switch statement...
> you'll want to send an operation to the cache to update the graph That's what I'm doing now indeed. Using `replaceRelatedRecords` or `addToRelatedRecords` as op will notify the cache....
Thanks for the hard work! Will look into it soon.