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
db.ColExist("colname") returns false on each run - but attempt to create leads to error and blocks.
Session.DB -> intends to loadCollection into Database through the call Collections(&db) which is defined in collections.go
Collections(&db)
res, err = db.get("collection?excludeSystem=true", "", "GET", nil, db, db)
This call works well but db does not get initialized with expected Collections due to missing tag for json decoding.
The fix below worked.
type Database struct { Name string `json:"name"` Id string `json:"id"` Path string `json:"path"` System bool `json:"isSystem"` Collections []Collection `json:"result"` // FIX sess *Session baseURL string }
The text was updated successfully, but these errors were encountered:
hello @prasad83 , which arangodb version are you using and aranGO branch? Thanks!
Sorry, something went wrong.
No branches or pull requests
db.ColExist("colname") returns false on each run - but attempt to create leads to error and blocks.
Session.DB -> intends to loadCollection into Database through the call
Collections(&db)
which is defined in collections.goThis call works well but db does not get initialized with expected Collections due to missing tag for json decoding.
The fix below worked.
The text was updated successfully, but these errors were encountered: