core: RDF.Dataset.graphs returns a list of graphs
instead of the map from graph names to graphs
This commit is contained in:
parent
0271181bca
commit
9a128858b6
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ defmodule RDF.Dataset do
|
|||
@doc """
|
||||
The set of all graphs.
|
||||
"""
|
||||
def graphs(%RDF.Dataset{graphs: graphs}), do: graphs
|
||||
def graphs(%RDF.Dataset{graphs: graphs}), do: Map.values(graphs)
|
||||
|
||||
|
||||
@doc """
|
||||
|
|
Loading…
Reference in a new issue