jonshipman
jonshipman
You would need to separate the menu out into its own component like so:  I added parents, hasChildren, and children (list_of Integer) to the theme headermenutype (renamed nestedmenu in...
``` query ThisIsBroken { contentNodes(first: 100) { edges { cursor node { __typename ... on SimpleProduct { id name sku width weight uri } } } } } ``` Same...
@kidunot89 That was an example that was showing that something was working. I get an error using contentTypes:[PRODUCT] ``` Field "contentNodes" argument "where" requires type ContentTypeEnum, found PRODUCT. ``` There...
Sorry, switched off that project waiting for the client. Just checked, with where: {contentTypes:[PRODUCT]} it does return the products now - however my original query still ignores the Products. WORKS:...
Typically, you have to implement these yourself as the code itself is javascript that passes a token to WooCommerce.
Looking through BizHawk source, it should be theoretically possible as well. First I'm reading about MAUI though, that sounds like a more plausible refactor path, as UWP would require a...
Another point, a failed authorization shouldn't break public data. E.g. only the queries that require authorizations should fail.
Of note: there's also the filter graphql_jwt_auth_secret_key. I propose the plugin, by default, should use a filter that returns the constant SECURE_AUTH_KEY. Would be as secure as the WordPress install...
Any progress on this? Since the last comment create-lwc-app has been deprecated and that includes the lwc-webpack-plugin. Trying to build with lwc-webpack-plugin fails due to not being compatible with lwc...
Still testing, but might be related to this change in loader-utils: https://github.com/webpack/loader-utils/blob/a282654ddfa0a8c9c770db1adfa064e671bcf471/CHANGELOG.md#300-2021-10-20 See: https://github.com/muenzpraeger/create-lwc-app/blob/main/packages/lwc-webpack-plugin/src/loader.ts#L8-L9 Running my own tests and will report back. _**Aside**_: the way LWC works I haven't been...