Home / Function/ PGGraphQLDocs() — supabase Function Reference

PGGraphQLDocs() — supabase Function Reference

Architecture documentation for the PGGraphQLDocs() function in page.tsx from the supabase codebase.

Entity Profile

Dependency Diagram

graph TD
  384bf141_9974_10c6_368c_13ffdc38a674["PGGraphQLDocs()"]
  85a25c65_e0b3_49ba_65e3_40dcfb559600["getContent()"]
  384bf141_9974_10c6_368c_13ffdc38a674 -->|calls| 85a25c65_e0b3_49ba_65e3_40dcfb559600
  style 384bf141_9974_10c6_368c_13ffdc38a674 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/docs/app/guides/graphql/[[...slug]]/page.tsx lines 111–123

const PGGraphQLDocs = async (props: { params: Promise<Params> }) => {
  const params = await props.params
  const { meta, ...data } = await getContent(params)

  const options = {
    mdxOptions: {
      remarkPlugins: [remarkMkDocsAdmonition, remarkPyMdownTabs, [removeTitle, meta.title]],
      rehypePlugins: [[linkTransform, urlTransform], rehypeSlug],
    },
  } as SerializeOptions

  return <GuideTemplate mdxOptions={options} meta={meta} {...data} />
}

Subdomains

Calls

Frequently Asked Questions

What does PGGraphQLDocs() do?
PGGraphQLDocs() is a function in the supabase codebase.
What does PGGraphQLDocs() call?
PGGraphQLDocs() calls 1 function(s): getContent.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free