hello_graphql_phoenix icon indicating copy to clipboard operation
hello_graphql_phoenix copied to clipboard

Examples of GraphQL Elixir Plug endpoints mounted in Phoenix

Results 8 hello_graphql_phoenix issues
Sort by recently updated
recently updated
newest added

It would be nice to have some examples of changing data through graphql mutations.

- GraphQL example wrapping meetup API (http://www.meetup.com/meetup_api/) - Think about using Dayron as REST API client (https://github.com/inaka/Dayron)

Thank you for throwing this repo together! It is an awesome example of combining two compelling technologies to create something greater than the sum of its parts. It would be...

Reuse the site structure from https://github.com/graphql-elixir/graphql-elixir.github.io but make it a normal Phoenix app. Deploy to docker so it can be deployed anywhere.

See the example here `# Welcome to GraphQL Elixir....` http://graphql-swapi.parseapp.com/

``` { article { author { name }, body } } ``` http://localhost:4000/graphql/blog?query=%7B%0A%09article%20%7B%0A%09%20%20id%0A%09%7D%0A%7D [Hitting this endpoint](http://localhost:4000/graphql/blog?query=%7B%0A%09article%20%7B%0A%09%20%20id%0A%09%7D%0A%7D) results in this error message on iQL: > SyntaxError: Unexpected token < And this...

This is so the docs in GraphiQL are more descriptive (and correct) and help people understand it more easily. - [ ] Add description fields and fix names in each...