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 | |
---|---|---|---|---|---|---|---|---|---|---|
16911536 | Amy Virshup | Travel editor of @nytimes. @nytimestravel I've traded Metro for the world. Follow me! | New York, NY | https://www.nytimes.com/section/travel | https://twitter.com/amyvirshup | jsk-fellows1995 | 9207 | 2008-10-22T19:41:36+00:00 | 1 | amyvirshup |
30117765 | Marcelo Rubens Paiva | http://blog.estadao.com.br/blog/marcelorubenspaiva/ | https://twitter.com/marcelorubens | jsk-fellows1995 | 829946 | 2009-04-10T01:14:01+00:00 | 1 | marcelorubens | ||
32129142 | Carol Rosenberg | Covers Guantánamo, the place, policy, people and war court for The New York Times with the generous support of the Pulitzer Center. | USA | https://www.nytimes.com/by/carol-rosenberg | https://twitter.com/carolrosenberg | jsk-fellows1995 | 35166 | 2009-04-16T19:52:21+00:00 | 1 | carolrosenberg |
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;