{"id":16016921,"url":"https://github.com/tomarrell/poker-v2","last_synced_at":"2025-04-05T03:22:40.021Z","repository":{"id":82076825,"uuid":"154968081","full_name":"tomarrell/poker-v2","owner":"tomarrell","description":"Poker Tracker reborn, in Rust","archived":false,"fork":false,"pushed_at":"2018-12-19T20:54:56.000Z","size":78,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-10T11:33:48.427Z","etag":null,"topics":["api","management","poker","rust","tracker"],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/tomarrell.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":"2018-10-27T13:34:06.000Z","updated_at":"2019-02-01T01:46:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"5d5706c8-af68-4de3-bfbe-7358cd4a3e6c","html_url":"https://github.com/tomarrell/poker-v2","commit_stats":{"total_commits":23,"total_committers":1,"mean_commits":23.0,"dds":0.0,"last_synced_commit":"a8725dc365e439e47b9d467be578e3e7a91b974e"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomarrell%2Fpoker-v2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomarrell%2Fpoker-v2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomarrell%2Fpoker-v2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomarrell%2Fpoker-v2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomarrell","download_url":"https://codeload.github.com/tomarrell/poker-v2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247281666,"owners_count":20913217,"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":["api","management","poker","rust","tracker"],"created_at":"2024-10-08T16:01:52.605Z","updated_at":"2025-04-05T03:22:40.006Z","avatar_url":"https://github.com/tomarrell.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Poker Tracker V2\n\n## Queries\n```Go\nRealmByName        (args struct{ Name string }) (*RealmResolver, error) {\nRealmByID          (args struct{ ID graphql.ID }) (*RealmResolver, error) {\nPlayerByID         (args struct{ ID graphql.ID }) (*PlayerResolver, error) {\nSessionByID        (args struct{ ID graphql.ID }) (*SessionResolver, error) {\nSessionsByRealmID  (args struct{ RealmID graphql.ID }) (*[]*SessionResolver, error) {\n```\n\n## Mutations\n```Go\nCreateRealm        (args CreateRealm) (*RealmResolver, error) {\nCreatePlayer       (args CreatePlayer) (*PlayerResolver, error) {\nPutSession         (args CreateSession) (*SessionResolver, error) {\n```\n\n## Go Schema\n```Go\ntype Query {\n  realmByName(name: String!): Realm                  -\u003e becoming realm(name: string)\n  realmById(id: ID!): Realm\n  sessionById(id: ID!): Session\n  sessionsByRealmId(realmId: ID!): [Session]         -\u003e becoming realm(id: int).sessions\n  playerById(id: ID!): Player\n}\n\ntype Mutation {\n  createRealm(name: String!, title: String): Realm\n  createPlayer(name: String!, realmId: ID!): Player\n  putSession(id: ID, name: String!, realmId: ID!, time: String!, playerSessions: [CreateSessionPlayerSession]!): Session\n}\n\ntype Player {\n  id: ID!\n  name: String!\n  realmId: ID!\n  playerSessions: [PlayerSession]!\n  historicalBalance: Int!\n  realBalance: Int!\n  totalBuyin: Int!\n}\n\ntype Realm {\n  id: ID!\n  name: String!\n  title: String\n  players: [Player]!\n  sessions: [Session]!\n}\n\ntype Session {\n  id: ID!\n  realmId: ID!\n  name: String\n  time: String!\n  playerSessions: [PlayerSession]!\n}\n\ntype PlayerSession {\n  player: Player!\n  playerId: ID!\n  sessionId: ID!\n  buyin: Int!\n  walkout: Int!\n}\n\ninput CreateSessionPlayerSession {\n  playerId: ID!\n  buyin: Int!\n  walkout: Int!\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomarrell%2Fpoker-v2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomarrell%2Fpoker-v2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomarrell%2Fpoker-v2/lists"}