Skip to content

Commit 9122492

Browse files
Update content/graphql/interfaces.md
1 parent 8274825 commit 9122492

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

content/graphql/interfaces.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export abstract class Book {
6969
#### Interface resolvers
7070

7171
So far, using interfaces, you could only share field definitions with your objects. If you also want to share the actual field resolvers implementation, you can create a dedicated interface resolver, as follows:
72-
To do so, create a resolver and point its type to the interface, then define your methods using the `@ResolveField` decorator.
7372

7473
```typescript
7574
import { Resolver, ResolveField, Parent, Info } from '@nestjs/graphql';

0 commit comments

Comments
 (0)