From f45ae3662a4135eb092c08a77ef40048a207bf9c Mon Sep 17 00:00:00 2001 From: Tpt Date: Tue, 11 Oct 2022 09:45:12 +0200 Subject: [PATCH] Adds RDF-star types to Store.quads_for_pattern --- python/src/store.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/src/store.rs b/python/src/store.rs index 4ff0d47b..9a6c7bd7 100644 --- a/python/src/store.rs +++ b/python/src/store.rs @@ -96,11 +96,11 @@ impl PyStore { /// Looks for the quads matching a given pattern. /// /// :param subject: the quad subject or :py:const:`None` to match everything. - /// :type subject: NamedNode or BlankNode or None + /// :type subject: NamedNode or BlankNode or Triple or None /// :param predicate: the quad predicate or :py:const:`None` to match everything. /// :type predicate: NamedNode or None /// :param object: the quad object or :py:const:`None` to match everything. - /// :type object: NamedNode or BlankNode or Literal or None + /// :type object: NamedNode or BlankNode or Literal or Triple or None /// :param graph_name: the quad graph name. To match only the default graph, use :py:class:`DefaultGraph`. To match everything use :py:const:`None`. /// :type graph_name: NamedNode or BlankNode or DefaultGraph or None /// :return: an iterator of the quads matching the pattern.