Skip to content

Instantly share code, notes, and snippets.

@arielshaqed
Last active November 4, 2021 16:39
Show Gist options
  • Save arielshaqed/39bd8109a7f01cbb7f72a200ae44196e to your computer and use it in GitHub Desktop.
Save arielshaqed/39bd8109a7f01cbb7f72a200ae44196e to your computer and use it in GitHub Desktop.
Useful GitHub GraphQL
{
repository(owner: "treeverse", name: "lakefs") {
pullRequests(first: 100, states: CLOSED, orderBy: {field: CREATED_AT, direction: DESC}) {
edges {
node {
title
author {
login
}
mergedAt
createdAt
number
participants(first: 20) {
totalCount
edges {
node {
login
}
}
}
}
}
}
}
}
@arielshaqed
Copy link
Author

Sample output from Explorer:

{
  "data": {
    "repository": {
      "pullRequests": {
        "edges": [
          {
            "node": {
              "title": "Switch left/right in compare",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-10-24T13:11:35Z",
              "number": 2594,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add multipart upload test to Spark integration tests",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-10-13T13:54:16Z",
              "number": 2556,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "UI: \"Include uncommitted\" toggle on Objects view",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-10-13T08:50:27Z",
              "number": 2554,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add S3 gateway multipart upload test to Nessie",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-10-11T13:24:22Z",
              "number": 2548,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "s3 adapter disable chunked encoding",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-10-06T21:23:18Z",
              "number": 2528,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "fix outdated github token",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-10-04T13:28:02Z",
              "number": 2516,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Validate user access key id on add credentials",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-09-30T14:10:12Z",
              "number": 2503,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bump nokogiri from 1.12.2 to 1.12.5 in /clients/python",
              "author": {
                "login": "dependabot"
              },
              "mergedAt": null,
              "createdAt": "2021-09-28T06:01:47Z",
              "number": 2495,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bump nokogiri from 1.11.5 to 1.12.5 in /docs",
              "author": {
                "login": "dependabot"
              },
              "mergedAt": null,
              "createdAt": "2021-09-28T02:48:38Z",
              "number": 2494,
              "participants": {
                "totalCount": 0,
                "edges": []
              }
            }
          },
          {
            "node": {
              "title": "Redesign identity and AAA",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-09-27T10:19:09Z",
              "number": 2493,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "test nessie permissions",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-09-19T13:15:54Z",
              "number": 2479,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bugfix/2400 change error message repo with new storage type",
              "author": {
                "login": "lynnro314"
              },
              "mergedAt": null,
              "createdAt": "2021-09-13T17:49:30Z",
              "number": 2468,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "lynnro314"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "multipart upload location url using our api endpoint - alt",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-09-07T15:00:43Z",
              "number": 2457,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Added verification of whether the system has already been set up",
              "author": {
                "login": "lynnro314"
              },
              "mergedAt": null,
              "createdAt": "2021-09-01T14:57:46Z",
              "number": 2434,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "lynnro314"
                    }
                  },
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add missing import from create_policy() documentation",
              "author": {
                "login": "mishraprafful"
              },
              "mergedAt": null,
              "createdAt": "2021-08-27T09:25:56Z",
              "number": 2412,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "mishraprafful"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Fix hadoopfs-lakefs move file to a file without existing target directory",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-08-26T10:48:29Z",
              "number": 2410,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "hadoop lakefs contracts test setup as part of docker compose",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-08-17T11:29:44Z",
              "number": 2383,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "docs: toc style update",
              "author": {
                "login": "JamilAhmad"
              },
              "mergedAt": null,
              "createdAt": "2021-08-15T04:56:46Z",
              "number": 2367,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "JamilAhmad"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bump path-parse from 1.0.6 to 1.0.7 in /webui",
              "author": {
                "login": "dependabot"
              },
              "mergedAt": null,
              "createdAt": "2021-08-12T01:25:10Z",
              "number": 2361,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Gc manual testing",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-08-01T13:20:02Z",
              "number": 2313,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Change config file references in docs from config.yaml to .lakefs.yaml",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-07-28T07:50:49Z",
              "number": 2301,
              "participants": {
                "totalCount": 5,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "peacing"
                    }
                  },
                  {
                    "node": {
                      "login": "talSofer"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Use the right bind flag name for minio",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-07-27T08:05:28Z",
              "number": 2295,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "docs: revert changes in github.css apply using custom scss",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-07-26T06:16:50Z",
              "number": 2284,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "prepare image workflow",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-07-25T11:06:15Z",
              "number": 2281,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update to github.css",
              "author": {
                "login": "JamilAhmad"
              },
              "mergedAt": null,
              "createdAt": "2021-07-23T08:44:27Z",
              "number": 2279,
              "participants": {
                "totalCount": 4,
                "edges": [
                  {
                    "node": {
                      "login": "JamilAhmad"
                    }
                  },
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Document #2244: Python API client accept most IOBase objects in upload",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-07-19T11:50:53Z",
              "number": 2260,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "manual testing of GC",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-07-05T10:49:55Z",
              "number": 2199,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "openapi documentation using redoc",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-07-02T14:47:56Z",
              "number": 2191,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Feature/gc dangling commits",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-06-27T13:49:36Z",
              "number": 2168,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "update README",
              "author": {
                "login": "sunilbhara"
              },
              "mergedAt": null,
              "createdAt": "2021-06-26T09:48:21Z",
              "number": 2163,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "sunilbhara"
                    }
                  },
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Remove the pre-release warning from the lakeFS Hadoop FileSystem docs",
              "author": {
                "login": "talSofer"
              },
              "mergedAt": null,
              "createdAt": "2021-06-23T14:52:45Z",
              "number": 2157,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "talSofer"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add retention to roadmap documentation",
              "author": {
                "login": "guy-har"
              },
              "mergedAt": null,
              "createdAt": "2021-06-15T12:40:01Z",
              "number": 2127,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bump httpclient from 4.3.6 to 4.5.13 in /clients/hadoopfs",
              "author": {
                "login": "dependabot"
              },
              "mergedAt": null,
              "createdAt": "2021-06-04T03:13:28Z",
              "number": 2057,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Resolving the gateway copy but no tests",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-05-31T16:56:14Z",
              "number": 2037,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update README.md",
              "author": {
                "login": "YaelRiv"
              },
              "mergedAt": null,
              "createdAt": "2021-05-25T11:29:03Z",
              "number": 1999,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "YaelRiv"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update httpcomponents version to 4.3.6",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-05-20T09:02:25Z",
              "number": 1974,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bugfix/unexpected merge conflicts 2",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-05-16T12:30:17Z",
              "number": 1960,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "lakectl metadata copy logging",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-05-13T10:45:38Z",
              "number": 1956,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Perform physical copy in gateway",
              "author": {
                "login": "guy-har"
              },
              "mergedAt": null,
              "createdAt": "2021-05-13T07:50:53Z",
              "number": 1953,
              "participants": {
                "totalCount": 4,
                "edges": [
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "talSofer"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Use docker/build-push-action to build and push",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-05-09T19:43:23Z",
              "number": 1931,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update faq.md",
              "author": {
                "login": "karentamrazyan"
              },
              "mergedAt": null,
              "createdAt": "2021-05-09T05:52:43Z",
              "number": 1917,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "karentamrazyan"
                    }
                  },
                  {
                    "node": {
                      "login": "YaelRiv"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "update client FILES",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-05-04T16:03:40Z",
              "number": 1889,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "hadoopfs java package",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-05-02T16:57:04Z",
              "number": 1863,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "add uploadIfAbsent to spark client",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-04-27T13:25:21Z",
              "number": 1824,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Nessie test using spark app",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-04-26T21:41:08Z",
              "number": 1821,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add some structure to \"using with\", bump the first few pages into it",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-04-26T14:23:14Z",
              "number": 1820,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "YaelRiv"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add log4j.properties for some debug logging of examples",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-04-21T11:25:05Z",
              "number": 1796,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update python generate code and fix validate-client-python",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-04-19T13:22:09Z",
              "number": 1781,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "test commit",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-04-14T08:51:28Z",
              "number": 1760,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Updated FAQ",
              "author": {
                "login": "YaelRiv"
              },
              "mergedAt": null,
              "createdAt": "2021-04-12T13:17:54Z",
              "number": 1757,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "YaelRiv"
                    }
                  },
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "python client code align with verification on model change",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-04-12T11:22:17Z",
              "number": 1756,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "proposal doc for object store based LSM",
              "author": {
                "login": "ozkatz"
              },
              "mergedAt": null,
              "createdAt": "2021-03-29T11:56:35Z",
              "number": 1688,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "publish spark client to s3",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-03-24T16:30:04Z",
              "number": 1675,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Always write full path to entry address",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-03-18T11:58:24Z",
              "number": 1651,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Spark Client: simplify cross build",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-03-16T17:57:17Z",
              "number": 1643,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "proposal: impl. milestone #3 using user-controlled workspaces",
              "author": {
                "login": "ozkatz"
              },
              "mergedAt": null,
              "createdAt": "2021-03-16T15:40:56Z",
              "number": 1641,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "merge wip - draft",
              "author": {
                "login": "guy-har"
              },
              "mergedAt": null,
              "createdAt": "2021-03-15T09:43:33Z",
              "number": 1631,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Using singleflight for batching graveler db reads",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-03-12T21:51:56Z",
              "number": 1620,
              "participants": {
                "totalCount": 4,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Fix/docs sizing phrasing",
              "author": {
                "login": "ozkatz"
              },
              "mergedAt": null,
              "createdAt": "2021-03-11T15:54:43Z",
              "number": 1615,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update index.md",
              "author": {
                "login": "YaelRiv"
              },
              "mergedAt": null,
              "createdAt": "2021-03-03T15:58:48Z",
              "number": 1561,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "YaelRiv"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "add java package to proto files",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-02-24T15:59:04Z",
              "number": 1518,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "alt nessie test for hooks",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-02-22T07:08:51Z",
              "number": 1499,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Hooks results db persist",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-02-16T15:44:47Z",
              "number": 1470,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Change injection of Actions' Source and Writer",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-02-15T13:44:34Z",
              "number": 1462,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "[WIP] evaluate and execute actions",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-02-09T15:56:29Z",
              "number": 1440,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "upgrade immer >=8.0.1",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-02-09T13:50:45Z",
              "number": 1436,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Wip/scala client",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-02-07T15:20:10Z",
              "number": 1412,
              "participants": {
                "totalCount": 4,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Benchmark workflow with rocks",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-02-04T13:14:22Z",
              "number": 1406,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Try to generate some coverage for real with Nessie",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-02-01T09:05:48Z",
              "number": 1381,
              "participants": {
                "totalCount": 4,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Control number of concurrent range writer uploaders",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-01-28T08:50:51Z",
              "number": 1350,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Pass cataloger type env var",
              "author": {
                "login": "itaiad200"
              },
              "mergedAt": null,
              "createdAt": "2021-01-26T16:37:20Z",
              "number": 1337,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "testing branch locker on github",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-01-24T17:07:03Z",
              "number": 1304,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add tests and fix race in refcounted cache",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-01-24T07:50:28Z",
              "number": 1298,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Add a different racing opportunity to reference_counted_test",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-01-24T06:51:26Z",
              "number": 1292,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Test per-range skip/enter in diff iterator",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-01-21T07:24:23Z",
              "number": 1266,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "show only 16 first hex chars for commits in the UI",
              "author": {
                "login": "ozkatz"
              },
              "mergedAt": null,
              "createdAt": "2021-01-18T12:46:06Z",
              "number": 1230,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Allow manual triggering of benchmark and nessie CI workflows",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2021-01-08T09:53:14Z",
              "number": 1167,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "lakefs swim as alias to run",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2021-01-05T12:47:34Z",
              "number": 1154,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "bugfix/virtual host in s3 fallback",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2021-01-04T16:32:15Z",
              "number": 1150,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Handle tombstone in combined iterator and add tests",
              "author": {
                "login": "guy-har"
              },
              "mergedAt": null,
              "createdAt": "2020-12-31T12:35:35Z",
              "number": 1134,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "feature/merge implementation",
              "author": {
                "login": "johnnyaug"
              },
              "mergedAt": null,
              "createdAt": "2020-12-30T16:19:14Z",
              "number": 1127,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "graveler ref package implementation",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2020-12-27T11:38:34Z",
              "number": 1108,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bump node-notifier from 8.0.0 to 8.0.1 in /webui",
              "author": {
                "login": "dependabot"
              },
              "mergedAt": null,
              "createdAt": "2020-12-22T13:23:00Z",
              "number": 1095,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Feature/tree interface",
              "author": {
                "login": "tzahij"
              },
              "mergedAt": null,
              "createdAt": "2020-12-14T13:54:33Z",
              "number": 1060,
              "participants": {
                "totalCount": 5,
                "edges": [
                  {
                    "node": {
                      "login": "tzahij"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Fix racing construction on Cache",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2020-12-13T13:14:49Z",
              "number": 1052,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Bump ini from 1.3.5 to 1.3.8 in /webui",
              "author": {
                "login": "dependabot"
              },
              "mergedAt": null,
              "createdAt": "2020-12-11T20:14:42Z",
              "number": 1048,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Cache SSTables in forest",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2020-12-09T21:04:31Z",
              "number": 1026,
              "participants": {
                "totalCount": 5,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Move the db Query logging moved to caller in db level",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2020-12-09T17:37:21Z",
              "number": 1023,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Feature/tree basic",
              "author": {
                "login": "tzahij"
              },
              "mergedAt": null,
              "createdAt": "2020-12-08T08:54:05Z",
              "number": 1013,
              "participants": {
                "totalCount": 4,
                "edges": [
                  {
                    "node": {
                      "login": "tzahij"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "johnnyaug"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "cache map ready for PR",
              "author": {
                "login": "tzahij"
              },
              "mergedAt": null,
              "createdAt": "2020-12-07T14:41:08Z",
              "number": 1010,
              "participants": {
                "totalCount": 5,
                "edges": [
                  {
                    "node": {
                      "login": "tzahij"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "feature/rocks refs",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2020-12-06T09:42:57Z",
              "number": 1002,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Test committed delete with list",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2020-12-04T21:05:12Z",
              "number": 999,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Feature/tree",
              "author": {
                "login": "tzahij"
              },
              "mergedAt": null,
              "createdAt": "2020-12-01T12:59:22Z",
              "number": 984,
              "participants": {
                "totalCount": 6,
                "edges": [
                  {
                    "node": {
                      "login": "tzahij"
                    }
                  },
                  {
                    "node": {
                      "login": "itaiad200"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "ozkatz"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Upload multiple files in `lakectl fs upload`",
              "author": {
                "login": "arielshaqed"
              },
              "mergedAt": null,
              "createdAt": "2020-11-30T12:37:43Z",
              "number": 977,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "connect some of the cataloger rocks implementation to catalog rocks",
              "author": {
                "login": "nopcoder"
              },
              "mergedAt": null,
              "createdAt": "2020-11-29T14:05:41Z",
              "number": 973,
              "participants": {
                "totalCount": 2,
                "edges": [
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Feature/added scrollto after object is deleted (issue #655)",
              "author": {
                "login": "hi-18-K"
              },
              "mergedAt": null,
              "createdAt": "2020-11-26T11:34:00Z",
              "number": 966,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "hi-18-K"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  },
                  {
                    "node": {
                      "login": "nopcoder"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "change description of support mail",
              "author": {
                "login": "guy-har"
              },
              "mergedAt": null,
              "createdAt": "2020-11-24T12:25:58Z",
              "number": 954,
              "participants": {
                "totalCount": 1,
                "edges": [
                  {
                    "node": {
                      "login": "guy-har"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update README.md",
              "author": {
                "login": "rishabh710"
              },
              "mergedAt": null,
              "createdAt": "2020-11-06T15:57:48Z",
              "number": 897,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "rishabh710"
                    }
                  },
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "A little typo",
              "author": {
                "login": "SinithH"
              },
              "mergedAt": null,
              "createdAt": "2020-10-31T04:21:30Z",
              "number": 885,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "SinithH"
                    }
                  },
                  {
                    "node": {
                      "login": "codecov-io"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          },
          {
            "node": {
              "title": "Update NOTICE",
              "author": {
                "login": "vinayak017"
              },
              "mergedAt": null,
              "createdAt": "2020-10-30T19:37:44Z",
              "number": 884,
              "participants": {
                "totalCount": 3,
                "edges": [
                  {
                    "node": {
                      "login": "vinayak017"
                    }
                  },
                  {
                    "node": {
                      "login": "CLAassistant"
                    }
                  },
                  {
                    "node": {
                      "login": "arielshaqed"
                    }
                  }
                ]
              }
            }
          }
        ]
      }
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment