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
A call is made in Loopback 4 but it doesn't resolve the where correctly.
curl --location -g --request GET '127.0.0.1:3000/articles?filter[include][0]=attributes&filter[limit]=25&filter[where][attributes][or][0][name]=COLECCIÓN&filter[where][attributes][or][0][value][inq][0]=MARVEL&filter[where][attributes][or][0][value][inq][1]=SUPERHÉROES'
loopback:connector:postgresql SQL: SELECT "id","name","value","article_id" FROM "public"."attributes" WHERE (("name"=$1 AND "value"=$2)) ORDER BY "id" loopback:connector:postgresql Parameters: ["COLECCIÓN","[object Object]"] +6s
SQL: SELECT "id","name","value","article_id" FROM "public"."attributes" WHERE (("name"=$1 AND "value" in ($2, $3))) ORDER BY "id" Parameters: ["COLECCIÓN","MARVEL","SUPERHÉROES"] +6s
linux x64 16.14.0 ├── [email protected]
The text was updated successfully, but these errors were encountered:
frbuceta
No branches or pull requests
Steps to reproduce
A call is made in Loopback 4 but it doesn't resolve the where correctly.
Current Behavior
Expected Behavior
Additional information
The text was updated successfully, but these errors were encountered: