{"id":15346286,"url":"https://github.com/bfergerson/grakn-mythos","last_synced_at":"2025-04-14T23:36:18.851Z","repository":{"id":38216402,"uuid":"261541000","full_name":"BFergerson/grakn-mythos","owner":"BFergerson","description":" Sharable Grakn knowledge graphs","archived":false,"fork":false,"pushed_at":"2022-12-28T20:14:44.000Z","size":1191,"stargazers_count":13,"open_issues_count":12,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T11:42:44.879Z","etag":null,"topics":["grakn","graql","knowledge-graph","knowledge-representation"],"latest_commit_sha":null,"homepage":"https://graknmythos.com","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BFergerson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-05T17:36:20.000Z","updated_at":"2022-03-30T02:41:58.000Z","dependencies_parsed_at":"2023-01-31T07:30:50.763Z","dependency_job_id":null,"html_url":"https://github.com/BFergerson/grakn-mythos","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2Fgrakn-mythos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2Fgrakn-mythos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2Fgrakn-mythos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2Fgrakn-mythos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BFergerson","download_url":"https://codeload.github.com/BFergerson/grakn-mythos/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248980718,"owners_count":21193136,"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","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":["grakn","graql","knowledge-graph","knowledge-representation"],"created_at":"2024-10-01T11:20:41.444Z","updated_at":"2025-04-14T23:36:18.826Z","avatar_url":"https://github.com/BFergerson.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](docs/images/grakn-mythos-text.svg)\n\n## Description\n\nGrakn Mythos (mythos) is a Grakn-powered application for creating and sharing knowledge graphs. Using mythos you can create a place for you and your team to share related graphs (executing queries on shared keyspaces). Alternatively, you can share unrelated graphs (executing queries on temporary keyspaces), like the [public website](https://graknmythos.com).\n\n## Web Client\n\n![](docs/images/mythos_client_0.2.0.png)\n\n* Create Legend: `/legend/create`\n* Get Legend: `/legend/{legendId}`\n* Clone Legend: `/legend/{legendId}/clone`\n* Full Screen Graph: `/legend/{legendId}/full-screen`\n\n## REST API\n\n* [Execute Legend](docs/api/execute-legend.md) : `POST /api/legend/execute`\n* [Save Legend](docs/api/save-legend.md) : `POST /api/legend`\n* [Get Legend](docs/api/get-legend.md) : `GET /api/legend/{legendId}`\n* [Get Legend Graph](docs/api/get-legend-graph.md) : `GET /api/legend/{legendId}/graph`\n\n## Operate\n```sh\n$ ./mythos-server --help\nUsage: grakn-mythos options_list\nOptions:\n    --port, -p [8888] -\u003e Listen on port { Int }\n    --websiteDisabled, -wd [false] -\u003e Website disabled\n    --graknHost, -gh [localhost] -\u003e Grakn host { String }\n    --graknPort, -gp [48555] -\u003e Grakn port { Int }\n    --graknKeyspace, -gk -\u003e Grakn keyspace (otherwise uses temporary keyspaces) { String }\n    --sslEnabled, -ssl [false] -\u003e SSL enabled\n    --keystoreLocation, -kl -\u003e SSL keystore location { String }\n    --keystorePassword, -kp -\u003e SSL keystore password { String }\n    --keystoreAlias, -ka -\u003e SSL keystore alias { String }\n    --help, -h -\u003e Usage info\n```\n\n## Deploy\n\n##### Install Dependencies\n```sh\ncurl -L -O https://github.com/graknlabs/grakn/releases/download/1.7.1/grakn-core-all-linux-1.7.1.tar.gz\ntar -xzvf grakn-core-all-linux-1.7.1.tar.gz\nrm grakn-core-all-linux-1.7.1.tar.gz\ncd grakn-core-all-linux-1.7.1\n./grakn server start\n```\n\n##### Deploy Application\n```sh\ncurl -L -O https://github.com/BFergerson/grakn-mythos/releases/download/v0.2.2/mythos-server-v0.2.2.tar\ntar -xvf mythos-server-v0.2.2.tar\ncd mythos-server/bin\n./mythos-server\n```\n\nVisit http://localhost:8888\n\n## Build\n\n##### Install Dependencies\n```sh\nsudo apt update\nsudo apt install openjdk-8-jdk -y\nsudo apt install npm -y\nsudo npm i -g npx\n```\n\n##### Build Application\n```sh\ngit clone https://github.com/BFergerson/grakn-mythos\ncd grakn-mythos\n./gradlew build\n```\n\n## License\n\n[Apache License 2.0](https://github.com/bfergerson/grakn-mythos/blob/master/LICENSE)\n\n## Disclaimer\n\nThis project is a third-party created application and is in no way affiliated with or endorsed by Grakn or Grakn Labs Ltd.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfergerson%2Fgrakn-mythos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbfergerson%2Fgrakn-mythos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfergerson%2Fgrakn-mythos/lists"}