This data as json, CSV (advanced)
Suggested facets: verified, created_at (date)
fellowship
| id | name | description | location | url | fellowship | followers_count | created_at | verified | screen_name | |
|---|---|---|---|---|---|---|---|---|---|---|
| 17290577 | Diane Cardwell | Former @nytimes reporter. Author ROCKAWAY: Surfing Headlong Into a New Life, a surfing memoir. 7/7/2020, @HMHbooks. Lives, gardens & surfs in Rockaway Beach. | New York | https://dianecardwell.com | https://twitter.com/ByDianeCardwell | jsk-fellows2009 | 3617 | 2008-11-10T17:25:04+00:00 | 0 | ByDianeCardwell |
| 55363786 | Jerry Capeci | Expert on the American Mafia and organized crime. Award-winning journalist. Gang Land News columnist. Contact Jerry at column02@ganglandnews.com | New York | http://ganglandnews.com | https://twitter.com/ganglandnews | jsk-fellows1996 | 1559 | 2009-07-09T21:11:39+00:00 | 0 | ganglandnews |
| 275541233 | Veronica Chambers | Editor, Narrative Projects @nytimes, author, Shirley Chisholm Is a Verb, 32 Yolks w/ @ericripert, @JSKStanford alum. I'm not a player but I create a lot. | New York | http://veronicachambers.com | https://twitter.com/vvchambers | jsk-fellows2017 | 7840 | 2011-04-01T13:51:48+00:00 | 1 | vvchambers |
JSON shape: default, array, newline-delimited
CREATE VIEW jsk_fellows AS
select
users.id,
users.name,
users.description,
users.location,
users.url,
'https://twitter.com/' || users.screen_name as twitter,
group_concat(lists.slug) as fellowship,
users.followers_count,
users.created_at,
users.verified,
users.screen_name
from users
join list_members
on list_members.user = users.id
join lists
on list_members.list = lists.id
where
lists.slug like 'jsk-fellows%'
and lists.slug not like '%projects'
group by users.id;