You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> create database test
Database 'test' created
{test}> import database file:///mnt/output.graphson
then if i run the gremlin query g.V() i get:
"@rid","@type","comment","label","@in","@out"
"#1:0","http://www.w3.org/2000/01/rdf-...","""The class of RDF datatypes.""","""Datatype""","0","0"
"#25:0","owl:Thing","<null>","<null>","0","0"
"#28:0","owl:Thing","<null>","<null>","0","0"
notice how the @rid column does not have the id that was used in the graphson file.
i expect the id in the graphson file to be preserved.
noticed how the gremlin console preserves the id in the graphson file.
it seems arcade does not like ids that the gremlin console accepts:
Set language to gremlin
{test}> g.V('http://www.w3.org/2000/01/rdf-schema#Datatype')
ERROR:
java.lang.IllegalArgumentException: The RID 'http://www.w3.org/2000/01/rdf-schema#Datatype' is not valid
at com.arcadedb.database.RID.<init>(RID.java:71)
at com.arcadedb.gremlin.ArcadeGraph.vertices(ArcadeGraph.java:311)
at org.apache.tinkerpop.gremlin.process.traversal.step.map.GraphStep.lambda$new$0(GraphStep.java:70)
at org.apache.tinkerpop.gremlin.process.traversal.step.map.GraphStep.processNextStart(GraphStep.java:158)
at org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep.hasNext(AbstractStep.java:155)
at org.apache.tinkerpop.gremlin.process.traversal.util.DefaultTraversal.hasNext(DefaultTraversal.java:192)
at com.arcadedb.gremlin.ArcadeGremlin$2.hasNext(ArcadeGremlin.java:112)
at com.arcadedb.query.sql.executor.IteratorResultSet.hasNext(IteratorResultSet.java:37)
at com.arcadedb.console.Console.executeSQL(Console.java:625)
at com.arcadedb.console.Console.execute(Console.java:273)
at com.arcadedb.console.Console.parse(Console.java:742)
at com.arcadedb.console.Console.interactiveMode(Console.java:131)
at com.arcadedb.console.Console.execute(Console.java:185)
at com.arcadedb.console.Console.main(Console.java:148)
running:
ArcadeDB Server v24.8.1-SNAPSHOT
in the docker image
The text was updated successfully, but these errors were encountered:
given this graphson file:
output.graphson
then if i run the gremlin query
g.V()
i get:notice how the
@rid
column does not have theid
that was used in the graphson file.i expect the
id
in the graphson file to be preserved.the gremlin console preserves that
id
:noticed how the gremlin console preserves the
id
in the graphson file.it seems arcade does not like
id
s that the gremlin console accepts:running:
ArcadeDB Server v24.8.1-SNAPSHOT
in the docker image
The text was updated successfully, but these errors were encountered: