2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-29 05:14:04 +03:00

docs: update sponsors, remove ads

This commit is contained in:
Jeff Sagal
2021-07-20 09:20:23 -07:00
parent 2f18243d0a
commit 2e8dd919ca
3 changed files with 22 additions and 18 deletions
+18 -10
View File
@@ -28,20 +28,28 @@ async function getContributors() {
*/
async function getSponsors() {
const query = `
{
user(login: "sagalbot") {
sponsorshipsAsMaintainer(first: 100) {
nodes {
createdAt
sponsor {
login
avatarUrl
}
{
user(login: "sagalbot") {
sponsorshipsAsMaintainer(first: 100) {
nodes {
sponsorEntity {
... on User {
id
avatarUrl
login
}
... on Organization {
id
avatarUrl
login
}
}
createdAt
}
}
`;
}
}
`;
try {
const { user } = await graphql(query, {