We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
drWho.Episodes
drWho.Planet.Earth.'COMES_FROM'.'Amy Pond'.LOVES.
drWho.Character.Doctor.'ENEMY_OF'
any
We want to be able to write, say:
drWho.Character.Doctor.'ENEMY_OF'.'[any]'.'APPEARED_IN'.`[any]`.get_properties
And get any enemies of Doctor together with episodes in which they appeared.
First step: changing the structure so that we return any in the list of options:
[any]
nodes_of_type
linked_from_node
links_from_node
links_from_any_node_of_type
/linked_from_node/<node>/<link>
<node>=[any]
Second step:
Modify all code so that every time we let user select type (label), node or label, add the relevant information to the trace
Print the body of HTTP request in get_properties to see what you get!
get_properties
Generate traces like:
node=Derek Jacobi&link=PLAYED&node=Master
When we add any we can do:
node=Derek Jacobi&link=PLAYED&node=[any]
Modify get_properties so that it works based on the trace
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Small things to do next:
drWho.Episodes
? and also, can we get names for them?drWho.Planet.Earth.'COMES_FROM'.'Amy Pond'.LOVES.
drWho.Character.Doctor.'ENEMY_OF'
Big things to do -
any
:We want to be able to write, say:
And get any enemies of Doctor together with episodes in which they appeared.
First step: changing the structure so that we return
any
in the list of options:[any]
tonodes_of_type
andlinked_from_node
links_from_node
linkslinks_from_any_node_of_type
(maybe nicer name :-)) taking a specific label and returning all links from any node of a given type (label)/linked_from_node/<node>/<link>
we have to handle the case when<node>=[any]
Second step:
Modify all code so that every time we let user select type (label), node or label, add the relevant information to the trace
Print the body of HTTP request in
get_properties
to see what you get!Generate traces like:
When we add
any
we can do:Modify
get_properties
so that it works based on the traceThe text was updated successfully, but these errors were encountered: