Andi Pätzold

Results 19 comments of Andi Pätzold

@marcolink I am not sure about this. Do we ever set the `params.config` anywhere and use that? The `params` passed into `makeRequest` are always sth like `spaceId`, `environmentId` but not...

Hey, unfortunately this is not possible. We used to have a search for categories as well, but that API was disabled by commercetools. There is currently no replacement for that...

Hey @jaymakes11, Shopify introduced a change in its API: https://shopify.dev/api/release-notes/2022-04#non-encoded-object-ids-in-the-graphql-storefront-api From version 2022-04, their api changed the format of the returned ids. The Shopify Contentful App uses version 2019-10 and...

Alternatively, you can base64 decode the id stored in Contentful. That way you receive the `gid`-URI. `Z2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY1MzcxMjM1Mjg3NTY=` -> `gid://shopify/Product/6537123528756`

I received the same error message while writing my test suite. When initializing the test environment you set the hub port to 4000. This is the UI port. You have...

Lerna doesn't handle dependency management anymore, so we must migrate to npm workspaces. Workspaces were introduced with npm 7. Node 14 only comes with npm 6. Therefore, we have to...

Hey @park-brian, thanks for the positive feedback. great idea! Parcel made some problems in the past anyway, so using jsdelivr sounds like a good way to work around that. Feel...

👋 For the first error: Looks like the node version of `mdb-reader` is used instead of the browser version. With "Web Dev Server" are you referring to this: https://modern-web.dev/docs/dev-server/overview/? Could...

👋 `nodeResolve: true` somewhat means that things should be imported as if we were in node, right? So the `mdb-reader` seems to be configured correctly here as the node version...

If you have an example of a package with node & browser version that works with your, please send it my way. Happy to take a look at their configuration...