{"id":18009585,"url":"https://github.com/thedanielforum/arangodb","last_synced_at":"2025-07-22T04:34:47.038Z","repository":{"id":100224240,"uuid":"85158506","full_name":"thedanielforum/arangodb","owner":"thedanielforum","description":null,"archived":false,"fork":false,"pushed_at":"2017-05-09T10:04:17.000Z","size":18,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-04T12:34:06.623Z","etag":null,"topics":["arangodb","database-driver","golang"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thedanielforum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-16T06:01:20.000Z","updated_at":"2019-03-11T07:31:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a0f8214-2293-40c0-83ca-c90828bdf9e8","html_url":"https://github.com/thedanielforum/arangodb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thedanielforum/arangodb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedanielforum%2Farangodb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedanielforum%2Farangodb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedanielforum%2Farangodb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedanielforum%2Farangodb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thedanielforum","download_url":"https://codeload.github.com/thedanielforum/arangodb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedanielforum%2Farangodb/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266428367,"owners_count":23926986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arangodb","database-driver","golang"],"created_at":"2024-10-30T02:09:50.183Z","updated_at":"2025-07-22T04:34:46.988Z","avatar_url":"https://github.com/thedanielforum.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# arangodb driver\n\nHow to install\n```bash\ngo get github.com/thedanielforum/arangodb\n```\n\nSet up a connection to arango\n```go\npackage main\n\nimport \"github.com/thedanielforum/arangodb\"\n\nvar conn *arangodb.Connection\n\nfunc main()  {\n\tvar err error\n\tconn, err = arangodb.NewConnection(\n\t\t\"127.0.0.1:8529\",\n\t\t\"root\",\n\t\t\"awstest123\",\n\t\t\u0026arangodb.Config{\n\t\t\tDebugMode: false,\n\t\t},\n\t)\n\tconn.SetDB(\"test\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n}\n```\n\nGet one document\n```go\nvar vid *Videos\nerr = connection.NewQuery(`FOR x IN %s RETURN x`, \"videos\").One(\u0026vid)\nif err != nil {\n\tpanic(err)\n}\n```\n\nGet all documents from query\n```go\nvar vids []Video\nerr = connection.NewQuery(`FOR x IN %s RETURN x`, \"videos\").All(\u0026vids)\nif err != nil {\n\tpanic(err)\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthedanielforum%2Farangodb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthedanielforum%2Farangodb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthedanielforum%2Farangodb/lists"}