promiseSerial(docs.map(draft => () => fetch(insertDraftURL, {method: "POST", body: JSON.stringify(draft)})
                  .then(resp => resp.json())
                  .then(data => {
                    if (data.error) {
                      throw new Error(data.error)