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 | |
|---|---|---|---|---|---|---|---|---|---|---|
| 7380872 | Anne Kornblut | director of news, new initiatives, Facebook. | Palo Alto, CA | http://www.facebook.com | https://twitter.com/annekornblut | jsk-fellows2015 | 17974 | 2007-07-10T19:06:10+00:00 | 1 | annekornblut |
| 256498570 | Christina Passariello | Technology editor @WashingtonPost. Ex @WSJ. Former @JSKstanford Fellow. Parisian by adoption. Super Bowl halftime show performer. | Palo Alto, CA | https://twitter.com/cpassariello | jsk-fellows2015 | 5168 | 2011-02-23T13:18:37+00:00 | 1 | cpassariello | |
| 342455823 | Louis Hansen | Enterprise and housing reporter, Mercury News. I have lots of questions. @JSKstanford fellow, 2015 lhansen@ http://bayareanewsgroup.com | Palo Alto, CA | https://www.mercurynews.com/ | https://twitter.com/HansenLouis | jsk-fellows2015 | 1607 | 2011-07-26T01:36:26+00:00 | 0 | HansenLouis |
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;