ArcadeData / arcadedb

ArcadeDB Multi-Model Database, one DBMS that supports SQL, Cypher, Gremlin, HTTP/JSON, MongoDB and Redis. ArcadeDB is a conceptual fork of OrientDB, the first Multi-Model DBMS. ArcadeDB supports Vector Embeddings.
https://arcadedb.com
Apache License 2.0
505 stars 63 forks source link

Does EMBEDDEDLIST exist? #259

Closed grimace closed 2 years ago

grimace commented 2 years ago

ArcadeDB Version: trunk build

JDK Version: 11.x

OS: OS/X

Expected behavior

create an embeddedlist in a Vertex ( to hold xhtml data )

Actual behavior

get an error:

Internal error No enum constant com.arcadedb.schema.Type.EMBEDDEDLIST

Steps to reproduce

use the studio to create a DB create a vertex like: CREATE VERTEX TYPE Article add a property to the vertex like: CREATE PROPERTY Article.media EMBEDDEDLIST STRING I'm not quite sure if this has been deprecated or if I have something wrong with my setup.

lvca commented 2 years ago

We still had some copy & paste from OrientDB docs. With ArcadeDB you can simply use LIST a a type instead of EMBEDDEDLIST. I already fixed the docs, should be online in a few minutes.

Try this:

CREATE PROPERTY Article.media LIST