- Select Person Resources:
select X
from s:Person {X}
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#
- Select CharityOrganization Resources:
select C
from s:CharityOrganization {C}
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#
- Select TerroristOrganization Resources:
select T
from s:TerroristOrganization {T}
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#
- Select FinancialOrganization Resources:
select F
from s:FinancialOrganization {F}
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#
- Someone who is member of Some charity
select Someone, SomeCharity
from {Someone} s:memberOf {SomeCharity}
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#
- Someone who is member of Some charity and the Bank where the charity invests
select Someone, SomeCharity, Bank
from {Someone} s:memberOf {SomeCharity}. s:investmentsIn {Bank}
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#
- Find out an Associacion with a terrorist group
select Someone, SomeCharity, Bank, TerroristGroup
from {Someone} s:memberOf {SomeCharity}. s:investmentsIn {Bank},
{TerroristGroup} s:supportedBy {Bank}
where Someone like "*AnnaLaden"
using namespace
s = http://www.cs.uga.edu/~boanerg/fall2002/csci8350/screening#