xjm / drupal_core_release

Set of scripts for preparing a Drupal core release
14 stars 11 forks source link

Use API for queries/fixed_criticals.txt (not an easy replacement) #1

Open drumm opened 8 years ago

drumm commented 8 years ago

RestWS doesn't support filters with OR, so all the permutations of category and status (and multiple pages if there are more than 50 of each) would need to be fetched.

https://www.drupal.org/api-d7/node.json?type=project_issue&status=1&field_project=3060&field_issue_priority=400&field_issue_category=1&field_issue_status=7

This doesn't cover filtering by when this change happened in the issue changes field. That would be a separate request for every node. Not efficient at all but it could work.

(I could imagine GraphQL might be able to handle this better.)