RDF.Query.path
You're seeing just the function
path
, go back to RDF.Query module for more information.
Creates a RDF.Query.BGP
struct for a path through a graph.
The elements of the path can consist of the same RDF terms and variable
expressions allowed in bgp/1
expressions.
Example
The RDF.Query.BGP
struct build with this:
RDF.Query.path [EX.S, EX.p, RDFS.label, :name?]
is the same as the one build by this bgp/1
call:
RDF.Query.bgp [
{EX.S, EX.p, :_o},
{:_o, RDFS.label, :name?},
]