We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744b107 commit b0d9dc8Copy full SHA for b0d9dc8
src/main/java/graphql/annotations/connection/GraphQLConnection.java
@@ -63,10 +63,10 @@
63
boolean async() default false;
64
65
/**
66
- * By default, the regular relay connection is used. If you want to change the way connection works
+ * By default, the relay connection that the container has is used. If you want to change the way connection works
67
* (For example, you don't want edges and nodes), override the {@link Relay} class and specify it.
68
*
69
* @return a class that represents the connection type
70
*/
71
- Class<? extends Relay> connectionType() default Relay.class;
+ Class<? extends Relay> connectionType() default FakeRelay.class;
72
}
0 commit comments