{"id":45173703,"url":"https://github.com/graphql/handbooks","last_synced_at":"2026-02-20T09:01:07.469Z","repository":{"id":339376106,"uuid":"1091006593","full_name":"graphql/handbooks","owner":"graphql","description":"Community-maintained reference and guides for various GraphQL Foundation processes and programs.","archived":false,"fork":false,"pushed_at":"2026-02-19T11:39:08.000Z","size":1841,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-19T15:53:29.743Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://handbooks.graphql.org/","language":"TypeScript","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/graphql.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-11-06T12:36:48.000Z","updated_at":"2026-02-19T11:39:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/graphql/handbooks","commit_stats":null,"previous_names":["graphql/handbooks"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/graphql/handbooks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graphql%2Fhandbooks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graphql%2Fhandbooks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graphql%2Fhandbooks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graphql%2Fhandbooks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/graphql","download_url":"https://codeload.github.com/graphql/handbooks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graphql%2Fhandbooks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29646517,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T08:48:14.886Z","status":"ssl_error","status_checked_at":"2026-02-20T08:45:26.777Z","response_time":59,"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-20T09:01:06.668Z","updated_at":"2026-02-20T09:01:07.458Z","avatar_url":"https://github.com/graphql.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GraphQL Foundation Handbooks\n\nThis repository contains community-maintained documentation and guides for\nvarious GraphQL Foundation processes and programs. Contributions are very\nwelcome, and should follow the\n[Contributing Handbook](https://handbooks.graphql.org/contributing)!\n\n## Structure\n\n- `docs/contributing` — Contributing to GraphQL Foundation projects via GitHub.\n- `docs/wg` — Meeting participation and facilitation guides.\n- `docs/ambassadors` — Expectations, enablement, and standards for GraphQL\n  Ambassadors.\n- `docs/social-media` — Campaign workflows and brand guidelines for the social\n  team.\n- `docs/locals` — Launching and scaling local GraphQL communities.\n- `docs/grants` — Community grant preparation and reporting.\n- `docs/tsc` — Technical Steering Committee processes.\n\nEach page should start with an outline of the target audience for the article,\nenabling readers to skip articles that do not match their current goals.\n\n## Getting Started\n\n1. Ensure you have Node.js 22+ installed (e.g. with `nvm install 22`)\n2. Ensure you have `yarn` installed (e.g. with `npm install -g yarn`)\n3. Check out the repository (e.g. with\n   `git checkout https://github.com/graphql/handbooks`)\n4. Change into that repository (e.g. `cd handbooks`)\n5. Install the dependencies with `yarn`\n\n```bash\nyarn\n```\n\n### Local Development\n\n```bash\nyarn start\n```\n\nThis command runs the development server. The site will reload as you edit\nfiles.\n\n### Build for Production\n\n```bash\nyarn build\n```\n\nThe static assets are output to the `build` directory and can be served by any\nstatic hosting platform. Test it locally:\n\n```bash\nyarn serve\n```\n\n## Configuration\n\n- Update site metadata in `docusaurus.config.ts` (`url`, navigation, footer).\n- Manage sidebar structure in `sidebars.ts`.\n- Customize styling in `src/css/custom.css`.\n\n## Formatting\n\nThis project uses [Prettier](https://prettier.io/) to keep Markdown, MDX, and\nsource files wrapped to a consistent line length.\n\n- Format files automatically:\n\n  ```bash\n  yarn format\n  ```\n\n- Check formatting without applying changes:\n\n  ```bash\n  yarn format:check\n  ```\n\n### Editor integration\n\nIf you use VS Code, install the “Prettier – Code formatter” extension and add\nthe following to `.vscode/settings.json` to format on save:\n\n```json\n{\n  \"editor.defaultFormatter\": \"esbenp.prettier-vscode\",\n  \"editor.formatOnSave\": true,\n  \"[markdown]\": {\n    \"editor.defaultFormatter\": \"esbenp.prettier-vscode\"\n  },\n  \"[mdx]\": {\n    \"editor.defaultFormatter\": \"esbenp.prettier-vscode\"\n  }\n}\n```\n\n## Contributing\n\n1. Fork the repository.\n1. Check out your fork.\n1. Create a new branch.\n1. Make your updates.\n1. Run `yarn format` to fix formatting.\n1. Run `yarn build` to verify the site compiles.\n1. Push your changes and open a pull request, include a description.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraphql%2Fhandbooks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgraphql%2Fhandbooks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraphql%2Fhandbooks/lists"}