com.apollographql.apollo.runtime.java.interceptor.internal.AutoPersistedQueryInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-runtime-java Show documentation
Show all versions of apollo-runtime-java Show documentation
Apollo GraphQL runtime for Java
The newest version!
package com.apollographql.apollo.runtime.java.interceptor.internal;
import com.apollographql.apollo.api.ExecutionContext;
import org.jetbrains.annotations.NotNull;
class AutoPersistedQueryInfo implements ExecutionContext.Element {
public boolean hit;
public AutoPersistedQueryInfo(boolean hit) {
this.hit = hit;
}
@NotNull @Override public Key> getKey() {
return KEY;
}
static final ExecutionContext.Key KEY = new ExecutionContext.Key() {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy