Giter VIP home page Giter VIP logo

Comments (10)

raymondfeng avatar raymondfeng commented on July 17, 2024

How does your table/column definition look like? I suspect that fbId is a serial type.

from loopback-connector-mysql.

benmarten avatar benmarten commented on July 17, 2024

I am not sure what you mean by serial type...
Now it is:

fbId varchar(64) utf8mb4_unicode_ci

... before I used bigInt.

from loopback-connector-mysql.

benmarten avatar benmarten commented on July 17, 2024

Here are the mysql logs:

    26699 Query SELECT `fbId`, `firstName`, `lastName`, `gender`, `id` FROM `person` WHERE `fbId` = 10152350030328372 ORDER BY `id`
    26699 Query INSERT INTO `person` SET `fbId` = 10152350030328372,`firstName` = 'Ben',`lastName` = 'Marten',`gender` = 'male',`id` = NULL

but the request body is that:

request.body={"fbId":"10152350030328371","gender":"male","firstName":"Ben","id":null,"lastName":"Marten"}

from loopback-connector-mysql.

raymondfeng avatar raymondfeng commented on July 17, 2024

You can print out the SQL mapping using:

$ DEBUG=loopback:connector:mysql node .

from loopback-connector-mysql.

raymondfeng avatar raymondfeng commented on July 17, 2024

In your sql log, the fbId seems to be a number. Did you change your LoopBack model definition for the 'fbId' properties in addition to the DB column?

from loopback-connector-mysql.

raymondfeng avatar raymondfeng commented on July 17, 2024

See this:
$ node

Number('10152350030328371')
10152350030328372

Maybe the number is out of range of JS number.

from loopback-connector-mysql.

benmarten avatar benmarten commented on July 17, 2024

Raymond, that was it :) I forgot to change the loopback model definition to string... I only changed mysl... to varchar. THX

Querying for a string/varchar, I also had to add the single quotes ( ' -> %27 ):
/api/persons?filter[where][fbId][like]=%2710152350030328371%27

from loopback-connector-mysql.

benmarten avatar benmarten commented on July 17, 2024

Actually adding the single quotes does not work...

http://localhost:3000/api/persons?filter[where][fbId][like]=10152350030328371

{"error":{"name":"Error","status":400,"message":"The fbId property has invalid clause {"like":10152350030328372}","statusCode":400}}

Adding a literal in front of the number (so its recognized as string) works though...
http://localhost:3000/api/persons?filter[where][fbId][like]=a10152350030328371

loopback:connector:mysql SQL: SELECT fbId, firstName, lastName, gender, pictureExcluded, pictureExcludedDate, location, rating, id FROM person WHERE fbId LIKE 'a10152350030328371' ORDER BY id +166ms

How can I force it to be recognized as string? Adding ' or " works, but then the query will be build like this:

loopback:connector:mysql SQL: SELECT fbId, firstName, lastName, gender, pictureExcluded, pictureExcludedDate, location, rating, id FROM person WHERE fbId LIKE '"10152350030328371"' ORDER BY id +1m

from loopback-connector-mysql.

raymondfeng avatar raymondfeng commented on July 17, 2024

The query string value is coerced into a number.

I suggest that you use:

http://localhost:3000/api/persons?filter={"where":{"fbId": {"like": "10152350030328371"}}}

BTW, you don't have to use 'like'. It can be a simple equal, such as:

http://localhost:3000/api/persons?filter[where][fbId]=10152350030328371

from loopback-connector-mysql.

benmarten avatar benmarten commented on July 17, 2024

Works, thanks!

from loopback-connector-mysql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.