-
Notifications
You must be signed in to change notification settings - Fork 2
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
Added Blog post for SBOM and added SBOM as plugin to documentation #3
Conversation
MATCH p=(l:License)<-[:LICENSED_BY]-(:Component)<-[:DEPENDS_ON]-(:Document) | ||
-[:DEPENDS_ON]->(:Component)-[:LICENSED_BY]->(l2) | ||
WHERE [l.name](http://l.name/) = 'lgpl-2.1-or-later' and l<>l2 | ||
RETURN DISTINCT [l2.name](http://l2.name/) |
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.
RETURN DISTINCT [l2.name](http://l2.name/) | |
RETURN DISTINCT l2.name |
``` | ||
MATCH p=(l:License)<-[:LICENSED_BY]-(:Component)<-[:DEPENDS_ON]-(:Document) | ||
-[:DEPENDS_ON]->(:Component)-[:LICENSED_BY]->(l2) | ||
WHERE [l.name](http://l.name/) = 'lgpl-2.1-or-later' and l<>l2 |
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.
Looks like a formatter had some kind of conniption
WHERE [l.name](http://l.name/) = 'lgpl-2.1-or-later' and l<>l2 | |
WHERE l.name= 'lgpl-2.1-or-later' and l<>l2 |
``` | ||
MATCH p=(l:License)←[:LICENSED_BY]-(:Component)←[:DEPENDS_ON]-(:Document) | ||
-[:DEPENDS_ON]→(:Component)-[:LICENSED_BY]→(l2) | ||
WHERE [l.name](http://l.name/) = 'lgpl-2.1-or-later' and l<>l2 |
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.
WHERE [l.name](http://l.name/) = 'lgpl-2.1-or-later' and l<>l2 | |
WHERE l.name = 'lgpl-2.1-or-later' and l<>l2 |
MATCH p=(l:License)←[:LICENSED_BY]-(:Component)←[:DEPENDS_ON]-(:Document) | ||
-[:DEPENDS_ON]→(:Component)-[:LICENSED_BY]→(l2) | ||
WHERE [l.name](http://l.name/) = 'lgpl-2.1-or-later' and l<>l2 | ||
RETURN DISTINCT [l2.name](http://l2.name/) |
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.
RETURN DISTINCT [l2.name](http://l2.name/) | |
RETURN DISTINCT l2.name |
|
||
Now that we have setup our database and analysis environment we next need to install the Nodestream plugins for Neptune and SBOM. | ||
|
||
`pip install -q pyyaml nodestream-plugin-neptune nodestream_plugin_sbom` |
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.
`pip install -q pyyaml nodestream-plugin-neptune nodestream_plugin_sbom` | |
`pip install -q pyyaml nodestream-plugin-neptune nodestream-plugin-sbom` |
I think the python package is underscores but the pypi package is hyphens
No description provided.