Anonymous
2
4
Like
Given the following. ```turtle ## Turtle Start ## @prefix : <#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix schema: <http://schema.org/> . :Template rdf:type rdfs:Class . :Prompt rdf:type rdfs:Class ; rdfs:subClassOf :Template . :Response rdf:type rdfs:Class ; rdfs:subClassOf :Template . :PromptRecipe rdf:type :Prompt ; :hasUser :UserA ; :hasInput "List recipes associated with knowledge graph <G>, using terms from schema.org;SELECT DISTINCT ?recipe ?name FROM <G> WHERE {?recipe a schema:Recipe; schema:name ?name.} ORDER BY ASC (?name);" ; :hasResponse :Response4 . :Response4 rdf:type :Response . :PromptRecipeByOrg rdf:type :Prompt ; :hasUser :UserA ; :hasInput "List recipes from <Org> associated with knowledge graph <G>, using terms from schema.org;SELECT DISTINCT ?recipe ?name FROM <G> WHERE {?recipe a schema:Recipe; schema:name ?name. FILTER (CONTAINS(STR(?recipe),'<Org>'))} ORDER BY ASC (?recipe);" ; :hasResponse :Response5 . :Response5 rdf:type :Response . ## Turtle End ## ``` Create a clickable SPARQL hyperlink for exploring recipes using the knowledge graph urn:schemaorg:data:abox via the query service endpoint https://linkeddata.uriburner.com/sparql
Redo, labeling the hyperlink "SPARQL Query"

Answer

Here is the clickable SPARQL Query hyperlink for exploring recipes using the knowledge graph urn:schemaorg:data:abox via the query service endpoint https://linkeddata.uriburner.com/sparql: SPARQL Query

Related

What is ChatGPT and how is it used in conjunction with SPARQL
Can you explain the difference between a SPARQL endpoint and a SPARQL micro-service
How can SPARQL be used to query graph databases in cultural heritage institutions