identity-resolution/notebooks/identity-graph/nepytune/usecase/similar_audience.py [65:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return (
            g.V()
                .hasLabel("websiteGroup")
                .has("categoryCode", P.within(list(most_popular_categories.keys())))
                .out("links_to").in_("visited").dedup().in_("has_identity").dedup()
                .hasLabel("persistentId")
                .where(
                    out("has_identity").out("visited")
                           .has("url", P.neq(website_url))
                )
                .timeLimit(search_time_limit_in_seconds * 1000)
                .local(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



identity-resolution/notebooks/identity-graph/nepytune/usecase/similar_audience.py [191:202]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     return (
        g.V()
            .hasLabel("websiteGroup")
            .has("categoryCode", P.within(list(most_popular_categories.keys())))
            .out("links_to").in_("visited").dedup().in_("has_identity").dedup()
            .hasLabel("persistentId")
            .where(
            out("has_identity").out("visited")
                .has("url", P.neq(website_url))
        )
            .timeLimit(search_time_limit_in_seconds * 1000)
            .local(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



