Skip to content

Commit cccb98a

Browse files
author
James Brundage
committed
feat: GitSponsorshipTiers.gql ( Fixes #25 )
1 parent fc0d286 commit cccb98a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Examples/GitSponsorshipTiers.gql

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
query getTiers($login: String!) {
2+
user(login: $login) {
3+
sponsorsListing {
4+
tiers(first: 10) {
5+
nodes {
6+
name
7+
description
8+
descriptionHTML
9+
id
10+
isCustomAmount
11+
isOneTime
12+
monthlyPriceInCents
13+
monthlyPriceInDollars
14+
updatedAt
15+
}
16+
}
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)