UNPKG

hra-api

Version:

The Human Reference Atlas (HRA) API deployed to https://apps.humanatlas.io/api/

9 lines (6 loc) 257 B
import { select } from './sparql.js'; const QUERY = 'SELECT DISTINCT ?g WHERE { GRAPH ?g { ?s ?p ?o . } }'; export async function namedGraphs(endpoint) { const graphs = await select(QUERY, endpoint); return new Set(graphs.map((graph) => graph.g)); }