<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
    xmlns:neo4j="http://www.liquibase.org/xml/ns/dbchangelog-ext"
    xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"
>
    <changeSet id="AS-3736-remove_collabs_banking_access:1" author="jbrooks">
        <neo4j:cypher>
            <![CDATA[
                MATCH (v:Vendor)-[:OWNS]-(c:Collaborator)-[:HAS_ACCESS_TO]-(p:Profile)-[:HAS_PROFILE]-(i:Identity)
                WHERE p.profileType = 'DocumentsProfile'
                AND v.vendorId in [78608,33868,25153,788286,76118,781892,30012,28296,24483,785680,790251,25823,33438,26057,77270,790824,789022,27963,28906,19292,791615,793377,26684,35938,784778,33695,26651,35415,33377,76631,82288,35787,29947,72019,24584,791108,17435,794017,32496,792176,28704]
                DETACH DELETE p
                RETURN *
            ]]>
        </neo4j:cypher>
    </changeSet>
</databaseChangeLog>
