pull down to refresh

Sandbox is live: https://stacker.news/api/graphql

It doesn't have inspection enabled yet but I'll enable it in my next release.

bolt11 removal

Oh whoops. Basically after 7 days, you can delete who/where/what received your withdrawals.

Would you mind one more tech support? I tried the example you gave me before:

query items(name: 'elvismercury', sort: 'user', limit: 100) {
    items {
        id
        createdAt
        title
        text
    }
}

but it doesn't like it, bunch of syntax errors. How would I form that query in the sandbox?

reply

This should work:

query {
    items(name: "elvismercury", sort: "user", limit: 100) {
        items {
          id
          createdAt
          title
          text
        }
        cursor
    }
}

:)

The query items(...) part is only for variables, so you need to prefix the names with $ and set the variables in the input below:

https://m.stacker.news/5605

Schema is in this folder btw. Here is the schema for everything related to items.

The red squiggly lines are only because introspection is off, I believe.

reply

Muy amable :)

This is my first GraphQL ever! I feel so powerful!

reply

I'm still not 100% comfortable with GraphQL. There's definitely a learning curve!

reply

Not good for learning about how to use it iirc, but I really liked this GraphQL documentary. The channel has a lot of great documentaries about other dev stuff like frameworks :)

Or as someone in the YT comments mentioned, it's like "Netflix for developers", lol

reply
436 sats \ 1 reply \ @nym 23 Nov 2023

Thanks so much for sharing this documentary!

reply

oof, guess I should have shared this earlier, haha

reply

Dude I don't know how I missed that channel

reply

lol, I think it just showed up in my YT feed 1-2 years ago

reply

Introspection of prod is live. Should be easier now.

reply