This data as json, CSV (advanced)
Suggested facets: created_at (date)
fellowship
| id | name | description | location | url | fellowship | followers_count | created_at | verified | screen_name | |
|---|---|---|---|---|---|---|---|---|---|---|
| 19339650 | Gini Sikes | Standup Comic, Filmmaker, Journalist. Writer/Producer Equal Means Equal; Author 8Ball Chicks: A Year in the Violent World of Girl Gangs | Los Angeles, CA | https://twitter.com/8ballchicks | jsk-fellows2001 | 214 | 2009-01-22T14:18:01+00:00 | 0 | 8ballchicks | |
| 46676538 | David Stabler | Writer and teacher. Pianist. Cyclist. davidstabler1@gmail.com | Portland, Oregon | http://davidstabler.net | https://twitter.com/davidstabler | jsk-fellows2001 | 1371 | 2009-06-12T15:36:05+00:00 | 0 | davidstabler |
| 86112487 | New American Nomads | See what happens when two crazy “kids” quit their jobs, sell their house, dump their possessions and hit the road to see America in a fancy camper van. | Scottsdale, Arizona | http://www.newamericannomads.com | https://twitter.com/JudithNichols | jsk-fellows2001 | 49 | 2009-10-29T17:01:15+00:00 | 0 | JudithNichols |
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;