congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
GraphqlFragment
Code IndexAdd Tabnine to your IDE (free)

How to use
GraphqlFragment
in
com.apollographql.apollo.api

Best Java code snippets using com.apollographql.apollo.api.GraphqlFragment (Showing top 3 results out of 315)

origin: apollographql/apollo-android

 @Override public Set<String> execute(WriteableStore cache) {
  RealResponseWriter responseWriter = new RealResponseWriter(variables, scalarTypeAdapters);
  fragment.marshaller().marshal(responseWriter);
  ResponseNormalizer<Map<String, Object>> responseNormalizer = networkResponseNormalizer();
  responseNormalizer.willResolveRecord(cacheKey);
  responseWriter.resolveFields(responseNormalizer);
  return merge(responseNormalizer.records(), CacheHeaders.NONE);
 }
});
origin: com.amazonaws/aws-android-sdk-appsync-runtime

 @Override public Set<String> execute(WriteableStore cache) {
  CacheResponseWriter cacheResponseWriter = new CacheResponseWriter(variables, scalarTypeAdapters);
  fragment.marshaller().marshal(cacheResponseWriter);
  ResponseNormalizer<Map<String, Object>> responseNormalizer = networkResponseNormalizer();
  responseNormalizer.willResolveRecord(cacheKey);
  Collection<Record> records = cacheResponseWriter.normalize(responseNormalizer);
  return merge(records, CacheHeaders.NONE);
 }
});
origin: awslabs/aws-mobile-appsync-sdk-android

 @Override public Set<String> execute(WriteableStore cache) {
  CacheResponseWriter cacheResponseWriter = new CacheResponseWriter(variables, scalarTypeAdapters);
  fragment.marshaller().marshal(cacheResponseWriter);
  ResponseNormalizer<Map<String, Object>> responseNormalizer = networkResponseNormalizer();
  responseNormalizer.willResolveRecord(cacheKey);
  Collection<Record> records = cacheResponseWriter.normalize(responseNormalizer);
  return merge(records, CacheHeaders.NONE);
 }
});
com.apollographql.apollo.apiGraphqlFragment

Javadoc

Represents a GraphQL fragment

Most used methods

  • marshaller
    Returns marshaller to serialize fragment data

Popular in Java

  • Making http requests using okhttp
  • setContentView (Activity)
  • compareTo (BigDecimal)
  • startActivity (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now