fix: Get documents with base values. #26
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When exporting and taking the ids of the company, role and user, kafka connector as the name of the document index, for example
menu_11_101
which would be the company 11Garden World
and the roleGarden World Admin
, but omits them in the name of the index if it is zero, the same happens with the English languageen_US
so an index asmenu_en_us_0_0_0
remains asmenu
.However when searching the document these values are considered in the index name
menu_en_us_11_101
, but it does not exist so it takes the default indexmenu
with the company 0=System and the role 0=SuperUser.Before this changes
After this changes
Additonal context
fixes https://github.com/solop-develop/frontend-core/issues/2272