We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a5574 commit b631718Copy full SHA for b631718
README.md
@@ -282,14 +282,18 @@ Then, we find triples with `:Mickey` as subject.
282
```JavaScript
283
const store = new N3.Store();
284
store.add(
285
- namedNode('http://ex.org/Pluto'),
286
- namedNode('http://ex.org/type'),
287
- namedNode('http://ex.org/Dog')
+ quad(
+ namedNode('http://ex.org/Pluto'),
+ namedNode('http://ex.org/type'),
288
+ namedNode('http://ex.org/Dog')
289
+ )
290
);
291
- namedNode('http://ex.org/Mickey'),
292
- namedNode('http://ex.org/Mouse')
293
+ namedNode('http://ex.org/Mickey'),
294
295
+ namedNode('http://ex.org/Mouse')
296
297
298
299
// Retrieve all quads
0 commit comments