export default async()

in pages/api/gh-maybe-good-first-bugs.js [32:46]


export default async (req, res) => {
  const client = createClient();
  const variables = {
    query: oneLine`${contribRepos.map((n) => `repo:${n}`).join('\n')}
      label:"contrib:maybe_good_first_bug"
      is:open
      sort:updated-desc
      type:issues`,
  };
  const data = await client.query({
    query,
    variables,
  });
  res.json(data);
};