f4bda2ef00
Also add an option remove_bnode_query_variables to skip the removal generally.
11 lines
264 B
Elixir
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
|