{"id":13770086,"url":"https://github.com/smallrye/smallrye-graphql","last_synced_at":"2025-04-12T18:53:27.378Z","repository":{"id":37712473,"uuid":"179494421","full_name":"smallrye/smallrye-graphql","owner":"smallrye","description":"Implementation for MicroProfile GraphQL","archived":false,"fork":false,"pushed_at":"2024-05-18T17:57:56.000Z","size":17262,"stargazers_count":150,"open_issues_count":137,"forks_count":86,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-05-19T14:31:14.762Z","etag":null,"topics":["microprofile"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smallrye.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-04T12:37:13.000Z","updated_at":"2024-07-10T19:40:45.151Z","dependencies_parsed_at":"2023-11-13T12:43:08.682Z","dependency_job_id":"4e73a6b7-dea9-41b4-a340-9229c8c836ae","html_url":"https://github.com/smallrye/smallrye-graphql","commit_stats":null,"previous_names":[],"tags_count":117,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smallrye","download_url":"https://codeload.github.com/smallrye/smallrye-graphql/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618244,"owners_count":21134200,"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","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":["microprofile"],"created_at":"2024-08-03T17:00:34.125Z","updated_at":"2025-04-12T18:53:27.356Z","avatar_url":"https://github.com/smallrye.png","language":"Java","readme":":microprofile-graphql: https://github.com/eclipse/microprofile-graphql/\n:graphql-over-http: https://github.com/graphql/graphql-over-http\n:subscriptions-transport-ws: https://github.com/apollographql/subscriptions-transport-ws\n:graphql-ws: https://github.com/enisdenjo/graphql-ws/blob/master/PROTOCOL.md\n:graphql-federation: https://www.apollographql.com/docs/federation\n:vertx: https://vertx.io/\n\nimage:https://github.com/smallrye/smallrye-graphql/workflows/SmallRye%20Build/badge.svg?branch=main[link=https://github.com/smallrye/smallrye-graphql/actions?query=workflow%3A%22SmallRye+Build%22]\nimage:https://sonarcloud.io/api/project_badges/measure?project=smallrye_smallrye-graphql\u0026metric=alert_status[\"Quality Gate Status\", link=\"https://sonarcloud.io/dashboard?id=smallrye_smallrye-graphql\"]\nimage:https://img.shields.io/github/license/thorntail/thorntail.svg[\"License\", link=\"http://www.apache.org/licenses/LICENSE-2.0\"]\nimage:https://badges.gitter.im/smallrye-graphql/community.svg[link=\"https://gitter.im/smallrye-graphql/community?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge\"]\n\n= SmallRye GraphQL\n\nSmallRye GraphQL is an implementation of \n\n- {microprofile-graphql}[Eclipse MicroProfile GraphQL].\n- {graphql-over-http}[GraphQL over HTTP].\n- {graphql-ws}[GraphQL over WebSocket].\n- {subscriptions-transport-ws}[Subscriptions transport ws] (old).\n- {graphql-federation}[GraphQL Federation]\n\n== Instructions\n\n=== Testing against the released v 2.0 of MicroProfile GraphQL\n\n[source,bash]\n----\nmvn clean install\n----\n\nNote that some tests perform locale-sensitive assertions.\nIf you use non-English locale, you need to adjust the command above.\nFor example: `LANG=C mvn clean install`\n\n=== Testing against the unreleased v 2.1-SNAPSHOT of MicroProfile GraphQL\n\n(You need to build that version of MicroProfile GraphQL locally first to make the snapshot versions available in your repository)\n\n[source,bash]\n----\nmvn clean install -Dversion.eclipse.microprofile.graphql=2.1-SNAPSHOT\n----\n\n=== Documentation\n\nThe live documentation is available at link:https://smallrye.io/smallrye-graphql[this link].\n\nInfo about how to build and manage the documentation is in `docs/README.adoc`.\n\n=== Javax/Jakarta\n\nThe 1.5.x branch will be maintained for the `javax` namespace, and the main (2.x) branch for `jakarta`.\n\n=== Project structure\n\n==== Common\n\n* link:common/schema-model[Schema Model] (Serializable) that defines the schema.\n* link:common/schema-builder[Schema Builder] that create the model from Jandex.\n\n==== Server\n\n* link:server/api[API] (pulling in the MicroProfile API) and allowing us to experiment with api feature not yet in the spec. Code from here might move the the spec at some point.\n* link:server/implementation[Implementation] of the Eclipse MicroProfile GraphQL API.\n* link:server/implementation-cdi[CDI] Module that allows lookup of GraphQL Endpoints via CDI.\n* link:server/implementation-servlet[Servlet] Making the implementation available via Servlet.\n* link:server/tck[TCK] Test suite to run the implementation against the {microprofile-graphql}[Eclipse MicroProfile GraphQL] TCK.\n* link:server/runner[Runner] Manual TCK testing with GraphiQL.\n* link:server/integration-tests[IT] To run some Integration tests.\n\n==== Client\n\n* link:client/api[Client API] (pulling in the MicroProfile Client API) and allowing us to experiment with API feature not yet in the spec. Code from here might move the spec at some point.\n* link:client/implementation[Client Implementation] of the Eclipse MicroProfile GraphQL Client API.\n* link:client/tck[Client TCK] Test suite to run the client-implementation against the {microprofile-graphql}[Eclipse MicroProfile GraphQL] Client TCK.\n* link:client/implementation-vertx[Client Implementation Vert.x] Module for {vertx}[Vert.x] handling for the client.\n* link:client/generator[Client Generator] Module generating Type-Safe Client APIs with annotation processing.\n* link:client/generator-test[Client Generator Test] Module containing tests for client generators.\n* link:client/model[Client Model] defines Type-Safe's client model (GraphQL operations).\n* link:client/model-builder[Client Model Builder] that generates Client Model from Jandex.\n\n==== Tools\n\n* link:tools/maven-plugin[Maven plugin] that generates the GraphQL schema from source files.\n* link:tools/gradle-plugin[Gradle plugin] that generates the GraphQL schema from source files.\n\n==== UI\n\n* link:ui/graphiql[GraphiQL] UI for your project\n\n==== Documentation\n\n* link:docs[Documentation] SmallRye GraphQL documentation source\n\n=== Links\n\n* http://github.com/smallrye/smallrye-graphql/[Project Homepage]\n* {microprofile-graphql}[Eclipse MicroProfile GraphQL]\n* https://smallrye.io/smallrye-graphql[SmallRye GraphQL Documentation]\n","funding_links":[],"categories":["Schema Libraries"],"sub_categories":["Code First"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmallrye%2Fsmallrye-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmallrye%2Fsmallrye-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmallrye%2Fsmallrye-graphql/lists"}