From ef25896bcfd84aa1bdd2c94d1ab04b9bc02fd6d2 Mon Sep 17 00:00:00 2001 From: Michael Cochez <3889771+miselico@users.noreply.github.com> Date: Tue, 13 Jun 2023 20:03:14 +0200 Subject: [PATCH] fix: dbpedia URL to use https instead of http (#2444) The URL for the service keyword had the http address for the dbpedia endpoint, which no longer works. Changing it to https as that works. --- docs/intro_to_sparql.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro_to_sparql.rst b/docs/intro_to_sparql.rst index 9de055413..f2cbf5a69 100644 --- a/docs/intro_to_sparql.rst +++ b/docs/intro_to_sparql.rst @@ -140,7 +140,7 @@ The ``SERVICE`` keyword of SPARQL 1.1 can send a query to a remote SPARQL endpoi """ SELECT ?s WHERE { - SERVICE { + SERVICE { ?s a ?o . } }