darthvader42 · @darthvader42
208 followers · 626 posts · Server sueden.social

Hey friends, is anyone aware of a function/procedure to read the contents of a file/url without further processing? I want to do something like: CREATE (:Person {name:'me', pgpkey: apoc.read.url('https://.../my.asc')})
Expectation is that the contents of the URL are stored as a property. Any hints?

#neo4j

Last updated 1 year ago

darthvader42 · @darthvader42
207 followers · 611 posts · Server sueden.social

After a really long pause I've contributed again to apoc for . Just a tiny change but it helps someone.
github.com/neo4j-contrib/neo4j

#neo4j

Last updated 1 year ago

darthvader42 · @darthvader42
207 followers · 611 posts · Server sueden.social

ouch Mr. customer, having accidentially lots of duplicated relationships combined with a variable path length match causes a explosion. anti-tip of the day

#neo4j

Last updated 1 year ago

Suhail · @suhail
11 followers · 124 posts · Server fosstodon.org

Can anyone recommend a reliable online resource for learning Neo4j? I'm open to both free and paid options. Any guidance would be greatly appreciated.

#neo4j #graphdb

Last updated 1 year ago

SEMANTiCS Conference · @semantics
60 followers · 65 posts · Server sigmoid.social

📢📢NEW BLOG POST FROM SPONSOR

We interviewed Neo4j and asked them a few questions regarding their main products, their role in the Semantic Web Community, and about their vision.

Read the interview here: 2023-eu.semantics.cc/page/news

#semanticsconf #neo4j #graphdatabase

Last updated 1 year ago

chasingmicrobes · @chasingmicrobes
338 followers · 114 posts · Server mstdn.science

If you're in Chicago Aug 10, I'll be giving a talk on building Python-centered workflows to search through terabytes of genomic data, along with and
at Chipy
chipy.org/meetings/230/

#nextflow #neo4j

Last updated 1 year ago

Alexander Erdl · @alekusi
15 followers · 29 posts · Server mastodon.bayern

OpenSanctions: An Open-Source Project About Financial Restrictions. I talked to Friedrich Lindenberg about investigative journalism and which tracks sanctions and financial restrictions on assets and individuals.
medium.com/p/f1dbdfea3e04

#opensanctions #neo4j #blog

Last updated 1 year ago

Adina Winterberry · @sunrisewinterberry
0 followers · 4 posts · Server toot.io

I just started my thesis on the topic of "Analyzing Mastodon's Decentralized Network: A Graph Database Visualisation and Network Analysis with Neo4j".

As I am new to Mastodon and currently testing the Mastodon API, do you have any tipps for me as to how to fetch public data with Python? Can you recommend some online ressources?

#networkanalysis #mastodon #neo4j

Last updated 1 year ago

Stoic · @engelbart
33 followers · 239 posts · Server qoto.org

Hello everyone!

In today's post, we'll discuss the data modeling and schema design for our Golang project, which focuses on analyzing a marketplace's purchase data. This analytical application will help us understand the relationships between sellers, products, and customers, as well as feedback provided by customers on their purchases. The marketplace operates in various locations, including countries and states.

Let's dive into the details of the data schema:

Node types:

Location: Represents a country or a state.

Seller: Contains attributes such as name, locations where the seller offers products, and feedback scores.

Product: Includes attributes like ID, price, and a relationship to its seller.

Customer: Has attributes like ID, location, and represents clients who ordered products and optionally provided feedback on their purchases.

Relationships:

Seller to Location: A many-to-many relationship, indicating the locations where a seller offers their products.

Product to Seller: A many-to-one relationship, connecting each product to its respective seller.

Customer to Product: A many-to-many relationship, representing the products purchased by customers.

Customer to Product (Feedback): A many-to-many relationship, where customers can provide feedback on the products they purchased.

With these node types and relationships in place, we can efficiently model our analytical application about marketplace purchases in a graph database. In the following posts, we'll explore different graph databases and evaluate how well they can handle our data model, in terms of installation, code samples, and performance.

Stay tuned for our next post, where we'll dive into EdgeDB and explore its potential for our Golang project. See you there!

```
classDiagram
Location "1" -- "many" Seller : Offers Products In
Seller "1" -- "many" Product : Sells
Customer "many" -- "many" Product : Purchased
Customer "many" -- "many" Product : Gave Feedback On

class Location {
+ID: Integer
+Name: String
}

class Seller {
+ID: Integer
+Name: String
+FeedbackScore: Float
}

class Product {
+ID: Integer
+Price: Float
}

class Customer {
+ID: Integer
+Location: String
}

Purchased --|> Customer
Purchased --|> Product
class Purchased {
+Count: Integer
}

GaveFeedbackOn --|> Customer
GaveFeedbackOn --|> Product
class GaveFeedbackOn {
+Score: Float
}
```

Copy the code above and paste it into the Mermaid Live Editor (mermaid-js.github.io/mermaid-l) or any other Mermaid-compatible diagramming tool to generate the updated schema diagram

#edgedb #golang #graph #schema_design #data_modeling #neo4j #dgraph

Last updated 1 year ago

Alexander Erdl · @alekusi
15 followers · 28 posts · Server mastodon.bayern

Cool to learn how GSK builds their for better clinical reporting Workflows

#knowledgegraph #graphsummit #lifescience #pharma #neo4j

Last updated 1 year ago

Goth'n'Bass · @gothnbass
133 followers · 1488 posts · Server linuxrocks.online

neo4cl now supports Bolt v4.34 and Neo4j 4.4.18.

Now I just need to find documentation for v5, and I can make it *really* modern!

#neo4j #commonlisp

Last updated 1 year ago

Collin Doering · @rekahsoft
80 followers · 428 posts · Server fosstodon.org

TIL the `guix graph` command has a backend that outputs [cypher queries](neo4j.com/docs/cypher-manual/c) (for use with [neo4j](neo4j.com/))

#guix #neo4j

Last updated 1 year ago

Alexander Erdl · @alekusi
15 followers · 27 posts · Server mastodon.bayern
Alexander Erdl · @alekusi
14 followers · 24 posts · Server mastodon.bayern

Is it already time for another episode of Going Meta? Seems like it! Join us next week for a new episode on and more! youtube.com/live/Aurp3eztRHM

#ontology #knowledgegraph #neo4j

Last updated 1 year ago

Beth Pariseau · @BPariseau
279 followers · 72 posts · Server hachyderm.io
Alexander Erdl · @alekusi
12 followers · 23 posts · Server mastodon.bayern

Are you into ? @mesirii uses BrightSky API an imports the data into AuraDB:
youtube.com/live/9vbdS5n_ccs

#weather #data #neo4j

Last updated 1 year ago

Michael Simons · @rotnroll666
788 followers · 928 posts · Server mastodon.social

Neo4j-Migrations 2.1.2 has been released: github.com/michael-simons/neo4

This is merely a bugfix release.

Neo4j-Migrations is a database tooling for .

#migration #neo4j

Last updated 1 year ago

Michael Simons · @rotnroll666
788 followers · 919 posts · Server mastodon.social

Today we released Cypher-DSL 2023.1.0, the first version that does include a bit of semantic analysis of the statements being built or parsed with its parser module.

This will allow for additional verification, checks and possible mappers in Spring Data and other modules.

Big shout-out to @lukaseder for feedback and input and ofc helping us getting a PoC to work.

Links in the release notes:

github.com/neo4j-contrib/cyphe

#cypher #neo4j #sql2cypher

Last updated 1 year ago

Foojay.io · @foojay
545 followers · 232 posts · Server foojay.social

It's the 9th part of the awesome series by Jennifer Reif on Foojay :foojay: Today, this time join her to successfully create an orchestrated system with Compose!

foojay.io/today/journeys-in-ja

#microservices #neo4j #docker #foojaytip

Last updated 1 year ago

Alexander Erdl · @alekusi
12 followers · 22 posts · Server mastodon.bayern

Next week we are exploring mapping and how to visualise and mitigate attack paths with and - Tune in: youtube.com/live/2F-xx4LcTng

#infrastructure #akamai #neo4j

Last updated 1 year ago