Clay Allsopp

Results 68 comments of Clay Allsopp
trafficstars

Hi, do you have any more details? Seems to be working for me: https://www.graphqlhub.com/playground?query=%23%20Welcome%20to%20GraphQLHub!%20Type%20your%20GraphQL%20query%20here%2C%20or%0A%23%20explore%20the%20%22Docs%22%20to%20the%20right%0A%0A%7B%0A%20%20hn2%20%7B%0A%20%20%20%20nodeFromHnId(id%3A%22clayallsopp%22%2C%20isUserId%3Atrue)%20%7B%0A%20%20%20%20%20%20id%0A%20%20%20%20%20%20...%20on%20HackerNewsV2User%20%7B%0A%20%20%20%20%20%20%20%20submitted(first%3A%205)%20%7B%0A%20%20%20%20%20%20%20%20%20%20pageInfo%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20hasNextPage%0A%20%20%20%20%20%20%20%20%20%20%20%20endCursor%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20cursor%0A%20%20%20%20%20%20%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20...%20on%20HackerNewsV2Story%20%7B%0A%09%09%09%09%09%09%09%09score%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20url%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20...%20on%20HackerNewsV2Comment%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20text%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D

Hm, still working - can you paste the link to the query that's failing for you?

@ratulcse27 can you erase the "null" in the Query Variables section and try again?

awesome idea! can we integrate into the [`hn2` schema](https://github.com/clayallsopp/graphqlhub/blob/master/graphqlhub-schemas/src/hn2.js)? I can imagine something like: ``` { hn2 { search(query: "graphql") { ... on HackerNewsV2Story { title } } } }...

Good call, this is broken - it looks like the proper way to deal with getting "all" issues (and/or limiting) is using `page` and `per_page` query params (i.e. [React's issues](https://api.github.com/repos/facebook/react/issues?page=1&per_page=100))...

Hey @leebyron & @schrockn - any thoughts on this line of thinking? (wrapping the public Graph API into GraphQL) Current schema looks like this, trying to be compatible with Relay...

Not really, it doesn't easily work out-of-the-box - I believe you have to write the logic which calculates the correct `sliceStart` accounting for whatever `args` are passed, which ends up...

Thanks for uploading the example project, that helps with debugging. I couldn't get it to work either - looks like some of the internal RubyMotion/CocoaPods behavior this used changed with...

hey @stevestreza - I don't have the bandwidth to make those changes myself, but would happily merge any PR that does!

Hmm I see, yeah there should be a way to do that. Another way it could work is along the lines of ``` ruby belongs_to :event collection_path event_path + "/photos/:id"...