<?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="FS-4166_mel_thomas_access_to_sme_labels:1" author="durukov">
        <neo4j:cypher>
            <![CDATA[
                MATCH (i:Identity {id: '4b1f4019-9854-441a-aea8-9a137e9c857c' })-[:HAS_PROFILE]-(profile:Profile {profileType: "AudienceProfile"}),
                    (v1:Vendor {id: 34536 }),
                    (v2:Vendor {id: 779011 }),
                    (v3:Vendor {id: 34519 })
                MERGE (profile)-[:HAS_ACCESS_TO]->(v1)
                MERGE (profile)-[:HAS_ACCESS_TO]->(v2)
                MERGE (profile)-[:HAS_ACCESS_TO]->(v3)
            ]]>
        </neo4j:cypher>
    </changeSet>
</databaseChangeLog>
