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
Specific need: mechanism for contacting all users. The easiest implementation would likely be the ability to extract email addresses.
The ideal is to set this up in a way that will be extensible.
Email address access is a V2 issue; anything else will be V3.
The text was updated successfully, but these errors were encountered:
Note, this is a good initial mongo query:
db.users.aggregate([ { $lookup: { from: "profiles", localField: "_id", foreignField: "userid", as: "user_profiles" } }, { $lookup: { from: "grants", localField: "_id", foreignField: "userid", as: "seeker" } }, { $lookup: { from: "makers", localField: "_id", foreignField: "userid", as: "maker" } } ])
Sorry, something went wrong.
lovettbarron
No branches or pull requests
Specific need: mechanism for contacting all users. The easiest implementation would likely be the ability to extract email addresses.
The ideal is to set this up in a way that will be extensible.
Email address access is a V2 issue; anything else will be V3.
The text was updated successfully, but these errors were encountered: