We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version ODB : 2.2.31
**** I Apologise for my english ****
Hey guys, i need your help. I want to get this element
I try with a request : //idLogin = #93:11 retour.ridMyConf = gdb.command("sql", "SELECT out('MyConf') FROM Logins WHERE @rid = " + idLogin)
retour.ridMyConf = gdb.command("sql", "SELECT out('MyConf') FROM Logins WHERE @rid = " + idLogin)
My request return this : "ridMyConf ": [ { "@type": "d", "@rid": "#-2:0", "@version": 0, "out": [ "#116:19", "#113:122", "#114:121" ], "@fieldTypes": "out=z" } ],
"ridMyConf ": [ { "@type": "d", "@rid": "#-2:0", "@version": 0, "out": [ "#116:19", "#113:122", "#114:121" ], "@fieldTypes": "out=z" } ],
i get "out" with this : ridMyConf[0].getProperty('out') but i can"t use loop because is an Object
ridMyConf[0].getProperty('out')
I try to use getVertices() but i don't know how use correctly i don't found any example in javascript
Have you any idea to how get getProperty ?
Find regards,
Funky
The text was updated successfully, but these errors were encountered:
I found solution juste replace ridMyConf[0].getProperty('out') to ridMyConf[0].getRecord().field("out") And now i can get a array
ridMyConf[0].getRecord().field("out")
Sorry, something went wrong.
No branches or pull requests
Version ODB : 2.2.31
**** I Apologise for my english ****
Hey guys, i need your help. I want to get this element
I try with a request :
//idLogin = #93:11
retour.ridMyConf = gdb.command("sql", "SELECT out('MyConf') FROM Logins WHERE @rid = " + idLogin)
My request return this :
"ridMyConf ": [ { "@type": "d", "@rid": "#-2:0", "@version": 0, "out": [ "#116:19", "#113:122", "#114:121" ], "@fieldTypes": "out=z" } ],
i get "out" with this :
ridMyConf[0].getProperty('out')
but i can"t use loop because is an ObjectI try to use getVertices() but i don't know how use correctly i don't found any example in javascript
Have you any idea to how get getProperty ?
Find regards,
Funky
The text was updated successfully, but these errors were encountered: