You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((builder.query == null || builder.query.isEmpty()) && isPersistedQuery(builder)) {
69
+
returnPERSISTED_QUERY_MARKER;
70
+
}
71
+
72
+
returnassertNotNull(builder.query, () -> "query can't be null");
73
+
}
74
+
75
+
/**
76
+
* This is used to determine if this execution input is a persisted query or not.
77
+
*
78
+
* @implNote The current implementation supports Apollo Persisted Queries (APQ) by checking for
79
+
* the extensions property for the persisted query extension.
80
+
* See <a href="https://www.apollographql.com/docs/apollo-server/performance/apq/">Apollo Persisted Queries</a> for more details.
0 commit comments