GraphScope
GraphScope copied to clipboard
🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
Committed-by: BingqingLyu from Dev container ## What do these changes do? As titled. ## Related issue number Fixes #4528
Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.0.3 to 3.0.6. Release notes Sourced from werkzeug's releases. 3.0.6 This is the Werkzeug 3.0.6 security fix release, which fixes security issues but does not otherwise change...
Following query failed on Interactive. ```cypher MATCH (p:Paper)-[:Paper_Has_Experiment]->(e:Experiment), (p)-[:Paper_Has_Challenge]->(c:Challenge), (p)-[:Paper_Has_Solution]->(s:Solution), (p)-[:Paper_Has_Baseline]->(b:Baseline), (p)-[:Paper_Has_Contribution]->(co:Contribution) RETURN p.title AS PaperTitle, e.name AS ExperimentName, c.name AS ChallengeName, s.name AS SolutionName, b.name AS BaselineName, co.summary AS...
**Is your feature request related to a problem? Please describe.** support edge-induced subgraph: ``` g.V().has('year', gte(2014).and(lte(2020))).outE('cites').subgraph() ``` **Describe the solution you'd like** A clear and concise description of what you...
**Is your feature request related to a problem? Please describe.** as titled. **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives...
As titled. Currently we could only support string_view.
When running the following query, no results is returned. ```cypher match (n:Paper) where n.title CONTAINS "xxx " return n limit 100; ``` while changing tag `n` to `m` will resolve...