#tinkerpop — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #tinkerpop, aggregated by home.social.
-
I recently got married and this is what we got from my awesome colleagues at G DATA: #tinkerpop #oss
Thank you so much guys!
-
Three years ago I was learning Gremilin for TinkerPop, since I really want to use a graph database for this project and I hate Cypher.
Now I'm looking at this code and going "how the fuck does this work, again?”
-
It‘s been interesting having serious opportunities to get to know both #Cypher and now #TinkerPop for #dataScience this year. It‘s early days understanding their concrete application cases and powers, but it‘s amazing how much power these tools have - and how that helps.
(And I am glad to a class I took on a whim of interest, introducing me to knowledge graph as an idea. Otherwise I might not have looked to these tools like that.)
-
follow-up question on datascience.meta.stackexchange.com after original Stack Overflow question closed "off-topic":
https://datascience.meta.stackexchange.com/q/2658/153859
#stackoverflow #tinkerpop #gremlin #graphtheory #graphdatabase #graphdb #vertexdb #janusdb #semanticweb #knowledgeweb #knowledgegraph #epistemology #datascience
-
updated in response to comments with motivating example and illustrative diagram:
https://stackoverflow.com/revisions/76947672/2
#stackoverflow #tinkerpop #gremlin #graphtheory #graphdatabase #graphdb #vertexdb #janusdb #semanticweb #knowledgeweb #knowledgegraph #epistemology #datascience
-
#stackoverflow: how to represent competing or concurrent "realities" in TinkerPop (or other graph/vertex databases)
https://stackoverflow.com/q/76947672/155090
#tinkerpop #gremlin #graphtheory #graphdatabase #graphdb #vertexdb #janusdb #semanticweb #knowledgeweb #knowledgegraph #epistemology #datascience
-
Anyone know if there is a good framework or something out there that implements a distributed Graph Database using Tinkerpop 3.x?
#Tinkerpop3 #Tinkerpop #GraphDB #Graphs #Graphtheory #Science
-
I really REALLY love the look of the new site I just launched for my Goblin project.
Its an Open-source :opensource: OGM (Object-Graph Mapper) for Python.
-
I just did my first release as the new project owner for Goblin! It's an open-source :opensource: OGM for Graph Databases that sits on top of Tinkerpop.
Check it out here:
https://git.qoto.org/goblin-ogm/goblin#Python #Tinkerpop #Gremlin #Tinkerpop3 #GraphDB #Goblin #Programming #CS #IT #Software #OpenSource #OSS #FOSS
-
Woot just released version 3.3.2 of aiogremlin, a open-source :opensource: Gremlin DSL for python.
https://pypi.org/project/aiogremlin/
#Python #Tinkerpop #Gremlin #Tinkerpop3 #GraphDB #Goblin #Programming #CS #IT #Software #OpenSource #OSS #FOSS
-
So now that I took over the Goblin open-source :opensource: project I started cleaning up the README and other repo documentation. Its amazing how just a little bit of time and attention can make a project look significantly more professional. Logo only cost me 7 bucks too!
https://git.qoto.org/goblin-ogm/aiogremlin
https://github.com/goblin-ogm/aiogremlin
#Python #Tinkerpop #Gremlin #Tinkerpop3 #GraphDB #Goblin #Programming #CS #IT #Software #OpenSource #OSS #FOSS
-
Just did a release of version 3.3.1 of #Ferma.
Ferma is an :opensource: open-source ORM/OGM for Graph Databases written in Java.
Check it out here: https://git.qoto.org/Ferma/Ferma
#Ferma #GrapgDB #nosql #Gremlin #Tinkerpop #graphDatabase #GraphTheory
-
Just did a release of version 3.3.1 of #Ferma.
Ferma is an :opensource: open-source ORM/OGM for Graph Databases written in Java.
Check it out here: https://git.qoto.org/Ferma/Ferma
#Ferma #GrapgDB #nosql #Gremlin #Tinkerpop #graphDatabase #GraphTheory
-
So Gremlin Python ( Tinkerpop 3 ) does not have transaction support. So only way to get transaction like behavior is to make sure you do everything in a single database traversal.
Because I am writing an ORM / OGM model as my base that means I needed to implement something that looks like optimistic locking all my own (only works on immutable write-only graphs). Its a huge pain in the ass.
Anyway after half a day I finally figured out this is the traversal I need to resolve my optimistic lock when creating a single new node in the DB:
session.g.E().has('dirty',1).aggregate('x').fold().V().has('dirty',1).aggregate('x').choose(__.V().hasLabel('account').has("fingerprint", "DEADF00D").hasNot('dirty').count().is_(0), __.select('x').unfold().properties('dirty').drop()).iterate()
#programming #coding #Tinkerpop #tinkerpop3 #graphdb #graphtheory #python #gremlin