{"id":13961775,"url":"https://github.com/nyancodeid/denoql","last_synced_at":"2025-08-16T01:13:47.683Z","repository":{"id":39414578,"uuid":"435958219","full_name":"nyancodeid/denoql","owner":"nyancodeid","description":"DenoQL: GraphQL Scraper with Deno","archived":false,"fork":false,"pushed_at":"2022-08-13T07:43:17.000Z","size":43,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-11T08:07:17.792Z","etag":null,"topics":["deno","graphql","scraper"],"latest_commit_sha":null,"homepage":"https://deno.land/x/denoql","language":"TypeScript","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/nyancodeid.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}},"created_at":"2021-12-07T16:48:38.000Z","updated_at":"2025-05-23T17:57:52.000Z","dependencies_parsed_at":"2022-09-20T02:54:13.227Z","dependency_job_id":null,"html_url":"https://github.com/nyancodeid/denoql","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/nyancodeid/denoql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nyancodeid%2Fdenoql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nyancodeid%2Fdenoql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nyancodeid%2Fdenoql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nyancodeid%2Fdenoql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nyancodeid","download_url":"https://codeload.github.com/nyancodeid/denoql/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nyancodeid%2Fdenoql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270653579,"owners_count":24622790,"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","status":"online","status_checked_at":"2025-08-15T02:00:12.559Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["deno","graphql","scraper"],"created_at":"2024-08-08T17:01:25.901Z","updated_at":"2025-08-16T01:13:47.656Z","avatar_url":"https://github.com/nyancodeid.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# DenoQL: Deno GraphQL Scraper\nGraphQL Scraper running on [Deno](https://deno.land/)\n\n## Schema\nBasicly you can read more the detail of every graphql schema when you running `serve` (GraphQL Playground). But, if you only need to know about what field is available and all of graphql schema here is the Gist link.\n\n[https://gist.github.com/nyancodeid/16e1ed47bfbd5410ccb8b04b4c57508c](https://gist.github.com/nyancodeid/16e1ed47bfbd5410ccb8b04b4c57508c)\n\n## Example\n```ts\nimport { useQuery } from 'https://deno.land/x/denoql/mod.ts'\n\n// read more about another GraphQL Schema here\n// https://gist.github.com/nyancodeid/16e1ed47bfbd5410ccb8b04b4c57508c\n//\nconst query = `\n{\n  page(url:\"http://news.ycombinator.com\") {\n    items: queryAll(selector:\"tr.athing\") {\n      rank: text(selector:\"td span.rank\")\n      title: text(selector:\"td.title a\")\n      sitebit: text(selector:\"span.comhead a\")\n      url: attr(selector:\"td.title a\", name:\"href\")\n      attrs: next {\n        score: text(selector:\"span.score\")\n      }\n    }\n    length: count(selector: \"tr.athing\")\n  }\n}`\n\n// Run GraphQL Query\nconst response = await useQuery(query);\n\n// Do something with response (Object)\nconsole.log(response);\n```\n\n## Example GraphQL Playground Server\n\n```ts\nimport { createServer } from 'https://deno.land/x/denoql/mod.ts'\n\n// default listen on port :8080/graphql\ncreateServer()\n\n// or custom listen port :3000/graphql\ncreateServer(3000)\n```\n\n```bash\n# direct run server\n$ deno run -A --unstable https://deno.land/x/denoql/serve.ts\n\n# or direct run server with custom port\n$ deno run -A --unstable https://deno.land/x/denoql/serve.ts --port 3000\n\n# or use argument like this\n$ deno run -A --unstable https://deno.land/x/denoql/serve.ts --port=3001\n```\n\nTested out on Deno version `v1.16.x`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnyancodeid%2Fdenoql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnyancodeid%2Fdenoql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnyancodeid%2Fdenoql/lists"}