{"id":30411203,"url":"https://github.com/kthecoder/kuzugd","last_synced_at":"2026-03-05T23:03:00.793Z","repository":{"id":296331893,"uuid":"992893442","full_name":"kthecoder/KuzuGD","owner":"kthecoder","description":"A GraphDB using Kuzu for Godot","archived":false,"fork":false,"pushed_at":"2025-08-22T23:03:22.000Z","size":14794,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-14T22:48:39.470Z","etag":null,"topics":["cypher","godot","godot4","graphdb","kuzu"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kthecoder.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2025-05-29T22:02:14.000Z","updated_at":"2025-08-22T23:03:26.000Z","dependencies_parsed_at":"2025-06-03T04:17:57.266Z","dependency_job_id":null,"html_url":"https://github.com/kthecoder/KuzuGD","commit_stats":null,"previous_names":["kthecoder/kuzugd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kthecoder/KuzuGD","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kthecoder%2FKuzuGD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kthecoder%2FKuzuGD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kthecoder%2FKuzuGD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kthecoder%2FKuzuGD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kthecoder","download_url":"https://codeload.github.com/kthecoder/KuzuGD/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kthecoder%2FKuzuGD/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30154290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"ssl_error","status_checked_at":"2026-03-05T22:39:24.771Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cypher","godot","godot4","graphdb","kuzu"],"created_at":"2025-08-22T00:42:04.680Z","updated_at":"2026-03-05T23:03:00.788Z","avatar_url":"https://github.com/kthecoder.png","language":"C++","readme":"![Banner](Documentation/Assets/banner.png)\n\n# Kuzu Godot\n\n**Godot 4.4 is currently used Version**\n\nBindings for [Kuzu](https://github.com/kuzudb/kuzu) in [Godot](https://github.com/godotengine/godot)\n\nEmbedded property graph database built for speed. Using Graph Query Language of [Cypher](https://opencypher.org/resources/).\n\n# Overview\n\n1. Create an Instance of Kuzu\n1. Set the Database Folder Path\n1. Initialize the Database\n1. Create a Connection to the DB with thread count\n\n```gdscript\n\nvar myKuzuDB : KuzuGD = KuzuGD.new(); # Instantiate\nvar db_path = ProjectSettings.globalize_path(\"res://data/database/kuzu_db\");\nvar success_db = myKuzuDB.kuzu_init(db_path); # Set Path\nvar success_connect = myKuzuDB.kuzu_connect(1); # Activate Connection\n\n```\n\n1. Execute Queries\n1. Define Tables\n1. Write Data\n1. Read Data\n\n```gdscript\n\n# Define Tables\nmyKuzuDB.execute_query(\"CREATE NODE TABLE IF NOT EXISTS person(name STRING, age INT64, PRIMARY KEY(name));\");\n\n# Write Data\nmyKuzuDB.execute_query(\"CREATE (:person {name: 'Alice', age: 30});\");\n\n# Read Data\nvar queryResult : Array = myKuzuDB.execute_query(\"MATCH (p:person) RETURN p.*\");\nprint(queryResult);\n\n```\n\n# Setup\n\n## Building from Source\n\nRequires the Kuzu Binaries in the `bin/\u003cplatform\u003e/kuzu` folders, pythons Scons, Godot, g++ compiler.\n\n# Contributing\n\nAny and all Contributions are subject to the [CLA.md](https://github.com/kthecoder/KuzuGD/blob/main/CLA.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkthecoder%2Fkuzugd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkthecoder%2Fkuzugd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkthecoder%2Fkuzugd/lists"}