You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DATACOUCH-533 assumes fields named 'id' are document id's. As such they are removed from the data to be used as the "key".
When a nested document - such as Submission in the User object - contains an 'id', it is also removed from the data.
public class User {
private String id;
private String username;
private List<Submission> submissions;
}
public class Submission {
private final String id;
private final String userId;
private final String talkId;
}