@prefix dc: <http://purl.org/dc/elements/1.1/>.

<> dc:title "SKOS diagram style";
  dc:description "$Id: skosgram.n3,v 1.1 2005/06/02 22:23:43 connolly Exp $".

@prefix gv: <http://www.w3.org/2001/02pd/gv#>.
@prefix u: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.

@prefix : <skosgram#>.
@keywords is, of, a.

@prefix ndw: <http://norman.walsh.name/knows/taxonomy#>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<> gv:digraph theGraph.
theGraph gv:hasNode ndw:Everything.

skos:narrower a gv:EdgeProperty.

{ theGraph gv:hasNode ?W.
  ?W skos:narrower ?N }
 => { theGraph gv:hasNode ?N }.

{ ?C skos:prefLabel ?L } => { ?C gv:label ?L }.

