Skip to content
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.

telco2011/graphql-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL Example

This project is based in apollo-tutorial-kit (formerly apollo-starter-kit), the starting point for the Apollo GraphQL Server tutorial. See also Tutorial: How to build a GraphQL server and the solution in the server-tutorial-solution branch of this repo.

git clone https://github.com/apollostack/apollo-starter-kit
cd apollo-starter-kit
npm install
npm run start

Build and run

  • To install
npm install & npm start

Test

  • GraphQL queries to execute with GraphiQL
{
  author(firstName:"Edmond", lastName: "Jones"){
    firstName
    lastName
    posts{
      title
      views
    }
  }
}
{
  author(firstName: "Edmond", lastName: "Jones") {
    firstName
    lastName
  }
  getFortunerCookie
}
mutation {
  createPost(post: {
    title: "Mutated Post"
    text: "Mutation text"
    authorId: 2
  }) {
    id
  	title
  	text
  	views
  	author {
  	  id
  	}
  }
}