neo4j-graph-examples / twitter-v2

Explore a social network with Neo4j's Twitter data

Home Page:https://sandbox.neo4j.com/?usecase=twitter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

twitter

Twitter Graph Example

Description: Explore a social network with Neo4j’s Twitter data

model
Figure 1. Model
example
Figure 2. Example
Example Query:
MATCH (u:User {screen_name: $screenName})<-[r:MENTIONS]-(t:Tweet)-[r2:TAGS]->(h:Hashtag)
RETURN h.name as hashtag

Setup

This is for Neo4j version: 4.0

The database is also available on https://demo.neo4jlabs.com:7473

Username "twitter", password: "twitter", database: "twitter"

Rendered guide available via: :play https://guides.neo4j.com/sandbox/twitter/index.html

Load graph data via the following:

Dump file: data/twitter-40.dump

  • Drop the file into the Files section of a project in Neo4j Desktop. Then choose the option to Create new DBMS from dump option from the file options.

  • Use the neo4j-admin tool to load data from the command line with the command below.

bin/neo4j-admin load --from data/twitter-40.dump [--database "database"]

Code Examples

GraphQL API

See /graphql directory for Node.js GraphQL API server example using @neo4j/graphql

Feedback

Feel free to submit issues or pull requests for improvement on this repository.

About

Explore a social network with Neo4j's Twitter data

https://sandbox.neo4j.com/?usecase=twitter


Languages

Language:JavaScript 56.2%Language:Go 16.4%Language:Java 11.1%Language:C# 9.8%Language:Python 5.5%Language:Shell 1.0%