<?xml version="1.0" encoding="UTF-8"?>
<changelog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<changeset id="MAINT_kturner_publishing_access:1" author="kturner">
		<cypherquery>
			<![CDATA[
				MATCH (identity:Identity {email: 'kturner1@sonymusic-pde.com'})
				MERGE (increment:IncrementId {nodeName: 'Profile'})
				ON CREATE SET increment.id = 2
				ON MATCH SET increment.id = increment.id + 1
				CREATE (profile:Profile {
				profileId: (increment.id-1),
				profileType: 'PublishingProfile',
				profileName: 'Kath Turner',
				roles: ['admin'],
				fullCatalogAccess: true,
				uuid: apoc.create.uuid()
				})
				MERGE (identity)-[:HAS_PROFILE]->(profile)
				WITH profile
				MATCH (v:Vendor {id: '*'})
				MERGE (profile)-[:HAS_ACCESS_TO]->(v)
			]]>
		</cypherquery>
	</changeset>
</changelog>