Skip to content
Closed
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
8 changes: 0 additions & 8 deletions guides/how-to-guides/query-using-woql/schema-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,3 @@ This results in:
| @schema:Vehicle |

The `@schema` denotes the default schema prefix, and makes it clear that this identifier lives in the schema namespace rather than the data namespace.

We can also use the typical `triple` word if we use `from` to set our default graph to `schema` instead of `instance`.

```javascript
let v = Vars("cls");
from("schema")
.triple(v.cls, "rdf:type", "sys:Class")
```