Clients: ravelin
Summary: A proposition on where and how we could keep some basic client info. Reviewers: buda, mislav.bradac, teon.banek, mferencevic Reviewed By: buda Subscribers: dtomicevic, pullbot Differential Revision: https://phabricator.memgraph.io/D873
This commit is contained in:
5
customers/ravelin/fraud_detection.oc
Normal file
5
customers/ravelin/fraud_detection.oc
Normal file
@@ -0,0 +1,5 @@
|
||||
WITH tointeger(rand() * 40000000) AS from_id
|
||||
MATCH (from:Node {id : from_id}) WITH from
|
||||
MATCH path = (from)-[*bfs..50 (e, n | degree(n) < 50)]->(to) WITH path LIMIT 10000 WHERE to.fraudulent
|
||||
RETURN path, size(path)
|
||||
|
||||
31
customers/ravelin/snapshot_gen_config.json
Normal file
31
customers/ravelin/snapshot_gen_config.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"indexes":[
|
||||
"Node.id"
|
||||
],
|
||||
"nodes":[
|
||||
{
|
||||
"count":40000000,
|
||||
"labels":[
|
||||
"Node"
|
||||
],
|
||||
"properties":{
|
||||
"id":{
|
||||
"type":"counter",
|
||||
"param":"Node.id"
|
||||
},
|
||||
"fraudulent":{
|
||||
"type":"bernoulli",
|
||||
"param":0.0005
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"edges":[
|
||||
{
|
||||
"count":80000000,
|
||||
"from":"Node",
|
||||
"to":"Node",
|
||||
"type":"Edge"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user