UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

6 lines (5 loc) 213 B
import { pick } from 'lodash-es'; export function getGraphqlQueryAndVariables(req) { const isGet = req.method?.toLowerCase() === 'get'; return pick(isGet ? req.query : req.body, ['query', 'variables']); }