Blonde Maybe
ATApache TinkerPop
•Created by Blonde Maybe on 4/28/2023 in #questions
Simple production database alternatives for small Gremlin.Net applications
Hi @spmallette ! 😊 That is some good information to add.
We have very few hard requirements as of now. We need to be able to do live-queries (with "UI-compatible response times") on a small, sparsely connected graph. (We are modelling Electrical Utility Grids for an startup/innovation project.)
At the moment we are using Janusgraph for development, with no special features apart from vertices and edges with properties and labels. Ideally the DB would support VertexIds of UUID type, but we are currently solving that by a custom property with index and uniqueness constraint in JanusGraph.
5 replies
ATApache TinkerPop
•Created by Blonde Maybe on 3/27/2023 in #questions
Order group count result alphabetically
Thank you for the quick response! This worked excellently in G.V() and I now found the chapter in your book. 🙌
Do you happen to know how
local
or keys
are utilised in Gremlin.Net? I cannot seem to find an Enum-type (like T.Label
for local
or keys
).9 replies
ATApache TinkerPop
•Created by Blonde Maybe on 3/15/2023 in #questions
What is the use of adding type information to e.g ElementMap<type> in Gremlin.Net?
@Florian Hockmann I'm with you on the reasoning. We are a team of developers working with the Gremlin.Net APis at the moment. If we find good solutions for these kinds of things we'll try to add them here/as issues/as PRs to improve overall experience.
I must say, you are doing amazing work! We wouldn't have decided on trying Gremlin.Net if it were not for your quick responses and works of many others I see here on Discord. 🙂
10 replies
ATApache TinkerPop
•Created by Blonde Maybe on 3/15/2023 in #questions
Dotnet best practice: converting Vertex properties to Model
7 replies
ATApache TinkerPop
•Created by Blonde Maybe on 3/15/2023 in #questions
What is the use of adding type information to e.g ElementMap<type> in Gremlin.Net?
This is my observation as well. Would it perhaps be just as well to remove the type all together? Default it to
object
? I find the IDictionary-like types quite distracting in Gremlin.Net (and difficult for beginners), so I would argue a case of removing them until a better solution (like an ORM) is implemented.10 replies
ATApache TinkerPop
•Created by Blonde Maybe on 3/15/2023 in #questions
Dotnet best practice: converting Vertex properties to Model
Thank you, @triggan ! I have looked briefly into Gremlinq, but find that having an abstraction on top of Gremlin.Net - which itself is an abstraction on Gremlin - might make things difficult to navigate. 🙂
I will however look into how Gremlinq solves it and possibly make a custom solution.
Is there any plan of adding and ORM into Gremlin.Net in the future?
7 replies