We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
await fsxaApi .fetchElement({ id: reference.referenceId, locale: tabSection.previewId.split('.')[1], // e.g. 8e805568-5301-43df-868b-7e952f40ba8a.de_DE })
We are using this code to resolve a page reference, which works fine. The console is showing the following error from the fsxa-api package though:
"Error: The filter query requires a value"
How can we fix this? There is no filter option on the function.
The text was updated successfully, but these errors were encountered:
Hey Lars, I was not able to reproduce your described behaviour. Internally the fetchElement method calls a fetchByFilter with following filter:
{ field: 'identifier', operator: ComparisonQueryOperatorEnum.EQUALS, value: id, }
As you can see here, this error is only thrown, when there is a problem with the provided id.
Could you provide a minimal reproduction to the problem?
Sorry, something went wrong.
No branches or pull requests
We are using this code to resolve a page reference, which works fine.
The console is showing the following error from the fsxa-api package though:
"Error: The filter query requires a value"
How can we fix this? There is no filter option on the function.
The text was updated successfully, but these errors were encountered: