Coder Social home page Coder Social logo

neo4j-linkedin's Introduction

Neo4j - LinkedIn REST API

After listening many times about graph databases, I was thinking in possibles scenarios where I could take advantage of them. Then I came up with this idea that could be useful in two possibles ways:

  • Keep track of your profile viewers, would allow you to store who visited your profile and the last time they did it.
  • If used globally, with a common database, the people could register their interactions and this way you could see if a certain recruiter is really interested with you or if it's speaking with everybody. So you could use it as spam filter.

Example graph

For the graph shown above, if we request Sam's profile viewers, we would get the following response:

[
    {
        "Person": {
            "Name": "Olivia",
            "Skills": null
        },
        "When": "2022-08-10T18:35:42.937Z"
    },
    {
        "Person": {
            "Name": "Tom",
            "Skills": null
        },
        "When": "2022-08-10T17:36:41.052Z"
    }
]

Has been a great experience and the Cypher Query Language it's simple and very cool!

MATCH (n)-[r:VIEWED_PROFILE]->(p:Person {name: $name})
RETURN n.name, n.skills, r.datetime

neo4j-linkedin's People

Contributors

tonisanta avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.