Search found 7918 matches

by aimeos
30 Apr 2024, 06:58
Forum: Laravel package
Topic: How to boost terms in product search
Replies: 6
Views: 10104

Re: How to boost terms in product search

Should this already work in aimeos 2023.10? It is in the 2024 documentation, but the setting (in product > basic) is already available in 2023 Yes, it also works with 2023.10 We are using catalog/lists/sort = 'code' Would this still work with "boost" function? No, it only works if the res...
by aimeos
29 Apr 2024, 09:18
Forum: Laravel package
Topic: CMS pages
Replies: 8
Views: 12030

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: 2034

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: 4748

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: 3377

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: 4064

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: 3663

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: 4064

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 ...