Skip to content

kpman/graphqltw-meetup01

Repository files navigation

GraphQL Taiwan Meetup01

A demo project for dataloader with graphql server

GraphQL Taiwan

Getting started

$ yarn
$ yarn run migrate
$ yarn run seed
$ yarn run dev

Open http://localhost:8080/graphql

example query

{
  getAuthor(id: 3) {
    id
    name
    posts {
      id
      text
      author {
        name
      }
    }
  }
}
{
  getAuthor(id: 3) {
    id
    name
    posts {
      id
      text
      author {
        id
        name
        posts {
          id
          title
          text
          author {
            id
            posts {
              id
              title
              text
            }
          }
        }
      }
    }
  }
}

License

MIT © Daniel Tseng

About

A demo project for dataloader with graphql server

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published