简体   繁体   中英

association queries in feathers js

How do we create or add the sample paramter below to be a valida query params. Ive tried something below but it is error. does someone has an idea? thanks.

#URL

http://localhost:3030/peopltable?$or[0][addedBy.person.name][$like]=HELLO&targetId=865

#what i tried

if (query ) {
    query = {
      targetId: query.targetId,
      $or[0][addedBy.person.name][$like] = "Hello"
    };
  }

The same information from the URL should be called like:

if (query ) {
  query = {
    targetId: query.targetId,
    $or: [ { 'addedBy.person.name': { $like: "Hello" } } ]
  };
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM