ZEE
ZEE
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Same issue regardless of localhost 8182 added and server.bat restarted
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Yeah, I'll try that
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
It seems to be working fine for creating vertices and their "Types" / Classes.
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Ran server.bat
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
I haven't even been able to get their document example to work Expected 1 arguments but found 5.
MutableVertex elon = database.newVertex("User", "name", "Elon", "lastName", "Musk");
MutableVertex steve = database.newVertex("User", "name", "Steve", "lastName", "Jobs");
elon.newEdge("IsFriendOf", steve, true, "since", 2010);
MutableVertex elon = database.newVertex("User", "name", "Elon", "lastName", "Musk");
MutableVertex steve = database.newVertex("User", "name", "Steve", "lastName", "Jobs");
elon.newEdge("IsFriendOf", steve, true, "since", 2010);
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
I have been asking ArcadeDB as well, and I'm getting silence right now
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Do you know what the graph value is supposed to be set to with ArcadeDB?
graph = JanusGraphFactory.build().
set("storage.backend", "cql").
set("storage.hostname", "127.0.0.1").
open()
g = graph.traversal()
g.V().limit(1)
graph = JanusGraphFactory.build().
set("storage.backend", "cql").
set("storage.hostname", "127.0.0.1").
open()
g = graph.traversal()
g.V().limit(1)
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
They're suggesting to use https://docs.arcadedb.com/#_create-a-graph instead
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Is there a known fix for this? Did I make a mistake on some gremlin configuration I need to perform? Is there an additional adjustments I should be looking out for? (In the documents or in the code)
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
So it's new enough
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Yeah
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
<dependency>
<groupId>com.arcadedb</groupId>
<artifactId>arcadedb-gremlin</artifactId>
<version>23.4.1</version>
</dependency>
<dependency>
<groupId>com.arcadedb</groupId>
<artifactId>arcadedb-gremlin</artifactId>
<version>23.4.1</version>
</dependency>
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
I don't see the TinkerPop version listed in the release notes
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
I don't know, I'm already way past wit's end here. https://github.com/ArcadeData/arcadedb/releases/tag/23.4.1
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
public static void main(String[] args) throws IOException, CsvValidationException {
long startTime = System.nanoTime();
GraphTraversalSource g = traversal().withRemote(DriverRemoteConnection.using("localhost",8182,"g"));
logger.info(g.V().hasLabel("Entity").count());
logger.info(g.V().hasLabel("Entity").next().toString());
}
public static void main(String[] args) throws IOException, CsvValidationException {
long startTime = System.nanoTime();
GraphTraversalSource g = traversal().withRemote(DriverRemoteConnection.using("localhost",8182,"g"));
logger.info(g.V().hasLabel("Entity").count());
logger.info(g.V().hasLabel("Entity").next().toString());
}
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
They're from the response back to Java
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
The Gremlin Console and Server came pre-bundled with it
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
Which version of Gremlin was added to the bundle
45 replies
ATApache TinkerPop
Created by ZEE on 5/24/2023 in #questions
Don't know how to return count-value in Java
I don't know how to tell, I'm just using the latest ArcadeDB arcadedb-23.4.1
45 replies