-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6467a2b
commit 700ffd0
Showing
4 changed files
with
148 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"importMap": "../import_map.json", | ||
"tasks": { | ||
"main": "deno run --allow-net --allow-env ./main.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { type Context, createResource } from "ldkit"; | ||
import { dbo, rdfs, xsd } from "ldkit/namespaces"; | ||
|
||
// Create a context for query engine | ||
const context: Context = { | ||
sources: ["https://dbpedia.org/sparql"], // SPARQL endpoint | ||
language: "en", // Preferred language | ||
}; | ||
|
||
// Create a schema | ||
const PersonSchema = { | ||
"@type": dbo.Person, | ||
name: rdfs.label, | ||
abstract: dbo.abstract, | ||
birthDate: { | ||
"@id": dbo.birthDate, | ||
"@type": xsd.date, | ||
}, | ||
} as const; | ||
|
||
// Create a resource using the data schema and context above | ||
const Person = createResource(PersonSchema, context); | ||
|
||
// List all persons | ||
const persons = await Person.find(undefined, 10); | ||
for (const person of persons) { | ||
console.log(person.name); // string | ||
console.log(person.birthDate); // Date | ||
} | ||
|
||
// Get a particular person identified by IRI | ||
const ada = await Person.findByIri("http://dbpedia.org/resource/Ada_Lovelace"); | ||
console.log(ada?.name); // string "Ada Lovelace" | ||
console.log(ada?.birthDate); // Date object of 1815-12-10 | ||
|
||
// Get total count of all persons | ||
const count = await Person.count(); | ||
console.log(count); // number | ||
|
||
// Insert a new person | ||
Person.insert({ | ||
$id: "http://dbpedia.org/resource/Alan_Turing", | ||
name: "Alan Turing", | ||
birthDate: new Date("1912-06-23"), | ||
}); | ||
|
||
// Modify a person's name | ||
Person.update({ | ||
$id: "http://dbpedia.org/resource/Alan_Turing", | ||
name: "Not Alan Turing", | ||
}); | ||
|
||
// Delete a person | ||
Person.delete("http://dbpedia.org/resource/Alan_Turing"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
{ | ||
"imports": { | ||
"ldkit": "./mod.ts", | ||
"ldkit/namespaces": "./namespaces.ts", | ||
"ldkit/sparql": "./library/sparql.ts", | ||
"ldkit/rdf": "./library/rdf.ts", | ||
|
||
"lume/": "https://deno.land/x/[email protected]/", | ||
"ldkit": "../mod.ts", | ||
"ldkit/namespaces": "../namespaces.ts", | ||
"ldkit/sparql": "../sparql.ts", | ||
"ldkit/rdf": "../rdf.ts", | ||
|
||
"react": "https://esm.sh/[email protected]", | ||
"react-dom": "https://esm.sh/[email protected]", | ||
|