We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8836fab commit c52e45bCopy full SHA for c52e45b
1 file changed
graphql-java-servlet/src/main/java/graphql/kickstart/servlet/cache/GraphQLResponseCache.java
@@ -10,6 +10,7 @@ public interface GraphQLResponseCache {
10
/**
11
* Retrieve the cache by input data. If this query was not cached before, will return empty {@link Optional}.
12
*
13
+ * @param request the http request
14
* @param invocationInput input data
15
* @return cached response if something available in cache or {@literal null} if nothing cached
16
*/
@@ -18,6 +19,7 @@ public interface GraphQLResponseCache {
18
19
20
* Decide to cache or not this response. It depends on the implementation.
21
22
23
24
* @param cachedResponse response to cache
25
0 commit comments