import { World } from "@fartlabs/worlds";
// Initialize the client for a specific world.
const world = new World({
baseUrl: "https://api.wazoo.tech/v1", // Adjust if using a different endpoint
apiKey: "your-api-key",
worldId: "my-knowledge-base",
});
// Run a SPARQL query
const result = await world.sparqlQuery(`
SELECT ?s ?p ?o WHERE {
?s ?p ?o .
} LIMIT 10
`);
console.log(result);