{"id":13339406,"url":"https://github.com/umbraco-community/umbraco-graphql","last_synced_at":"2025-09-04T02:06:52.764Z","repository":{"id":40925668,"uuid":"135968094","full_name":"umbraco-community/umbraco-graphql","owner":"umbraco-community","description":"An implementation of GraphQL for Umbraco 8 using GraphQL for .NET.","archived":false,"fork":false,"pushed_at":"2023-07-06T13:39:18.000Z","size":3302,"stargazers_count":64,"open_issues_count":11,"forks_count":32,"subscribers_count":10,"default_branch":"develop","last_synced_at":"2025-08-30T05:24:31.674Z","etag":null,"topics":["graphql","hacktoberfest","umbraco"],"latest_commit_sha":null,"homepage":"","language":"C#","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/umbraco-community.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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}},"created_at":"2018-06-04T03:52:24.000Z","updated_at":"2025-07-23T02:21:14.000Z","dependencies_parsed_at":"2024-07-29T22:59:50.860Z","dependency_job_id":"26b7f7ac-5e2c-4903-8107-bc8c429fb7d2","html_url":"https://github.com/umbraco-community/umbraco-graphql","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/umbraco-community/umbraco-graphql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umbraco-community%2Fumbraco-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umbraco-community%2Fumbraco-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umbraco-community%2Fumbraco-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umbraco-community%2Fumbraco-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/umbraco-community","download_url":"https://codeload.github.com/umbraco-community/umbraco-graphql/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umbraco-community%2Fumbraco-graphql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273539317,"owners_count":25123499,"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-09-04T02:00:08.968Z","response_time":61,"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":["graphql","hacktoberfest","umbraco"],"created_at":"2024-07-29T19:20:00.345Z","updated_at":"2025-09-04T02:06:52.741Z","avatar_url":"https://github.com/umbraco-community.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GraphQL for Umbraco\n\n[![NuGet release](https://img.shields.io/nuget/v/Our.Umbraco.GraphQL.svg)](https://www.nuget.org/packages/Our.Umbraco.GraphQL)\n\n\u003e **NOTE**\n\u003e This branch is for the latest version of this plugin that supports Umbraco version **11**.\n\nFor other versions, check out:\n\n-   [v7](https://github.com/umbraco-community/umbraco-graphql/blob/v7/dev/README.md)\n-   [v8](https://github.com/umbraco-community/umbraco-graphql/blob/v8/dev/README.md)\n-   [v9](https://github.com/umbraco-community/umbraco-graphql/blob/v9/dev/README.md)\n-   [v10](https://github.com/umbraco-community/umbraco-graphql/blob/v10/dev/README.md)\n-   develop - THIS BRANCH\n\n## What is this\n\nAn implementation of [GraphQL](https://graphql.org) for Umbraco using [GraphQL for .NET](https://github.com/graphql-dotnet/graphql-dotnet).\n\nPlease note this **should not be used in production**, since there are **no security** and all you data will be **publicly available**.\n\n## How does it work\n\nGraphQL types are dynamically generated for all Umbraco document types (content and media), with all the properties as fields.\n\n## Installation\n\nThe preferred way to install GraphQL for Umbraco is through NuGet\n\n### Option 1: NuGet\n\nGraphQL for Umbraco is available as a [NuGet package](https://www.nuget.org/packages/Our.Umbraco.GraphQL).\n\nTo install run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console)\n\n```powershell\nPM\u003e Install-Package Our.Umbraco.GraphQL\n```\n\n### Option 2: From source\n\nClone the repository and run the Website (F5 in Visual Studio), install Umbraco with the starter kit and start exploring the API using the GraphQL Playground by opening `/umbraco/graphql`.\n\n## Docs\n\nThe docs can be found [here](docs/index.md)\n\n## TODO\n\n-   [x] GraphQL Playground\n-   [x] Schema Stitching (extending types)\n-   [x] Metrics\n-   [x] Published Content\n-   [ ] Published Media\n-   [ ] Dictionary\n-   [ ] Statistics (field usage etc.)\n-   [ ] Deprecation (Content Types and Properties)\n-   [ ] API Tokens (OAUTH) with permissions (for content types and properties)\n-   [ ] Data Types\n-   [ ] Document Types\n-   [ ] Media Types\n-   [ ] Member Types\n-   [ ] Content\n-   [ ] Media\n-   [ ] Members\n-   [ ] Documentation\n\n## Contributing\n\nAnyone can help make this project better - check out our [Contributing guide](CONTRIBUTING.md)\n\n## Authors\n\n-   [Rasmus John Pedersen](https://www.github.com/rasmusjp)\n\n## License\n\nCopyright © 2018 Rasmus John Pedersen\n\nGraphQL for Umbraco is released under the [MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumbraco-community%2Fumbraco-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumbraco-community%2Fumbraco-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumbraco-community%2Fumbraco-graphql/lists"}