Search found 7907 matches

by aimeos
29 Apr 2024, 09:18
Forum: Laravel package
Topic: CMS pages
Replies: 8
Views: 6577

Re: CMS pages

Hello, I think we still have some problems with these cms pages. 1. when adding a option/value pair (advanced), we can't delete it anymore. 2. when adding a CategoryList component, category list is empty Indeed, the described problems existed and have been fixed now. Please run "composer up&qu...
by aimeos
28 Apr 2024, 15:59
Forum: Help
Topic: datasets
Replies: 3
Views: 584

Re: datasets

What did you try in the config and what do you want to achieve?
by aimeos
27 Apr 2024, 09:59
Forum: Laravel package
Topic: GraphQL: Products "Bought together", "Suggestion" not loading
Replies: 5
Views: 972

Re: GraphQL: Products "Bought together", "Suggestion" not loading

Thanks for the hint! The problem has been fixed in aimeos/ai-admin-jqadm:2024.04.x-dev and will be part of the next release. You can test yourself in the meantime by executing:

Code: Select all

composer req aimeos/ai-admin-jqadm:2024.04.x-dev
by aimeos
26 Apr 2024, 23:44
Forum: Laravel package
Topic: A non-recoverable error occured
Replies: 3
Views: 907

Re: A non-recoverable error occured

Can you provide a fix for the migration script?
by aimeos
26 Apr 2024, 12:12
Forum: Laravel package
Topic: GraphQL: Cannot query field "id" on type "searchProducttypeOutput"
Replies: 3
Views: 1006

Re: GraphQL: Cannot query field "id" on type "searchProducttypeOutput"

Thanks for the hint, the docs has been adapted accordingly!
by aimeos
26 Apr 2024, 12:09
Forum: Help
Topic: Create product with relationship not work correctly (via jsonadm)
Replies: 1
Views: 687

Re: Create product with relationship not work correctly (via jsonadm)

In APIs following the JSON API standard, you can't assign other records in the relationship section. Instead, they are own resources where you have to do separate POST requests to the */lists resource, e.g. product/lists for assigning categories, prices, texts, etc. Please note, that the JsonAdm API...
by aimeos
26 Apr 2024, 11:20
Forum: Laravel package
Topic: GraphQL: Cannot query field "id" on type "searchProducttypeOutput"
Replies: 3
Views: 1006

Re: GraphQL: Cannot query field "id" on type "searchProducttypeOutput"

Sorry, the documentation wasn't up to date and the correct query in 2024.x+ is: query { searchProductTypes(filter: "{\"==\": {\"product.type.domain\":\"product\"}}") { items { id code label } total } } The "total" property is optional and you should ...