Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Automated Testing in Graphql with CircleCI

CircleCI

Details

This repo is a Nuxt.js project built following a tutorial published on NewStack blog under the CircleCI Guest Writer Program.

About CircleCI Guest Writer Program

Join a team of freelance writers and write about your favorite technology topics for the CircleCI blog. Read more about the program here.

Reviewers: Ron Powell, Stanley Ndagi


Application

Build set up

  • Have Node installed

  • Run

    npm install
  • Run

    npm start
  • Navigate to http://localhost:4000/playground

  • Input the following query and press the play button to test it the API:

    {
      users {
        name
        email
        posts {
          title
          published
        }
      }
    }