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
I have a user table in DynamoDB, with multiple fields, like "email", "phone_number", etc.
However, during a query, I don't need all that data, I need only a few select ones.
I have tried using this query, however I get returned all the fields:
User.find({where: {phone_number: phoneNumberArray}, select: ['phone_number', 'avatar']})
I read about this issue being present in a mongoDB adapter. Is this problem present here too?
The text was updated successfully, but these errors were encountered:
Yes, I think that may be the case! Would take a PR.
Sorry, something went wrong.
No branches or pull requests
I have a user table in DynamoDB, with multiple fields, like "email", "phone_number", etc.
However, during a query, I don't need all that data, I need only a few select ones.
I have tried using this query, however I get returned all the fields:
User.find({where: {phone_number: phoneNumberArray}, select: ['phone_number', 'avatar']})
I read about this issue being present in a mongoDB adapter. Is this problem present here too?
The text was updated successfully, but these errors were encountered: