-
Notifications
You must be signed in to change notification settings - Fork 448
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
Add a general project operator. #211
Conversation
Codecov Report
@@ Coverage Diff @@
## main #211 +/- ##
===========================================
+ Coverage 65.65% 78.64% +12.98%
===========================================
Files 52 54 +2
Lines 4807 5197 +390
===========================================
+ Hits 3156 4087 +931
+ Misses 1651 1110 -541
Continue to review full report at Codecov.
|
|
||
sess = graphscope.session() | ||
|
||
graph = sess.g(directed=directed) |
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.
should I(the user) assign a directed
variable before the statement ? because I don't know where the directed
from in the example
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 directed
here is not necessary, I copied it from the ldbc.py
:).
But the sess.g()
and parameters is covered in loading_graphs.rst
.
## What do these changes do? - Fixes bugs in flatten fragment - Upgrade GAE to latest vineyard ## Related issue number Fixes #2476 See also: - #211 - v6d-io/v6d#239 - v6d-io/v6d#1224 --------- Signed-off-by: Tao He <[email protected]>
What do these changes do?
project
which can project a set of vertex labels and edge labels to a new property graph.project_to_simple
implicitly be called when an app that can only run over a simple graph is using that property graph.add_column
now performing validity check on vertex label level.Related issue number
Fixes #134