supabase / repository.surf

🏄
https://repository.surf
MIT License
80 stars 11 forks source link

Do issue tracking on-demand (just like we do with stars) #79

Open ykdojo opened 3 years ago

ykdojo commented 3 years ago

@joshenlim's note:

I realised pulling issue tracking on demand (skipping lambda) might be possible:

{
  repository(owner: "supabase", name: "supabase") {
    issues(first: 100) {
      totalCount
      edges {
        node {
          createdAt
          closedAt
        }
      }
    }
  }
}

But not exactly sure if possible or how complicated it might be