I'm trying to make granular decision making on snyk findings based on many properties. One of the key properties is IntroducedThrough, which helps indicate if the vulnerabily originated in a downstream dependency. Unfortunately, it's currently 'None' on every issue.
Steps To Reproduce
reproduce like this:
org = self.client.organizations.filter(name="<org_name>")[0]
for project in org.projects.all():
for issue in project.issueset_aggregated.all().issues:
print(issue)
Is there an existing issue for this?
Description of the bug
I'm trying to make granular decision making on snyk findings based on many properties. One of the key properties is IntroducedThrough, which helps indicate if the vulnerabily originated in a downstream dependency. Unfortunately, it's currently 'None' on every issue.
Steps To Reproduce
reproduce like this:
Additional Information
No response