Slide 1

Slide 1 text

Introduction Neo4j Powered by Rabbit 2.1.9 Introduction Neo4j Kunihiko Ito 2017/01/11

Slide 2

Slide 2 text

Introduction Neo4j Powered by Rabbit 2.1.9 あけま して

Slide 3

Slide 3 text

Introduction Neo4j Powered by Rabbit 2.1.9 おめでと うござい ます

Slide 4

Slide 4 text

Introduction Neo4j Powered by Rabbit 2.1.9 @kunitoo です

Slide 5

Slide 5 text

Introduction Neo4j Powered by Rabbit 2.1.9 本年もよろ しくお願い いたします

Slide 6

Slide 6 text

Introduction Neo4j Powered by Rabbit 2.1.9 本日は参加 できずすみ ません

Slide 7

Slide 7 text

Introduction Neo4j Powered by Rabbit 2.1.9 ビデオレ ターで失 礼します

Slide 8

Slide 8 text

Introduction Neo4j Powered by Rabbit 2.1.9 今年 の

Slide 9

Slide 9 text

Introduction Neo4j Powered by Rabbit 2.1.9 カレンダ ーはいか がですか?

Slide 10

Slide 10 text

Introduction Neo4j Powered by Rabbit 2.1.9 5月を担 当しまし た

Slide 11

Slide 11 text

Introduction Neo4j Powered by Rabbit 2.1.9 Neo4j

Slide 12

Slide 12 text

Introduction Neo4j Powered by Rabbit 2.1.9 使ったこ とありま すか?

Slide 13

Slide 13 text

Introduction Neo4j Powered by Rabbit 2.1.9 カレンダ ーでは

Slide 14

Slide 14 text

Introduction Neo4j Powered by Rabbit 2.1.9 グラフ データ

Slide 15

Slide 15 text

Introduction Neo4j Powered by Rabbit 2.1.9 操作する クエリ言 語

Slide 16

Slide 16 text

Introduction Neo4j Powered by Rabbit 2.1.9 Cypher

Slide 17

Slide 17 text

Introduction Neo4j Powered by Rabbit 2.1.9 紹介して います

Slide 18

Slide 18 text

Introduction Neo4j Powered by Rabbit 2.1.9 自分の知っているユーザーを 見つける場合 MATCH (me)-[:KNOWS]->(known_user) RETURN known_user;

Slide 19

Slide 19 text

Introduction Neo4j Powered by Rabbit 2.1.9 更に知っているユーザーの知 っているユーザーは以下のよ うに書けます MATCH (me)-[:KNOWS*2..2]->(known_known_user) RETURN known_known_user;

Slide 20

Slide 20 text

Introduction Neo4j Powered by Rabbit 2.1.9 AAに見えてきませんか? ()-[]->()

Slide 21

Slide 21 text

Introduction Neo4j Powered by Rabbit 2.1.9 普段使う RDBとは 違う

Slide 22

Slide 22 text

Introduction Neo4j Powered by Rabbit 2.1.9 データ操作 がおもしろ いので

Slide 23

Slide 23 text

Introduction Neo4j Powered by Rabbit 2.1.9 ぜひ利用 してみて ください