Giter Club home page Giter Club logo

Comments (2)

lvivier avatar lvivier commented on June 9, 2024

I just ran into this limitation as well. qs by default will not parse an array with more than 20 items, it will convert it to an object with numbered indices as keys instead. The query validator rejects this construction and we get a 400 Bad Request with data along these lines:

{
           "instancePath": "/id/$in",
           "schemaPath": "#/properties/id/anyOf/1/properties/%24in/type",
           "keyword": "type",
           "params": {
             "type": "array"
           },
           "message": "must be array"
}

koa-qs supports passing options to qs.parse() since 3.0.0. It would be helpful if @feathersjs/koa either passed { arrayLimit: 0 } into koa-qs or allowed the user to pass in an options object.

Maybe there's another possibility where a koa app that's already had koa-qs applied to it can be passed as the second arg to the koa() fn from @feathersjs/koa?

from feathers.

lvivier avatar lvivier commented on June 9, 2024

fwiw we are working around this with a global hook along these lines:

import { traverse } from 'feathers-hooks-common'
import { isObject } from 'lodash'

const METHODS = ['$in', '$nin', '$ne', '$or', '$and']

export default function queryArrays () {
  return traverse(function (node) {
    if (METHODS.includes(this.key) && isObject(node) && isArrayable(node)) {
      this.update(Object.values(node))
    }
  },
  ctx => ctx.params.query)
}

function isArrayable (obj) {
  return Object.entries(obj).every(([key, value]) => !isNaN(+key) && typeof value === 'string')
}

from feathers.

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.