Closed sepsol closed 2 years ago
So instead of:
const query = `--sql SELECT * FROM table`;
We can write this (to be more consistent with the rest of inline extensions):
const query = /* sql */`SELECT * FROM table`; const html = /* html */`<div id="root"></div>`;
or:
const query = sql`SELECT * FROM table`; const html = html`<div id="root"></div>` const graphql = gql`query { testConnection }`;
Added in 2.15
So instead of:
We can write this (to be more consistent with the rest of inline extensions):
or: