Feature: Use hash of query+variables for graphql cache instead of gitsha * feature: use a hash of query+variables as part of the cache key instead of gitsha * . * Merge branch 'master' of bitbucket.org:scandic-swap/web into feat/use-hash-for-graphql-cache * use correct json stringify * merge * remove edgeRequest in favor of request * add more indicative logging Approved-by: Linus Flood
23 lines
663 B
TypeScript
23 lines
663 B
TypeScript
import type { DocumentNode } from "graphql"
|
|
|
|
export function getOperationName(query: string | DocumentNode): string {
|
|
let operationName = ""
|
|
|
|
if (typeof query === "string") {
|
|
const operationRegex = /(query|mutation|subscription)\s+(\w+)/
|
|
const match = query.match(operationRegex)
|
|
if (match && match[2]) {
|
|
operationName = match[2]
|
|
}
|
|
} else {
|
|
const opDefinition = query.definitions.find(
|
|
(def) => def.kind === "OperationDefinition" && def.name
|
|
)
|
|
if (opDefinition && "name" in opDefinition && opDefinition.name) {
|
|
operationName = opDefinition.name.value
|
|
}
|
|
}
|
|
|
|
return operationName ?? "AnonymousOperation"
|
|
}
|