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 |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 8