Skip to content

Commit

Permalink
Merge pull request hayes#805 from mathemare/patch-1
Browse files Browse the repository at this point in the history
Fixed typo in documentation
  • Loading branch information
hayes authored Feb 23, 2023
2 parents d3d3b0c + 30c37a2 commit 9c17ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/pages/docs/guide/circular-references.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c17ca4

Please sign in to comment.