{"id":21627128,"url":"https://github.com/xxczaki/omdb-graphql-wrapper","last_synced_at":"2025-08-22T03:32:33.931Z","repository":{"id":33717348,"uuid":"160869907","full_name":"xxczaki/omdb-graphql-wrapper","owner":"xxczaki","description":":rocket: GraphQL wrapper for the OMDb API","archived":false,"fork":false,"pushed_at":"2024-09-10T08:14:46.000Z","size":24,"stargazers_count":46,"open_issues_count":5,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-08T21:51:20.390Z","etag":null,"topics":["api","apollo","app","graphql","graphql-server","graphql-wrapper","node","nodejs","npm","omdb","playground","server","simple","wrapper"],"latest_commit_sha":null,"homepage":"https://omdb-graphql.now.sh","language":"JavaScript","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/xxczaki.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"xxczaki","patreon":"akepinski"}},"created_at":"2018-12-07T20:01:26.000Z","updated_at":"2024-11-30T05:19:38.000Z","dependencies_parsed_at":"2024-06-18T07:45:45.046Z","dependency_job_id":"728236fd-7e16-4202-bf19-e39d5ad1aaa4","html_url":"https://github.com/xxczaki/omdb-graphql-wrapper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xxczaki/omdb-graphql-wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxczaki%2Fomdb-graphql-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxczaki%2Fomdb-graphql-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxczaki%2Fomdb-graphql-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxczaki%2Fomdb-graphql-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xxczaki","download_url":"https://codeload.github.com/xxczaki/omdb-graphql-wrapper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxczaki%2Fomdb-graphql-wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271579438,"owners_count":24784250,"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-22T02:00:08.480Z","response_time":65,"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":["api","apollo","app","graphql","graphql-server","graphql-wrapper","node","nodejs","npm","omdb","playground","server","simple","wrapper"],"created_at":"2024-11-25T01:15:36.873Z","updated_at":"2025-08-22T03:32:33.666Z","avatar_url":"https://github.com/xxczaki.png","language":"JavaScript","funding_links":["https://github.com/sponsors/xxczaki","https://patreon.com/akepinski"],"categories":[],"sub_categories":[],"readme":"# OMDb API GraphQL Wrapper\n\n\u003e Easily use [OMDb API](http://www.omdbapi.com/) with [GraphQL](https://graphql.org/) :rocket:\n\n\n**[Demo :wrench:](https://omdb-graphql.now.sh)**\n\n---\n\n## Setup a server:\n\n1. Clone this repository\n2. Run `npm install`\n3. Get the OMDb API key and paste it in the [`config.json`](https://github.com/xxczaki/omdb-graphql-wrapper/blob/master/src/config.json) file\n4. Run `npm run dev` to start the server in the development mode\n5. Go to [localhost:2121](http://localhost:2121/) and play with the GraphQL Playground\n6. If you want to build the server, run `npm run build` and then `npm start` to start the server from the recently created `dist` directory.\n\n## Usage\n\n\u003e Check out the [GraphQL documentation](https://graphql.github.io/learn/) first!\n\n### Queries\n\n**Using the movie title:**\n\n```graphql\n{\n  ByTitle(title: \"Matrix\") {\n    Title\n    Year\n    Rated\n    Plot\n    Genre\n  }\n}\n```\n\n**Using IMDb ID**\n\n```graphql\n{\n  ById(id: \"100\") {\n    Director\n    Actors\n    Country\n  }\n}\n```\n\n### Fields:\n\n#### Title\n\nReturns: `string`\n\nTitle of the movie/tv show\n\n#### Year\n\nReturns: `string`\n\nYear the movie was released\n\n#### Rated\n\nReturns: `string`\n\nMovie rating (eg. 12+)\n\n#### Released\n\nReturns: `string`\n\nFull date of release\n\n#### Runtime\n\nReturns: `string`\n\nRuntime of the movie\n\n#### Genre\n\nReturns: `string`\n\nGenre(s) of the movie\n\n#### Director\n\nReturns: `string`\n\nMovie Director(s)\n\n#### Writer\n\nReturns: `string`\n\nMovie Writer(s)\n\n#### Actors\n\nReturns: `string`\n\nActors\n\n#### Plot\n\nReturns: `string`\n\nPlot\n\n#### Language\n\nReturns: `string`\n\nLanguage(s)\n\n#### Country\n\nReturns: `string`\n\nCountry or countries where the movie was made\n\n#### Awards\n\nReturns: `string`\n\nAwards\n\n#### Poster\n\nReturns: `string`\n\nLink to a movie poster\n\n#### Metascore\n\nReturns: `string`\n\nMetascore\n\n#### imdbRating\n\nReturns: `string`\n\nRating from IMDb\n\n#### imdbVotes\n\nReturns: `string`\n\nNumber of votes from IMDb\n\n#### Type\n\nReturns: `string`\n\nType (movie, tv show etc.)\n\n#### DVD\n\nReturns: `string`\n\nDVD release date\n\n#### BoxOffice\n\nReturns: `string`\n\nBox Office\n\n#### Production\n\nReturns: `string`\n\nProduction company\n\n#### Website\n\nReturns: `string`\n\nWebsite of the movie\n\n#### Response\n\nReturns: `string`\n\nCheck, if there was a response from OMDb\n\n### License \n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxxczaki%2Fomdb-graphql-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxxczaki%2Fomdb-graphql-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxxczaki%2Fomdb-graphql-wrapper/lists"}