query
stringlengths
14
167
schema
stringclasses
2 values
result
stringlengths
18
310
Find all Officers whose name contains 'Dupond' and their associated entities, addresses and relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[of:officer_of]->(e:Entity)-[ra:registered_address]->(a:Address) WHERE toLower(o.name) CONTAINS toLower('dupond') RETURN o, of, e, ra, a
Find all Officers whose names contain 'Dupuis', along with their associated entities, addresses and relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[of:officer_of]->(e:Entity)-[ra:registered_address]->(a:Address) WHERE toLower(o.name) CONTAINS toLower('dupuis') RETURN o, of, e, ra, a
Find all Officers whose names contain 'Truc', along with their associated entities, addresses and relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[of:officer_of]->(e:Entity)-[ra:registered_address]->(a:Address) WHERE toLower(o.name) CONTAINS toLower('Truc') RETURN o, of, e, ra, a
Finds all Officers whose names contain '%name%', along with their associated entities, addresses and relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[of:officer_of]->(e:Entity)-[ra:registered_address]->(a:Address) WHERE toLower(o.name) CONTAINS toLower('%name%') RETURN o, of, e, ra, a
Finds all Officers whose names contain %name%, along with their associated entities, addresses and relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[of:officer_of]->(e:Entity)-[ra:registered_address]->(a:Address) WHERE toLower(o.name) CONTAINS toLower('%name%') RETURN o, of, e, ra, a
Finds all entities registered in a specific country with their associated relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r:registered_address]->(a:Address) WHERE toLower(a.country) = 'france' RETURN e, r, a
Find all the intermediaries whose name is similar to another intermediary, with their associated relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i1:Intermediary)-[r:similar]->(i2:Intermediary) RETURN i1, r, i2
Finds all entities whose service_provider is 'XYZ Corp' and which have officers with active status, with their associated relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r:officer_of]->(o:Officer)-[r2:registered_address]->(a:Address) WHERE toLower(e.service_provider) = 'xyz corp' AND toLower(o.status) = 'active' RETURN e, r, o, r2, a
Find all intermediaries who are also officers and have associated entities, with their associated relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i:Intermediary)-[r:officer_of]->(e:Entity)-[r2:intermediary_of]->(i2:Intermediary) RETURN i, r, e, r2, i2
Finds all officers who are also intermediaries, and whose associated entities have addresses registered in a specific country.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r:officer_of]->(e:Entity)-[r2:registered_address]->(a:Address) WHERE (o)-[:intermediary_of]->() AND toLower(a.country) = 'france' RETURN o, r, e, r2, a
Finds all entities whose registered addresses are in a country other than that of the service_provider, with their associated intermediaries and officers.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:registered_address]->(a:Address)<-[:registered_address]-(e)-[r2:officer_of]->(o:Officer)-[:intermediary_of]->(i:Intermediary) WHERE NOT toLower(e.service_provider) = toLower(a.country) RETURN e, r1, a, r2, o, i
Finds all entities whose service_provider is 'ABC Corp' and which have intermediaries similar to 'XYZ Ltd', with their associated officers and addresses.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:similar]->(i:Intermediary)-[r2:officer_of]->(o:Officer)-[r3:registered_address]->(a:Address) WHERE toLower(e.service_provider) = 'abc corp' AND toLower(i.name) = 'xyz ltd' RETURN e, r1, i, r2, o, r3, a
Finds all officers who are also intermediaries and have associated entities with 'Active' status, as well as their relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:officer_of]->(e:Entity)-[r2:intermediary_of]->(i:Intermediary) WHERE toLower(o.status) = 'actif' AND (o)-[:intermediary_of]->() RETURN o, r1, e, r2, i
Finds all officers who are also intermediaries and have associated entities with addresses registered in a specific country, along with their associated relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:officer_of]->(e:Entity)-[r2:registered_address]->(a:Address {countries:toLower('france')}) WHERE (o)-[:intermediary_of]->(e) RETURN o, r1, e, r2, a
Finds all entities whose service_provider is 'ABC Corp' and which have intermediaries similar to 'XYZ Ltd', with their associated officers and addresses.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:similar]->(i:Intermediary)-[r2:officer_of]->(o:Officer)-[r3:registered_address]->(a:Address) WHERE toLower(e.service_provider) = 'abc corp' AND toLower(i.name) = 'xyz ltd' RETURN e, r1, i, r2, o, r3, a
Finds all officers who are also intermediaries and have associated entities with 'Active' status, as well as their relationships.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:officer_of]->(e:Entity)-[r2:intermediary_of]->(i:Intermediary) WHERE toLower(o.status) = 'actif' AND (o)-[:intermediary_of]->() RETURN o, r1, e, r2, i
Finds all Officers
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) RETURN o
Finds all Intermediarys
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i:Intermediary) RETURN i
Finds all entitys
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) RETURN e
Finds all adresses
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (a:Address) RETURN a
Find all Officers and their associated entities
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:officer_of]->(e:Entity) RETURN o, r1, e
Find all Intermediary and associated entities
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i:Intermediary)-[r1:intermediary_of]->(e:Entity) RETURN i, r1, e
Finds all entities and their registered addresses
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r:registered_address]->(a:Address) RETURN e, r, a
Find all entities and their associated entities
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e1:Entity)-[r:same_as]->(e2:Entity) RETURN e1, r, e2
Finds all Officers and their associated entities with registered addresses
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:officer_of]->(e:Entity)-[r2:registered_address]->(a:Address) RETURN o, r1, e, r2, a
Finds all Officers whose names contain Cahuzac and their associated entities with registered addresses.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:officer_of]->(e:Entity)-[r2:registered_address]->(a:Address) WHERE toLower(o.name) CONTAINS 'cahuzac' RETURN o, r1, e, r2, a
Finds all Officers but also their associated entities with registered addresses if any
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) OPTIONAL MATCH (o)-[r1:officer_of]->(e:Entity)-[r2:registered_address]->(a:Address) RETURN o, r1, e, r2, a
Finds all companies with the same intermediary
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:intermediary_of]->(i:Intermediary)<-[r2:intermediary_of]-(e2:Entity) RETURN e, r1, i, r2, e2
Finds all companies with the same intermediary and their registered addresses
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:intermediary_of]->(i:Intermediary)<-[r2:intermediary_of]-(e2:Entity)-[r3:registered_address]->(a:Address) RETURN e, r1, i, r2, e2, r3, a
Finds all companies and their registered addresses, if any
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) OPTIONAL MATCH (e)-[r1:registered_address]->(a:Address) RETURN e, r1, a
Finds all companies with a registered address
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:registered_address]->(a:Address) RETURN e, r1, a
Finds all companies with a registered address and their intermediaries, if any
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)-[r1:registered_address]->(a:Address) OPTIONAL MATCH (e)-[r2:intermediary_of]->(i:Intermediary) RETURN e, r1, a, r2, i
Find all Officers whose names begin with 'cah'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) STARTS WITH toLower('cah') RETURN o
Find all Officers whose name begins with 'Dupu'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) STARTS WITH toLower('dupu') RETURN o
Find all Officers whose names begin with DUPO
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) STARTS WITH toLower('dupo') RETURN o
Find all Officers whose name begins with 'TrUC'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) STARTS WITH toLower('truc') RETURN o
Finds all Officers whose name begins with '%name%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) STARTS WITH toLower('%name%') RETURN o
Finds all Officers whose name begins with %name%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) STARTS WITH toLower('%name%') RETURN o
Find all Officers whose names contain 'cah'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('cah') RETURN o
Find all Officers whose name contains 'Dupu'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('dupu') RETURN o
Find all Officers whose names contain DUPO
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('dupo') RETURN o
Find all Officer names that contain 'TrUC'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('truc') RETURN o
Finds all Officers whose name contains '%name%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('%name%') RETURN o
Finds all Officers whose name contains %name%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('%name%') RETURN o
Find all Officers with the same name
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:same_name_as]->(o2:Officer) RETURN o1, r, o2
Find all Officers with the same name who are related to a company.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:same_name_as]->(o2:Officer)-[:officer_of]->(e:Entity) RETURN o1, r, o2, e
Find all the Officers who are probably the same
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:probably_same_officer_as]->(o2:Officer) RETURN o1, r, o2
Find all officers who have the same intermediary
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:intermediary_of]->(e:Entity)<-[r2:intermediary_of]-(o2:Officer) RETURN o1, r, e, r2, o2
Find all Officers who have the same intermediary and who are connected to a company.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:intermediary_of]->(e:Entity)<-[r2:intermediary_of]-(o2:Officer)-[:officer_of]->(e2:Entity) RETURN o1, r, e, r2, o2, e2
Find all nodes that don't have id 2
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) WHERE n.node_id <> 2 RETURN n
Find all nodes that don't have id 3
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) WHERE n.node_id <> 3 RETURN n
Finds all entities registered at the address '123 Main Street'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n:Entity)-[r:registered_address]->(m:Address) WHERE toLower(m.address) CONTAINS toLower('123 Main Street') RETURN n, r, m
Finds all entities registered at address '%address%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n:Entity)-[r:registered_address]->(m:Address) WHERE toLower(m.address) CONTAINS toLower('%address%') RETURN n, r, m
Find the entities to which Officer 'John Doe' is linked
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n:Officer)-[r:officer_of]->(m:Entity) WHERE toLower(n.name) CONTAINS toLower('John Doe') RETURN n, r, m
Find intermediaries with 'Inactive' status
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n:Intermediary) WHERE toLower(n.status) = toLower('Inactive') RETURN n
Finds entities under 'Delaware' jurisdiction
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n:Entity) WHERE toLower(n.jurisdiction) = toLower('Delaware') RETURN n
Find all the Officers who have the same intermediary and who are linked to a company with the same name.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:intermediary_of]->(e:Entity)<-[r2:intermediary_of]-(o2:Officer)-[:officer_of]->(e2:Entity)-[r3:same_name_as]->(o3:Officer) RETURN o1, r, e, r2, o2, e2, r3, o3
Find all Officers who have the same intermediary and who are linked to one company and who have the same name and who are linked to another company.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r:intermediary_of]->(e:Entity)<-[r2:intermediary_of]-(o2:Officer)-[:officer_of]->(e2:Entity)-[r3:same_name_as]->(o3:Officer)-[:officer_of]->(e3:Entity) RETURN o1, r, e, r2, o2, e2, r3, o3, e3
Find the intermediaries acting for 'ABC Company'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i:Intermediary)-[r:intermediary_of]->(e:Entity) WHERE toLower(e.name) = toLower('ABC Company') RETURN i, r, e
Find the intermediaries who act for %entity%.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i:Intermediary)-[r:intermediary_of]->(e:Entity) WHERE toLower(e.name) = toLower('%entity%') RETURN i, r, e
Find all officers and their companies involved in similar ventures
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1:similar]->(o2:Officer)-[r2:officer_of]->(e:Entity) RETURN o, r1, o2, r2, e
Find all officers who are intermediaries for companies in Panama
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r:intermediary_of]->(e:Entity)-[:registered_address]->(a:Address) WHERE toLower(a.countries) CONTAINS toLower('Panama') RETURN o, r, e
Find all the companies that have an intermediary in common
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o1:Officer)-[r1:intermediary_of]->(e:Entity)<-[r2:intermediary_of]-(o2:Officer) RETURN o1, r1, e, r2, o2
Find all Officers whose name contains 'cahuzac' and all nodes linked to these Officers.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[r1]-(o2) WHERE toLower(o.name) CONTAINS toLower('cahuzac') RETURN o, r1, o2
Find all entities whose incorporation date is in 2009
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.incorporation_date) CONTAINS toLower('2009') RETURN e
Find all entities without an incorporation date
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.incorporation_date) = toLower('') RETURN e
Find all entities that don't have an inactivation date
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.inactivation_date) = toLower('') RETURN e
Find all entities whose inactivation date is in 2015
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.inactivation_date) CONTAINS toLower('2015') RETURN e
Find all entities whose inactivation date is in 2020
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.inactivation_date) CONTAINS toLower('2020') RETURN e
Find all entities whose inactivation date is in %date%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.inactivation_date) CONTAINS toLower('%date%') RETURN e
Finds all entities whose service provider is 'Panama Papers'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.service_provider) CONTAINS toLower('Panama Papers') RETURN e
Finds all entities whose service provider is 'Offshore Leaks'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.service_provider) CONTAINS toLower('Offshore Leaks') RETURN e
Finds all entities whose service provider is %provider%.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.service_provider) CONTAINS toLower('%provider%') RETURN e
Finds all entities whose service provider is '%provider%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.service_provider) CONTAINS toLower('%provider%') RETURN e
Finds all entities whose status is 'Active'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.status) CONTAINS toLower('Active') RETURN e
Finds all entities whose status is '%status%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.status) CONTAINS toLower('%statut%') RETURN e
Finds all entities whose status is %status%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.status) CONTAINS toLower('%statut%') RETURN e
Find all entities without status
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity) WHERE toLower(e.status) = toLower('') RETURN e
Find the officer with the most companies
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[:officer_of]->(e:Entity) WITH o, count(e) as count ORDER BY count DESC RETURN o LIMIT 1
Find the 5 entities with the most officers
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)<-[:officer_of]-(:Officer) WITH e, count(*) as count ORDER BY count DESC RETURN e LIMIT 5
Find the intermediary with the most entities
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (i:Intermediary)-[:intermediary_of]->(e:Entity) WITH i, count(e) as count ORDER BY count DESC RETURN i LIMIT 1
Find the officer with the most entities from the country France
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[:officer_of]->(e:Entity) WHERE toLower(e.countries) CONTAINS toLower('France') WITH o, count(e) as count ORDER BY count DESC RETURN o LIMIT 1
Finds the officer with the most entities in the country '%country%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[:officer_of]->(e:Entity) WHERE toLower(e.countries) CONTAINS toLower('%country%') WITH o, count(e) as count ORDER BY count DESC RETURN o LIMIT 1
Find the officer with the most country entities %country%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[:officer_of]->(e:Entity) WHERE toLower(e.countries) CONTAINS toLower('%country%') WITH o, count(e) as count ORDER BY count DESC RETURN o LIMIT 1
Find the 5 entities with most intermediaries
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)<-[:intermediary_of]-(:Intermediary) WITH e, count(*) as count ORDER BY count DESC RETURN e LIMIT 5
Find the entity with the most intermediaries in the country France
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)<-[:intermediary_of]-(:Intermediary) WHERE toLower(e.countries) CONTAINS toLower('France') WITH e, count(*) as count ORDER BY count DESC RETURN e LIMIT 1
Finds the entity with the most intermediaries in country '%country%'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)<-[:intermediary_of]-(:Intermediary) WHERE toLower(e.countries) CONTAINS toLower('%country%') WITH e, count(*) as count ORDER BY count DESC RETURN e LIMIT 1
Finds the entity with the most country intermediaries %country%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)<-[:intermediary_of]-(:Intermediary) WHERE toLower(e.countries) CONTAINS toLower('%country%') WITH e, count(*) as count ORDER BY count DESC RETURN e LIMIT 1
Find the entity with the most intermediaries with all its intermediaries
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (e:Entity)<-[:intermediary_of]-(i:Intermediary) WITH e, count(i) as count ORDER BY count DESC LIMIT 1 MATCH (e)<-[r:intermediary_of]-(i:Intermediary) RETURN e, r, i
Find the officer with the most entities with all its entities
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer)-[:officer_of]->(e:Entity) WITH o, count(e) as count ORDER BY count DESC LIMIT 1 MATCH (o)-[r:officer_of]->(e:Entity) RETURN o, r, e
Finds all nodes linked to the officer whose name contains 'Cahuzac'.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('Cahuzac') MATCH (o)-[r]-(n) RETURN o, r, n
Finds all nodes linked to the officer whose name contains 'Cahuzac' and the entities linked to these nodes.
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (o:Officer) WHERE toLower(o.name) CONTAINS toLower('Cahuzac') MATCH (o)-[r]-(n) MATCH (n)<-[r2]-(e:Entity) RETURN o, r, n, r2, e
Finds the node with the most relations and returns all its relations
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n)-[r]-(m) WITH n, count(r) as count ORDER BY count DESC LIMIT 1 MATCH (n)-[r]-(m) RETURN n, r, m
Finds all nodes
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) RETURN n
Find all nodes and their relationships
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n)-[r]-(m) RETURN n, r, m
Finds all nodes with id 1
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) WHERE n.node_id = 1 RETURN n
Finds all nodes with id 2
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) WHERE n.node_id = 2 RETURN n
Finds all nodes with id 3
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) WHERE n.node_id = 3 RETURN n
Finds all nodes with id %id%
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n) WHERE n.node_id = %id% RETURN n
Find all Officers who have an entity in France
Node properties are the following: ":Entity {countries: STRING, lastEditTimestamp: STRING, ibcRUC: STRING, valid_until: STRING, country_codes: STRING, service_provider: STRING, address: STRING, inactivation_date: STRING, struck_off_date: STRING, status: STRING, jurisdiction_description: STRING, incorporation_date: STRI...
MATCH (n:Officer)-[r:officer_of]->(m:Entity) WHERE toLower(m.countries) CONTAINS toLower('France') RETURN n, r, m