{"id":45311668,"url":"https://github.com/minskylab/hasura-api","last_synced_at":"2026-02-21T07:43:30.489Z","repository":{"id":44606026,"uuid":"455718794","full_name":"minskylab/hasura-api","owner":"minskylab","description":"Use Hasura Metadata API easy with go. (https://hasura.io/docs/latest/graphql/core/api-reference/metadata-api/index.html)","archived":false,"fork":false,"pushed_at":"2023-12-15T20:17:35.000Z","size":36,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2023-12-15T22:14:16.231Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/minskylab.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":"2022-02-04T22:47:46.000Z","updated_at":"2023-12-15T22:14:16.232Z","dependencies_parsed_at":"2022-08-25T13:31:05.676Z","dependency_job_id":null,"html_url":"https://github.com/minskylab/hasura-api","commit_stats":null,"previous_names":[],"tags_count":20,"template":null,"template_full_name":null,"purl":"pkg:github/minskylab/hasura-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minskylab%2Fhasura-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minskylab%2Fhasura-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minskylab%2Fhasura-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minskylab%2Fhasura-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minskylab","download_url":"https://codeload.github.com/minskylab/hasura-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minskylab%2Fhasura-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29676840,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"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":[],"created_at":"2026-02-21T07:43:25.554Z","updated_at":"2026-02-21T07:43:30.484Z","avatar_url":"https://github.com/minskylab.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hasura Go API\n\nAn unofficial API based on [Hasura API Reference](https://hasura.io/docs/latest/graphql/core/api-reference/index.html).\n\n```\nWARNING: This project is in a very early stage. Don't use in production.\n```\n\n## Use Example\n\n```go\nclient, err := hasura_api.NewHasuraClient()\nif err != nil {\n    //...\n}\n\nres, err = client.Metadata.PgTrackTable(\u0026metadata.PgTrackTableArgs{\n    Table:  metadata.TableName(\"users\"),\n    Source: \"public\",\n})\nif err != nil {\n     //...\n}\n\n\n```\n\n## API Implementation Status\n\n**Priority**: Low | Medium | High\n\n| API               | Endpoint            | Access           | Priority | Status |\n| ----------------- | ------------------- | ---------------- | -------- | ------ |\n| GraphQL           | /v1/graphql         | Permission rules | Medium   | 0%     |\n| Relay             | /v1beta1/relay      | Permission rules | Low      | 0%     |\n| Schema (\u003e v2.0)   | /v2/query           | Admin only       | High     | 0%     |\n| Metadata (\u003e v2.0) | /v1/metadata        | Admin only       | High     | 10%    |\n| Restified GQL     | /api/rest           | GQL REST Routes  | Low      | 0%     |\n| Version           | /v1/version         | Public           | Low      | 0%     |\n| Health            | /healthz            | Public           | Low      | 0%     |\n| PG Dump           | /v1alpha1/pg_dump   | Admin only       | Low      | 0%     |\n| Config            | /v1alpha1/config    | Admin only       | Medium   | 0%     |\n| Explain           | /v1/graphql/explain | Admin only       | Low      | 0%     |\n\n### Metadata API Status\n\n| Query                          | Status | Comments |\n| ------------------------------ | ------ | -------- |\n| Bulk                           | 100%   |          |\n| PgAddSource                    |        |          |\n| PgDropSource                   |        |          |\n| PgTrackTable                   | 100%   |          |\n| PgUntrackTable                 | 100%   |          |\n| PgSetTableCustomization        | 100%   |          |\n| PgSetTableIsEnum               |        |          |\n| PgTrackFunction                |        |          |\n| PgUntrackFunction              |        |          |\n| PgSetFunctionCustomization     |        |          |\n| PgCreateFunctionPermission     |        |          |\n| PgDropFunctionPermission       |        |          |\n| PgCreateObjectRelationship     |        |          |\n| PgCreateArrayRelationship      |        |          |\n| PgDropRelationship             |        |          |\n| PgRenameRelationship           |        |          |\n| PgSetRelationshipComment       |        |          |\n| PgAddComputedField             |        |          |\n| PgDropComputedField            |        |          |\n| PgCreateInsertPermission       | 100%   |          |\n| PgDropInsertPermission         | 100%   |          |\n| PgCreateSelectPermission       | 100%   |          |\n| PgDropSelectPermission         | 100%   |          |\n| PgCreateUpdatePermission       | 100%   |          |\n| PgDropUpdatePermission         | 100%   |          |\n| PgCreateDeletePermission       | 100%   |          |\n| PgDropDeletePermission         | 100%   |          |\n| PgSetPermissionComment         |        |          |\n| PgCreateEventTrigger           |        |          |\n| PgDeleteEventTrigger           |        |          |\n| PgRedeliverEvent               |        |          |\n| PgInvokeEventTrigger           |        |          |\n| BigqueryTrackTable             |        |          |\n| BigqueryUntrackTable           |        |          |\n| BigquerySetTableCustomization  |        |          |\n| MssqlAddSource                 |        |          |\n| MssqlDropSource                |        |          |\n| MssqlTrackTable                |        |          |\n| MssqlUntrackTable              |        |          |\n| MssqlCreateObjectRelationship  |        |          |\n| MssqlCreateArrayRelationship   |        |          |\n| MssqlDropRelationship          |        |          |\n| MssqlRenameRelationship        |        |          |\n| MssqlSetRelationshipComment    |        |          |\n| MssqlSetTableCustomization     |        |          |\n| MssqlCreateInsertPermission    |        |          |\n| MssqlDropInsertPermission      |        |          |\n| MssqlCreateSelectPermission    |        |          |\n| MssqlDropSelectPermission      |        |          |\n| MssqlCreateUpdatePermission    |        |          |\n| MssqlDropUpdatePermission      |        |          |\n| MssqlCreateDeletePermission    |        |          |\n| MssqlDropDeletePermission      |        |          |\n| MssqlSetPermissionComment      |        |          |\n| CreateCronTrigger              |        |          |\n| DeleteCronTrigger              |        |          |\n| GetCronTriggers                |        |          |\n| CreateScheduledEvent           |        |          |\n| DeleteScheduledEvent           |        |          |\n| AddRemoteSchema                |        |          |\n| UpdateRemoteSchema             |        |          |\n| RemoveRemoteSchema             |        |          |\n| ReloadRemoteSchema             |        |          |\n| AddRemoteSchemaPermissions     |        |          |\n| DropRemoteSchemaPermissions    |        |          |\n| PgCreateRemoteRelationship     |        |          |\n| PgUpdateRemoteRelationship     |        |          |\n| PgDeleteRemoteRelationship     |        |          |\n| ExportMetadata                 |        |          |\n| ReplaceMetadata                |        |          |\n| ReloadMetadata                 |        |          |\n| ClearMetadata                  |        |          |\n| GetInconsistentMetadata        |        |          |\n| DropInconsistentMetadata       |        |          |\n| CreateQueryCollection          |        |          |\n| DropQueryCollection            |        |          |\n| AddQueryToCollection           |        |          |\n| DropQueryFromCollection        |        |          |\n| AddCollectionToAllowlist       |        |          |\n| DropCollectionFromAllowlist    |        |          |\n| SetCustomTypes                 |        |          |\n| CreateAction                   |        |          |\n| DropAction                     |        |          |\n| UpdateAction                   |        |          |\n| CreateActionPermission         |        |          |\n| DropActionPermission           |        |          |\n| CreateRestEndpoint             |        |          |\n| DropRestEndpoint               |        |          |\n| AddInheritedRole               |        |          |\n| DropInheritedRole              |        |          |\n| SetGraphqlIntrospectionOptions |        |          |\n| AddHostToTlsAllowlist          |        |          |\n| DropHostFromTlsAllowlist       |        |          |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminskylab%2Fhasura-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminskylab%2Fhasura-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminskylab%2Fhasura-api/lists"}