Giter Site home page Giter Site logo

Comments (5)

deontologician avatar deontologician commented on July 16, 2024

Your second example is right. Alternately, if you want to check the responses of the removeAll:

messages.findAll({ from: 'bob' }, {from: 'agatha' }).fetch()
  .map(messageList => messages.removeAll(messageList))
  .subscribe({
    next(removedId) { console.log(`id ${removedId} was removed`) },
    error(err) { console.error(`Error removing items! ${err}`) },
    complete() { console.log('All items removed successfully') },
  })

from horizon-docs.

danielmewes avatar danielmewes commented on July 16, 2024

@deontologician Would it fix the example at http://horizon.io/api/collection/#removeall to add a .toArray() here?

var messageList = messages.findAll({from: "bob"}, {from: "agatha"}).fetch().toArray();

from horizon-docs.

deontologician avatar deontologician commented on July 16, 2024

No, .toArray() still returns an observable, instead of getting [{id:1}, ...] you'd get [[{id:1}, ...]] since it's already emitting an array. In this case there's no way around a callback like @rnenjoy does with .subscribe, or by chaining operations like in my example. It's fundamentally an asynchronous operation, and the example is written in a style that requires the results to be available synchronously

from horizon-docs.

danielmewes avatar danielmewes commented on July 16, 2024

Ah right, makes sense. So what you wrote here #79 (comment) is probably what we should put into the docs?

from horizon-docs.

deontologician avatar deontologician commented on July 16, 2024

Yeah, it's effectively the same as @rnenjoy's example, but is more general since it shows how to get the removed ids back out

from horizon-docs.

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.