SPARQL-EDI
SPARQL query language for EDI graphs web standard.
Definition
SPARQL (SPARQL Protocol and RDF Query Language) is the W3C query language for RDF graphs. SQL-like syntax: SELECT ?s ?p ?o WHERE { ?s ?p ?o }. Applied to semantic EDI to query the commercial knowledge graph — 'all invoices > 1000 € issued by a French supplier in Q1 2026'.
Origin
SPARQL 1.0 published W3C Recommendation 2008, v1.1 in 2013.
Example in context
SELECT ?invoice ?amount WHERE { ?invoice a :Invoice ; :hasIssuer ?issuer ; :hasTotal ?amount . ?issuer :country "FR" . FILTER(?amount > 1000) }
Related terms
- RDF EDI — model of queried graphs.