UNPKG

@directus/api

Version:

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

9 lines (7 loc) 287 B
import { pick } from "lodash-es"; //#region src/utils/get-graphql-query-and-variables.ts function getGraphqlQueryAndVariables(req) { return pick(req.method?.toLowerCase() === "get" ? req.query : req.body, ["query", "variables"]); } //#endregion export { getGraphqlQueryAndVariables };