-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Merging develop back in to project-orion #354
base: project-orion
Are you sure you want to change the base?
Conversation
// - Use the last document in each group (according to the value of stix.modified) | ||
// - Then apply query, skip and limit options | ||
const aggregation = [ | ||
{ $sort: { 'stix.id': 1, 'stix.modified': 1 } }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only reason that AssetsRepository
has its own retrieveAll
function is because of this line. It pulls the last modified document vs. the first modified document in BaseRepository
.
Could I convert it to an option instead to avoid so much duplication of code?
includeIdentities: false, | ||
lastUpdatedBy: options.lastUpdatedBy | ||
}; | ||
const relationships = await AttackObjectsService.relationshipsService.retrieveAll(relationshipsOptions); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pointing this out as another place to focus - I moved this from the AttackObjectsRepository
since it shouldn't be calling any services. But I'm not sure if I did it correctly.
No description provided.