GithubHelp home page GithubHelp logo

Comments (5)

arnaudbesnier avatar arnaudbesnier commented on July 20, 2024

Hi @GautierT,

Please add a piece of code that represents you Smart Relationship getter implementation.
Without it we cannot help you here.

from forest-express-mongoose.

GautierT avatar GautierT commented on July 20, 2024

UPDATED

router.get('/forest/users/:userId/relationships/XX', Liana.ensureAuthenticated, async (req, res, next) => {
    debug('req.body : %O', req.body)
    debug('req.params : %O', req.params)
    debug('req.query : %O', req.query)

    try {

      const results = await Letters.paginate({
        user: req.params.userId,
        mode: 'test'
      }, {
        page: parseInt(req.query.page.number),
        limit: parseInt(req.query.page.size),
        sort: req.query.sort,
        populate: [{
          path: 'XX',
          select: '-__v'
        }, {
          path: 'XX',
          select: '-__v'
        }, {
          path: 'XX'
        }]
      })

      console.log('results.total : ', results.total)

      const serialized = await new Serializer(Liana, Letters, results.docs, {}, {
        count: results.total
        // Don't seem to work
      }).perform()

      debug('serialized : %O', serialized)

      return res.send({...serialized, meta : {count : results.total}})
    }
    catch (ex) {
      return next(ex)
    }

  })

from forest-express-mongoose.

GautierT avatar GautierT commented on July 20, 2024

Sometimes (one over 10) the smart fields are fetch and visible.
I think it's a problem in Ember. But i have no error in the console.

from forest-express-mongoose.

arnaudbesnier avatar arnaudbesnier commented on July 20, 2024

The Smart Field values injection is not made here (it is not the Serializer that does that job in the current liana).

To make the magic happen we should do improve this and it would make your code work perfectly.

By the way, is it a special relationship you have between users and letters? I don't get why Forest does not detect this relationship automatically.

from forest-express-mongoose.

GautierT avatar GautierT commented on July 20, 2024

Yes, it's a special one. Users does'n't contain an array of letters.

from forest-express-mongoose.

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.