diff --git a/guides/how-to-guides/query-using-woql/schema-queries.md b/guides/how-to-guides/query-using-woql/schema-queries.md index 2fbbcc9f..68e8c1c0 100644 --- a/guides/how-to-guides/query-using-woql/schema-queries.md +++ b/guides/how-to-guides/query-using-woql/schema-queries.md @@ -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") -```