Skip to content
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

Analytics starting with a match query #49

Closed
grabl opened this issue Sep 21, 2018 · 2 comments
Closed

Analytics starting with a match query #49

grabl opened this issue Sep 21, 2018 · 2 comments

Comments

@grabl
Copy link
Contributor

grabl commented Sep 21, 2018

This issue was originally posted by @haikalpribadi on 2018-04-12 13:47.

Improve analytics syntax, pass a match query as subgraph.
e.g. degree:

match 
$x isa person; 
$y isa movie; 
($x, $y) isa has-cast; 
compute degree; persist true;
graql.match(
var(“x”).isa(“person”), 
var(“y”).isa(“movie”), 
var().rel(“y”).rel(“x”).isa(“has-cast”)
).compute().degree().execute();

This can NOT be done with the current version with TinkerPop.

@grabl
Copy link
Contributor Author

grabl commented Sep 21, 2018

This comment was originally posted by @haikalpribadi on 2018-04-13 01:54:15+02:00.

Yes! I would love to see this implemented! :) 
But I suppose, this won't be a priority for this month's release, yeah? Jason Liu 

@marco-scoppetta marco-scoppetta transferred this issue from vaticle/typedb Apr 15, 2019
@flyingsilverfin
Copy link
Member

Analytics is currently not supported and will eventually be redesigned into a new form.

@flyingsilverfin flyingsilverfin closed this as not planned Won't fix, can't repro, duplicate, stale Jan 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants