Skip to content

danieladias/graphql-server-example

Repository files navigation

graphql-server-example

Experimenting with GraphQL and Apollo Server

How to run

npm install && npm run start

Query Examples

query Books {
  books {
    id
    title
    author {
      id
      name
    }
  }
}

query Book {
  book(id: "1") {
    id
    title
    author {
      id
      name
    }
  }
}

Team

Thanks to @andreribeirosilva for contributing.

About

Experimenting with GraphQL and Apollo Server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published