From 30c37a20037d7c0c27fb89377faaef8cf39b6b83 Mon Sep 17 00:00:00 2001 From: mathemare Date: Thu, 23 Feb 2023 11:13:55 +0100 Subject: [PATCH] Fixed typo in documentation --- website/pages/docs/guide/circular-references.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/guide/circular-references.mdx b/website/pages/docs/guide/circular-references.mdx index 933f9ff05..963d55676 100644 --- a/website/pages/docs/guide/circular-references.mdx +++ b/website/pages/docs/guide/circular-references.mdx @@ -45,7 +45,7 @@ loaded, these types of Circular imports should work without causing any issues. import { Post } from './post' export const User = builder.objectType('User', { - fields: t => ({ posts: t.t.expose('posts', { type: [Post]}) }), + fields: t => ({ posts: t.expose('posts', { type: [Post]}) }), }) // post.ts