function decode(globalID) {
  try {
    const [type, id] = Buffer.from(globalID, 'base64').toString('utf8').split('_');
    return { id, type }
  } catch(e) {