groqfmt-nodejs
v1.0.1
Published
Format GROQ strings in Node.js
Downloads
32
Maintainers
Readme
groqfmt-nodejs
A Node.js wrapper for Sanity´s Go implementation.
Usage
import { format } from 'groqfmt-nodejs'
const query = `
*[_type == 'page'] {
mainSection {
pageTitle,
gallery[] {}
`
try {
const queryFormatted = await format(query);
// ...
} catch(e) {
// ...
}