Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 682 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 682 Bytes

Let's try to make this happen: https://twitter.com/upNic/status/1440450181980295175

pa example

How to run

$ yarn && yarn start

Execute your first scraper

{
  hackernews: scraper(url: "https://news.ycombinator.com/") {
    url
    news: selectList(of:"tr.athing") {
      title: selectString(of:"a")
      link: selectString(of:"td.title > a", attribute:"href")
    }
  }
}