forked from FoundKeyGang/FoundKey
e16906afc3
* Create patreon.jq * Create check_pr.jq * Rename check_pr.jq to .autogen/check_pr.jq * Create next_url.jq * Update autogen.sh * Rename autogen.sh to update_readme_patreon.sh
39 lines
388 B
Text
39 lines
388 B
Text
(
|
|
.data |
|
|
map(
|
|
select(
|
|
.relationships
|
|
.currently_entitled_tiers
|
|
.data[]
|
|
)
|
|
) |
|
|
map(
|
|
.relationships
|
|
.user
|
|
.data
|
|
.id
|
|
)
|
|
) as $data |
|
|
.included |
|
|
map(
|
|
select(
|
|
.id as $id |
|
|
$data |
|
|
contains(
|
|
[
|
|
$id
|
|
]
|
|
)
|
|
)
|
|
) |
|
|
map(
|
|
.attributes |
|
|
[
|
|
.full_name,
|
|
.thumb_url,
|
|
.url
|
|
] |
|
|
@tsv
|
|
) |
|
|
.[] |
|
|
@text
|