identity-resolution/notebooks/identity-graph/nepytune/usecase/user_summary.py [97:108]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return (
        g.V(identity_group_id)
            .project("props", "persistent_ids")
                .by(valueMap(True))
                .by(
                    out("member")
                    .group()
                    .by()
                    .by(
                        project("props", "transient_ids")
                            .by(valueMap(True))
                            .by(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



identity-resolution/notebooks/identity-graph/nepytune/usecase/users_from_household.py [55:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return (
        g.V(identity_group_id)
            .project("props", "persistent_ids")
                .by(valueMap(True))
                .by(
                    out("member")
                    .group()
                    .by()
                    .by(
                        project("props", "transient_ids")
                            .by(valueMap(True))
                            .by(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



