Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data export shouldn't repeat the feed definition for every feed_item #43

Open
zackw opened this issue Nov 27, 2017 · 0 comments
Open

Data export shouldn't repeat the feed definition for every feed_item #43

zackw opened this issue Nov 27, 2017 · 0 comments

Comments

@zackw
Copy link

zackw commented Nov 27, 2017

In the attached JSON data export, the feed definition is repeated for every feed_item. This potentially doubles (or more, if many feed_items have been added to multiple feeds!) the length of a large data export. It should be sufficient to dump the ID for each feed. A better JSON structure would be something like

...
"feeds": [ { "id": 2, ... }, ... ]
"feed_items": [
    { "id": 2, "title": "some website", ...,
       "feeds": [ 2, 3, ... ]
    },
    ...
]

tagteam_export_2017-11-27 14_17_21 -0500.json.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant