Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nareshbhatia/movie-magic-gateway-go
Movie Magic GraphQL Gateway in Go
https://github.com/nareshbhatia/movie-magic-gateway-go
Last synced: about 6 hours ago
JSON representation
Movie Magic GraphQL Gateway in Go
- Host: GitHub
- URL: https://github.com/nareshbhatia/movie-magic-gateway-go
- Owner: nareshbhatia
- Created: 2024-05-20T01:08:05.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-21T05:31:42.000Z (6 months ago)
- Last Synced: 2024-05-22T02:53:54.757Z (6 months ago)
- Language: Go
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Movie Magic GraphQL Gateway in Go
## Getting started
1. Make sure you have Go installed.
2. In your shell, run `go run server.go` to start the server.
3. Open GraphiQL at http://localhost:8080
4. Execute the following query:```graphql
# ----- query -----
query ListMovies($input: MoviesRequest!) {
movies(input: $input) {
movies {
id
name
cast {
person {
id
name
}
characters
}
certificate
genres
rank
releaseYear
ratingsSummary {
aggregateRating
}
}
pageInfo {
totalPages
totalItems
page
perPage
hasNextPage
hasPreviousPage
}
}
}# ----- variables -----
{
"input": {
"sort": "SORT_PARAM_RANK_ASC",
"pageSpec": {
"page": 1,
"perPage": 10
}
}
}
```You should see top 10 movies in the result.
## Running gqlgen
```shell
go run github.com/99designs/gqlgen generate
```