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
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import { Lang } from "@/constants/languages"
|
|
import { batchRequest } from "@/lib/graphql/batchRequest"
|
|
import {
|
|
EntryByUrlBatch1,
|
|
EntryByUrlBatch2,
|
|
} from "@/lib/graphql/Query/ResolveEntry.graphql"
|
|
import { internalServerError } from "@/server/errors/next"
|
|
|
|
import { validateEntryResolveSchema } from "@/types/requests/entry"
|
|
|
|
export async function resolve(url: string, lang = Lang.en) {
|
|
const variables = { locale: lang, url: url || "/" }
|
|
|
|
// The maximum amount of content types you can query is 6, therefor more
|
|
// than that is being batched
|
|
const cacheKey = `${lang}:${url}:resolveentry`
|
|
const response = await batchRequest([
|
|
{
|
|
document: EntryByUrlBatch1,
|
|
variables,
|
|
cacheOptions: {
|
|
ttl: "max",
|
|
key: cacheKey,
|
|
},
|
|
},
|
|
{
|
|
document: EntryByUrlBatch2,
|
|
variables,
|
|
cacheOptions: {
|
|
ttl: "max",
|
|
key: cacheKey,
|
|
},
|
|
},
|
|
])
|
|
|
|
const validatedData = validateEntryResolveSchema.safeParse(response.data)
|
|
|
|
if (!validatedData.success) {
|
|
throw internalServerError(validatedData.error)
|
|
}
|
|
|
|
for (const value of Object.values(validatedData.data)) {
|
|
if (value.total) {
|
|
const { content_type_uid, uid } = value.items[0].system
|
|
return {
|
|
contentType: content_type_uid,
|
|
uid,
|
|
}
|
|
}
|
|
}
|
|
|
|
return {
|
|
contentType: null,
|
|
uid: null,
|
|
}
|
|
}
|