We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs says to do something like:
voos?empresa__equals=AMERICAN%20AIRLINES%20INC
But no matter which prop I search for or whatever I can not get the results to be filtered.
My piece of code Schema
const voo = new mongoose.Schema( { "Cod Empresa" : String, "last_updated" : { type: Date, default: Date.now }, "Empresa" : String, "No VOO" : Number, "Equip" : String, "Seg" : String, "Ter" : String, "Qua" : String, "Qui" : String, "Sex" : String, "Sab" : String, "Dom" : String, "Qtde Assentos" : Number, "Numero Hotran" : String, "Data Solicitacao" : String, "Data Aprovacao" : String, "Data Vigencia" : String, "Natureza Operacao" : String, "No Etapa" : Number, "COD Origem" : String, "ARPT Origem" : String, "COD Destino" : String, "ARPT Destino" : String, "Horario Partida" : String, "Horario Chegada " : String, "CODESHARE" : String, "Observacao" : String, "Equip Alt" : String } ) module.exports = restful.model('Voo', voo)
Service
Voo .methods(['get']) .updateOptions({ new: true, runValidators: true }) .after('get', errorHandler)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The docs says to do something like:
But no matter which prop I search for or whatever I can not get the results to be filtered.
My piece of code
Schema
Service
The text was updated successfully, but these errors were encountered: