}
String edgeId = TheMovieDbOntology.getHasImageEdgeId(key.getId(), key.getImagePath());
String title = key.getTitle();
String vertexId = TheMovieDbOntology.getImageVertexId(key.getImagePath());
VertexBuilder m = prepareVertex(vertexId, visibility);
LumifyProperties.CONCEPT_TYPE.addPropertyValue(m, MULTI_VALUE_KEY, conceptType, visibility);
LumifyProperties.SOURCE.addPropertyValue(m, MULTI_VALUE_KEY, SOURCE, visibility);
StreamingPropertyValue rawValue = new StreamingPropertyValue(new ByteArrayInputStream(value.getBytes()), byte[].class);
rawValue.store(true);
rawValue.searchIndex(false);
LumifyProperties.RAW.addPropertyValue(m, MULTI_VALUE_KEY, rawValue, visibility);
LumifyProperties.TITLE.addPropertyValue(m, MULTI_VALUE_KEY, "Image of " + title, visibility);
Vertex profileImageVertex = m.save(authorizations);
VertexBuilder sourceVertexMutation = prepareVertex(sourceVertexId, visibility);
LumifyProperties.ENTITY_IMAGE_VERTEX_ID.addPropertyValue(sourceVertexMutation, MULTI_VALUE_KEY, profileImageVertex.getId(), visibility);
Vertex sourceVertex = sourceVertexMutation.save(authorizations);
addEdge(edgeId, sourceVertex, profileImageVertex, edgeLabel, visibility, authorizations);
context.getCounter(TheMovieDbImportCounters.IMAGES_PROCESSED).increment(1);
}