├── .github └── ISSUE_TEMPLATE │ ├── new-feature.md │ └── sep-improvement-idea.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SEP ├── README.md ├── SEP-0000 │ └── sep-0000.md ├── SEP-0001 │ └── sep-0001.md ├── SEP-0002 │ └── sep-0002.md ├── SEP-0003 │ └── sep-0003.md ├── SEP-0004 │ └── sep-0004.md ├── SEP-0005 │ └── sep-0005.md ├── SEP-0006 │ └── sep-0006.md ├── SEP-0007 │ └── sep-0007.md ├── SEP-0008 │ └── sep-0008.md ├── SEP-0009 │ └── sep-0009.md └── template.md ├── docs ├── charter.html ├── index.html ├── index.md └── sparql-12-charter.css ├── tests ├── SEP-0004 │ ├── data.ttl │ ├── from-default-and-graph.rq │ ├── from-default-and-graph.srj │ ├── from-default.rq │ ├── from-default.srj │ ├── g1.ttl │ ├── graph-default-and-from.rq │ ├── graph-default-and-from.srj │ ├── graph-default.rq │ ├── graph-default.srj │ └── manifest.ttl └── manifest.ttl └── w3c.json /.github/ISSUE_TEMPLATE/new-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/.github/ISSUE_TEMPLATE/new-feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sep-improvement-idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/.github/ISSUE_TEMPLATE/sep-improvement-idea.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/README.md -------------------------------------------------------------------------------- /SEP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/README.md -------------------------------------------------------------------------------- /SEP/SEP-0000/sep-0000.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SEP/SEP-0001/sep-0001.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SEP/SEP-0002/sep-0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0002/sep-0002.md -------------------------------------------------------------------------------- /SEP/SEP-0003/sep-0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0003/sep-0003.md -------------------------------------------------------------------------------- /SEP/SEP-0004/sep-0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0004/sep-0004.md -------------------------------------------------------------------------------- /SEP/SEP-0005/sep-0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0005/sep-0005.md -------------------------------------------------------------------------------- /SEP/SEP-0006/sep-0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0006/sep-0006.md -------------------------------------------------------------------------------- /SEP/SEP-0007/sep-0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0007/sep-0007.md -------------------------------------------------------------------------------- /SEP/SEP-0008/sep-0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0008/sep-0008.md -------------------------------------------------------------------------------- /SEP/SEP-0009/sep-0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/SEP-0009/sep-0009.md -------------------------------------------------------------------------------- /SEP/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/SEP/template.md -------------------------------------------------------------------------------- /docs/charter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/docs/charter.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/sparql-12-charter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/docs/sparql-12-charter.css -------------------------------------------------------------------------------- /tests/SEP-0004/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/data.ttl -------------------------------------------------------------------------------- /tests/SEP-0004/from-default-and-graph.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/from-default-and-graph.rq -------------------------------------------------------------------------------- /tests/SEP-0004/from-default-and-graph.srj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/from-default-and-graph.srj -------------------------------------------------------------------------------- /tests/SEP-0004/from-default.rq: -------------------------------------------------------------------------------- 1 | SELECT ?s FROM DEFAULT WHERE { ?s ?p ?o } -------------------------------------------------------------------------------- /tests/SEP-0004/from-default.srj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/from-default.srj -------------------------------------------------------------------------------- /tests/SEP-0004/g1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/g1.ttl -------------------------------------------------------------------------------- /tests/SEP-0004/graph-default-and-from.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/graph-default-and-from.rq -------------------------------------------------------------------------------- /tests/SEP-0004/graph-default-and-from.srj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/graph-default-and-from.srj -------------------------------------------------------------------------------- /tests/SEP-0004/graph-default.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/graph-default.rq -------------------------------------------------------------------------------- /tests/SEP-0004/graph-default.srj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/graph-default.srj -------------------------------------------------------------------------------- /tests/SEP-0004/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/SEP-0004/manifest.ttl -------------------------------------------------------------------------------- /tests/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/tests/manifest.ttl -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/sparql-dev/HEAD/w3c.json --------------------------------------------------------------------------------