{"id":14976146,"url":"https://github.com/pgollangi/gql-query-utils","last_synced_at":"2026-04-30T17:31:27.521Z","repository":{"id":63565025,"uuid":"567215774","full_name":"pgollangi/gql-query-utils","owner":"pgollangi","description":"Python package that converts GraphQL query into dictionary.","archived":false,"fork":false,"pushed_at":"2025-11-20T16:58:01.000Z","size":23,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-03T22:35:28.883Z","etag":null,"topics":["graphql","graphql-queries","graphql-query","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","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/pgollangi.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-11-17T10:17:37.000Z","updated_at":"2022-11-17T12:18:10.000Z","dependencies_parsed_at":"2023-01-23T22:02:02.448Z","dependency_job_id":"4380057c-bb01-44a5-83ef-e24bb52787c4","html_url":"https://github.com/pgollangi/gql-query-utils","commit_stats":{"total_commits":15,"total_committers":2,"mean_commits":7.5,"dds":0.1333333333333333,"last_synced_commit":"d61b8b6b2d80ee4ad19672b4247f87fc89c23c6f"},"previous_names":["pgollangi/graphql-query-to-dict"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pgollangi/gql-query-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgollangi%2Fgql-query-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgollangi%2Fgql-query-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgollangi%2Fgql-query-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgollangi%2Fgql-query-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgollangi","download_url":"https://codeload.github.com/pgollangi/gql-query-utils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgollangi%2Fgql-query-utils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32472396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: 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":["graphql","graphql-queries","graphql-query","python3"],"created_at":"2024-09-24T13:53:23.321Z","updated_at":"2026-04-30T17:31:27.502Z","avatar_url":"https://github.com/pgollangi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gql-query-utils\nPython package with graphql queries utilities. \n\n## Install\nInstall with `pip`:\n```commandline\npip install gql-query-utils\n```\n\n## Utilities\n\n### Convert graphql query string into dictionary \n```python\nfrom gql_query_utils.utils import query_to_dict \n\nquery_dict = query_to_dict(\"\"\"\nquery GetThisStuff {\n    viewer {\n        personal(criteria: {\n            name: \"PETER\",\n            lastName: \"SCHMIDT\"\n        }) {\n            name\n            address\n        }\n    }\n}\"\"\")\n\nprint(query_dict)\n```\nOutput:\n```json\n{\n  \"query\": {\n    \"viewer\": {\n      \"personal\": {\n        \"__args\": {\n          \"criteria\": {\n            \"name\": \"PETER\",\n            \"lastName\": \"SCHMIDT\"\n          }\n        },\n        \"name\": true,\n        \"address\": true\n      }\n    }\n  }\n}\n```\n\n## Usage\n\n```python\nfrom gql_query_utils.utils import query_to_dict \n\nquery_to_dict(\"\"\" ${GQL_QUERY} \"\"\")\n```\n## License\n[MIT](./LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgollangi%2Fgql-query-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgollangi%2Fgql-query-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgollangi%2Fgql-query-utils/lists"}