rdf-ex/lib/rdf/query/bgp.ex
Marcel Otto f4bda2ef00 Only traverse the solution set to remove blank nodes when necessary
Also add an option remove_bnode_query_variables to skip the removal
generally.
2020-06-05 12:33:04 +02:00

11 lines
264 B
Elixir

defmodule RDF.Query.BGP do
@moduledoc """
An interface for various BGP algorithm implementations.
"""
@type solution :: map
@type solutions :: [solution]
@callback query(triple_patterns :: [], data :: RDF.Data.t, opts :: Keyword.t) :: solutions
end