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
Sources
HowTo -- Querying Knowledge Graphs across the Web using ChatGPT & SPARQL
openlinksw
·
1
Using SPARQL Query Templates to Fine-Tune ChatGPT's Large Language Model (LLM)
openlinksw
·
2
03.8 - Querying Knowledge Graphs with SPARQL - YouTube
youtube
·
3

Using SPARQL to access Linked Open Data | Programming Historian
programminghistorian
·
4
Integration of Web APIs and Linked Data Using SPARQL Micro-Services—Application to Biodiversity Use Cases - MDPI
mdpi
·
5
Answer
Here is 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:
https://linkeddata.uriburner.com/sparql?default-graph-uri=urn:schemaorg:data:abox&query=SELECT%20DISTINCT%20%3Frecipe%20%3Fname%20FROM%20%3Curn%3Aschemaorg%3Adata%3Aabox%3E%20WHERE%20%7B%3Frecipe%20a%20schema%3ARecipe%3B%20schema%3Aname%20%3Fname.%7D%20ORDER%20BY%20ASC%20(%3Fname)
Redo, labeling the hyperlink "SPARQL Query"
Sources
HowTo -- Querying Knowledge Graphs across the Web using ChatGPT & SPARQL
openlinksw
·
1
03.8 - Querying Knowledge Graphs with SPARQL - YouTube
youtube
·
2

Using SPARQL Query Templates to Fine-Tune ChatGPT's Large Language Model (LLM)
openlinksw
·
3
Using SPARQL to access Linked Open Data | Programming Historian
programminghistorian
·
4
Integration of Web APIs and Linked Data Using SPARQL Micro-Services—Application to Biodiversity Use Cases - MDPI
mdpi
·
5
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