Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to load multiple rdf files #85

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to the "vscode-sparql-notebook" extension will be documented in this file.

## 0.0.39
- Oxigraph update
- Feature: You can load multiple files for "local" queries.

## 0.0.38
- Oxigraph update
- Fix: Correct SPARQL select result order
- Fix: Correct SPARQL optional empty filed rendering

## 0.0.37
- Fix: Windows path issue with external query files.

Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,24 @@ or
```
Working with relative paths makes the notebook portable.

For file based endpoints you can have multiple files in the endpoint definitions in many ways:

Absolute or relative paths pattern are supported but i suggest to use relative paths for portability.
```sparql
# [endpoint=./rdf/{a,b}.ttl]
```
or
```sparql
# [endpoint=./rdf/*.ttl]
```
or
```sparql
# [endpoint=./rdf/a.ttl]
# [endpoint=./rdf/b.ttl]
```

Note: You cannot mix HTTP endpoints and file endpoints in the same cell.

### Cell Status Bar
The cell status bar displays information about the endpoint in use and its source.

Expand Down
Empty file added doc/00_intro.md
Empty file.
Loading
Loading