Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Introduction Neo4j oblove calendar
Search
Kunihiko Ito
January 11, 2017
Technology
0
1.3k
Introduction Neo4j oblove calendar
2017 アジャイル事業部 年始のご挨拶のビデオレターで使ったスライド
https://esminc.connpass.com/event/47039/
Kunihiko Ito
January 11, 2017
Tweet
Share
More Decks by Kunihiko Ito
See All by Kunihiko Ito
Using Ractor
kunitoo
0
98
introduction neo4j
kunitoo
0
110
vim operation and my hotkey
kunitoo
0
130
アジャイルソフトウェア開発の概要と現場での実践
kunitoo
0
1.9k
Introduction of neo4j
kunitoo
0
1.8k
Ruby 2.3 のてざわり
kunitoo
2
410
てさぐれ!受託もの
kunitoo
1
520
Hypermicrodata Client
kunitoo
0
60
1年かけてgemを1つ作りました
kunitoo
3
1.4k
Other Decks in Technology
See All in Technology
第3回Snowflake女子会_LT登壇資料(合成データ)_Taro_CCCMK
tarotaro0129
0
180
.NET 9 のパフォーマンス改善
nenonaninu
0
710
AWS re:Invent 2024 ふりかえり
kongmingstrap
0
130
日本版とグローバル版のモバイルアプリ統合の開発の裏側と今後の展望
miichan
1
130
Amazon Kendra GenAI Index 登場でどう変わる? 評価から学ぶ最適なRAG構成
naoki_0531
0
100
re:Invent をおうちで楽しんでみた ~CloudWatch のオブザーバビリティ機能がスゴい!/ Enjoyed AWS re:Invent from Home and CloudWatch Observability Feature is Amazing!
yuj1osm
0
120
権威ドキュメントで振り返る2024 #年忘れセキュリティ2024
hirotomotaguchi
2
730
新機能VPCリソースエンドポイント機能検証から得られた考察
duelist2020jp
0
210
コンテナセキュリティのためのLandlock入門
nullpo_head
2
320
マルチプロダクト開発の現場でAWS Security Hubを1年以上運用して得た教訓
muziyoshiz
2
2.2k
【re:Invent 2024 アプデ】 Prompt Routing の紹介
champ
0
140
アップデート紹介:AWS Data Transfer Terminal
stknohg
PRO
0
180
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.9k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
jQuery: Nuts, Bolts and Bling
dougneiner
61
7.5k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.9k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
A better future with KSS
kneath
238
17k
Statistics for Hackers
jakevdp
796
220k
It's Worth the Effort
3n
183
28k
Code Review Best Practice
trishagee
65
17k
Transcript
Introduction Neo4j Powered by Rabbit 2.1.9 Introduction Neo4j Kunihiko Ito
2017/01/11
Introduction Neo4j Powered by Rabbit 2.1.9 あけま して
Introduction Neo4j Powered by Rabbit 2.1.9 おめでと うござい ます
Introduction Neo4j Powered by Rabbit 2.1.9 @kunitoo です
Introduction Neo4j Powered by Rabbit 2.1.9 本年もよろ しくお願い いたします
Introduction Neo4j Powered by Rabbit 2.1.9 本日は参加 できずすみ ません
Introduction Neo4j Powered by Rabbit 2.1.9 ビデオレ ターで失 礼します
Introduction Neo4j Powered by Rabbit 2.1.9 今年 の
Introduction Neo4j Powered by Rabbit 2.1.9 カレンダ ーはいか がですか?
Introduction Neo4j Powered by Rabbit 2.1.9 5月を担 当しまし た
Introduction Neo4j Powered by Rabbit 2.1.9 Neo4j
Introduction Neo4j Powered by Rabbit 2.1.9 使ったこ とありま すか?
Introduction Neo4j Powered by Rabbit 2.1.9 カレンダ ーでは
Introduction Neo4j Powered by Rabbit 2.1.9 グラフ データ
Introduction Neo4j Powered by Rabbit 2.1.9 操作する クエリ言 語
Introduction Neo4j Powered by Rabbit 2.1.9 Cypher
Introduction Neo4j Powered by Rabbit 2.1.9 紹介して います
Introduction Neo4j Powered by Rabbit 2.1.9 自分の知っているユーザーを 見つける場合 MATCH (me)-[:KNOWS]->(known_user)
RETURN known_user;
Introduction Neo4j Powered by Rabbit 2.1.9 更に知っているユーザーの知 っているユーザーは以下のよ うに書けます MATCH
(me)-[:KNOWS*2..2]->(known_known_user) RETURN known_known_user;
Introduction Neo4j Powered by Rabbit 2.1.9 AAに見えてきませんか? ()-[]->()
Introduction Neo4j Powered by Rabbit 2.1.9 普段使う RDBとは 違う
Introduction Neo4j Powered by Rabbit 2.1.9 データ操作 がおもしろ いので
Introduction Neo4j Powered by Rabbit 2.1.9 ぜひ利用 してみて ください