String path,
Name primaryType,
Set<Name> mixinTypes,
Map<Name, Property> properties,
boolean queryable ) {
NodeKey key = nodeKey(docId);
NodeKey parentKey = nodeKey(parentDocId);
Path externalPath = pathMappings.getPathFactory().create(path);
// This external path in the connector may be projected into *multiple* nodes in the same or different workspaces ...
for (WorkspaceAndPath wsAndPath : pathMappings.resolveExternalPathToInternal(externalPath)) {
changesFor(wsAndPath).nodeCreated(key, parentKey, wsAndPath.getPath(), primaryType, mixinTypes, properties, queryable);
}