yukini / graphql-etude

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

install

pnpm i

run

pnpm start

query

query ExampleQuery {
  books {
    id
    title
    author
  }

  bookWithComments(bookId: 1) {
    book {
      id
      author
    }
    comments {
      id
      body
    }
  }
}

About


Languages

Language:TypeScript 100.0%