Giter Site home page Giter Site logo

Comments (7)

tgriesser avatar tgriesser commented on April 28, 2024

First makes sense, since that's based off the model attr's... what would the format be used on with the select and delete query though?

from bookshelf.

vjpr avatar vjpr commented on April 28, 2024
@forge
      name: profile.displayName
      fb: JSON.stringify profile
      fbId: profile.id
.save() ...

@forge({fbId: profile.id}).fetch() // runs `where fbId = $1` instead of `where fb_id = $1`

Delete would be the same if using something other than id.

from bookshelf.

tgriesser avatar tgriesser commented on April 28, 2024

Currently delete only uses the id, unless you add where clauses to the query like so:

model.query('where', 'fb_id', 'username').delete()

But I could probably change it so that if you tried to delete a model and didn't have an idAttribute it used the other attrs in the object to delete... would that make sense?

from bookshelf.

vjpr avatar vjpr commented on April 28, 2024

Probably quite a rare case but sounds good.

Just clarifying from my last post, the main issue is select queries not running format when using fetch.

@forge({fbId: profile.id}).fetch() // runs where fbId = $1instead ofwhere fb_id = $1``

This complicates things like findOrCreate.

from bookshelf.

tgriesser avatar tgriesser commented on April 28, 2024

Right... I'll change it to use format in the first fetch call for models.

from bookshelf.

vjpr avatar vjpr commented on April 28, 2024

First makes sense, since that's based off the model attr's...

...just realised what you meant - I didn't read that as the method Sync#first.

Makes sense now.

from bookshelf.

tgriesser avatar tgriesser commented on April 28, 2024

Decided not to make the change on the delete... The reasoning that it shouldn't be easy to delete models if you accidentally left of the idAttribute value or something... for this you'll need to do

model.query('where', {some: 'value'}).del(...`

The Sync#first should be good now.

from bookshelf.

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.