@prefix v: <http://www.w3.org/2001/07/25-swws/egv#>.
@prefix dot: <http://www.w3.org/2001/02pd/gv#>.
@prefix log: <http://www.w3.org/2000/10/swap/log#>.
@prefix org: <http://www.w3.org/2001/04/roadmap/org#>.
@prefix contact: <http://www.w3.org/2000/10/swap/pim/contact#>.

# display rules for contacts.n3

this log:forAll v:s, v:p, v:o.

# pick arbitrary relationship for starting graph 

v:theGraph dot:hasNode <mailto:jmarsh@microsoft.com>.

{ <contacts.n3> log:resolvesTo [ log:includes { v:s contact:company v:o } ] }
log:implies
{ v:s [ a dot:EdgeProperty;
	dot:label "contact:company";
	dot:color "blue" ] v:o }.

{ <contacts.n3> log:resolvesTo [ log:includes { v:s org:member v:o } ] }
log:implies
{ v:s [	a dot:EdgeProperty;
	dot:label "org:member";
	dot:color "blue" ] v:o }.

{ <contacts.n3> log:resolvesTo [ log:includes { v:s contact:mailbox v:o } ] }
log:implies
{ v:s [	a dot:EdgeProperty;
	dot:label "contact:mailbox";
	dot:color "blue" ] v:o }.

