Skip to content

Instantly share code, notes, and snippets.

@cosbor11
Created March 27, 2016 05:39
Show Gist options
  • Select an option

  • Save cosbor11/6fbf62abac1ba73cd82a to your computer and use it in GitHub Desktop.

Select an option

Save cosbor11/6fbf62abac1ba73cd82a to your computer and use it in GitHub Desktop.
Batch save relationship correlations using saveRelationshipsForEntity
// Associate the actors to the movie. First add the actor unique identifiers to a set //3
Set actorIds = new HashSet<>();
actorIds.add(1);
actorIds.add(2);
manager.saveRelationshipsForEntity(starWarsMovie, "actors", actorIds);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment