Skip to content

Commit

Permalink
Fixed typo in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mathemare authored Feb 23, 2023
1 parent d3d3b0c commit 30c37a2
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 30c37a2

Please sign in to comment.