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
I am currently migrating from code that was using 2.X.X to 3.X.X, I run into the following error when I try to create a property which has a minimum value.
constconf={...}// my server settings etcconstodb=newOrientDBClient({host: conf.server.host,port: conf.server.port});constserver=awaitodb.connect();awaitserver.createDatabase({name: conf.db.name,username: conf.server.user,password: conf.server.pass});constdb=awaitserver.session({name: conf.db.name,username: conf.db.user,password: conf.db.pass});consttestclass=awaitdb.class.create('testclass','V');constprop=awaittestclass.property.create({name: 'testprop1',type: 'integer',min: 0});
Am I supposed to be using different syntax in v3.X.X ?
The text was updated successfully, but these errors were encountered:
Version Information
OrientJS: v3.0.1
OrientDB: v3.0.6
node: v8.11.2
Steps to reproduce
I am currently migrating from code that was using 2.X.X to 3.X.X, I run into the following error when I try to create a property which has a minimum value.
Am I supposed to be using different syntax in v3.X.X ?
The text was updated successfully, but these errors were encountered: