has wikilink
- CURIE:
gmeow:hasWikilink - IRI: https://blackcatinformatics.ca/gmeow/hasWikilink
- Category: property
- Defined by:
gmeow:slices/notes - Box roles: RBox role (What is this?)
A directed wikilink edge projected from mentions or relatedNote for Markdown / PKM round-trip. Not asserted in the canonical graph; materialized by the markdown projection (queries/projections/markdown.rq).
Structure
Property shape: object property; gmeow:Note -> gmeow:Note
Practical Pattern
Use gmeow:hasWikilink from gmeow:Note to gmeow:Note when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Annotations And Notes
- Source:
slices/extensions/notes/examples/annotations-and-notes.ttl - Examples catalog: open in catalog#example-slices-extensions-notes-examples-annotations-and-notes
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example: notes and annotations. A gmeow:Note is a first-class
# information object — authored, timestamped, and linked to other notes by
# gmeow:hasWikilink and to entities by gmeow:mentions (the Zettelkasten / linked-
# note pattern). A gmeow:Highlight is the W3C-Web-Annotation shape for pure
# highlighting: a gmeow:annotationTarget, a precise gmeow:annotationTargetSpan
# (a text-quote Selector), and a gmeow:annotationMotivation — but NO body (a
# highlight just marks a span; for an annotation that says something, a body-
# bearing gmeow:Annotation subclass is used). A gmeow:Comment is a Note that
# threads under a parent.
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/notes/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- A linked note: authored, mentions an entity, wikilinks to another note.
ex:note1 a gmeow:Note ;
gmeow:noteAuthor ex:dana ;
gmeow:noteContent "Transformers replaced RNNs for most NLP tasks by 2020." ;
gmeow:noteCreatedAt "2026-06-10T08:00:00Z"^^xsd:dateTime ;
gmeow:hasWikilink ex:note2 ;
gmeow:mentions ex:paper .