Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature request] Support nested site query #9

Open
anhnhoktvn opened this issue Jan 11, 2019 · 1 comment
Open

[Feature request] Support nested site query #9

anhnhoktvn opened this issue Jan 11, 2019 · 1 comment

Comments

@anhnhoktvn
Copy link

Thanks for the great library.
It would be cooler if we can do nested query like below.

{
  hnews: site(url: "https://news.ycombinator.com") {
    numberOfTitles: count(elem: "tr.athing")
    titles: selectAll(elem: "tr.athing") {
      id: attr(name: "id")
      numberOfLinks: count(elem: ".storylink")
      link: select(elem: ".storylink") {
        text
        href
        site(urlFromAttr: "href") { <-- query site url from href value of the current elem
            info: selectAll(elem: ".info") {
                text
            }
        }
      }
    }
  }
}
@ucanlendit
Copy link

This would be truly awesome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants