public class examples.GraphQLExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.GraphQLExamples
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/GraphQLExamples;

  public void handlerSetup(io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.Router router
         0: .line 49
            aload 0 /* this */
            invokevirtual examples.GraphQLExamples.setupGraphQLJava:()Lgraphql/GraphQL;
            astore 2 /* graphQL */
        start local 2 // graphql.GraphQL graphQL
         1: .line 51
            aload 1 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         2: .line 52
            return
        end local 2 // graphql.GraphQL graphQL
        end local 1 // io.vertx.ext.web.Router router
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/GraphQLExamples;
            0    3     1   router  Lio/vertx/ext/web/Router;
            1    3     2  graphQL  Lgraphql/GraphQL;
    MethodParameters:
        Name  Flags
      router  

  public void handlerSetupPost(io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.Router router
         0: .line 55
            aload 0 /* this */
            invokevirtual examples.GraphQLExamples.setupGraphQLJava:()Lgraphql/GraphQL;
            astore 2 /* graphQL */
        start local 2 // graphql.GraphQL graphQL
         1: .line 57
            aload 1 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.post:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         2: .line 58
            return
        end local 2 // graphql.GraphQL graphQL
        end local 1 // io.vertx.ext.web.Router router
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/GraphQLExamples;
            0    3     1   router  Lio/vertx/ext/web/Router;
            1    3     2  graphQL  Lgraphql/GraphQL;
    MethodParameters:
        Name  Flags
      router  

  public void handlerSetupGraphiQL(graphql.GraphQL, io.vertx.ext.web.Router);
    descriptor: (Lgraphql/GraphQL;Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.GraphQL graphQL
        start local 2 // io.vertx.ext.web.Router router
         0: .line 61
            new io.vertx.ext.web.handler.graphql.GraphiQLHandlerOptions
            dup
            invokespecial io.vertx.ext.web.handler.graphql.GraphiQLHandlerOptions.<init>:()V
         1: .line 62
            iconst_1
            invokevirtual io.vertx.ext.web.handler.graphql.GraphiQLHandlerOptions.setEnabled:(Z)Lio/vertx/ext/web/handler/graphql/GraphiQLHandlerOptions;
         2: .line 61
            astore 3 /* options */
        start local 3 // io.vertx.ext.web.handler.graphql.GraphiQLHandlerOptions options
         3: .line 64
            aload 2 /* router */
            ldc "/graphiql/*"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 3 /* options */
            invokestatic io.vertx.ext.web.handler.graphql.GraphiQLHandler.create:(Lio/vertx/ext/web/handler/graphql/GraphiQLHandlerOptions;)Lio/vertx/ext/web/handler/graphql/GraphiQLHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         4: .line 65
            return
        end local 3 // io.vertx.ext.web.handler.graphql.GraphiQLHandlerOptions options
        end local 2 // io.vertx.ext.web.Router router
        end local 1 // graphql.GraphQL graphQL
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lexamples/GraphQLExamples;
            0    5     1  graphQL  Lgraphql/GraphQL;
            0    5     2   router  Lio/vertx/ext/web/Router;
            3    5     3  options  Lio/vertx/ext/web/handler/graphql/GraphiQLHandlerOptions;
    MethodParameters:
         Name  Flags
      graphQL  
      router   

  public void handlerSetupGraphiQLAuthn(io.vertx.ext.web.handler.graphql.GraphiQLHandler, io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/ext/web/handler/graphql/GraphiQLHandler;Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.handler.graphql.GraphiQLHandler graphiQLHandler
        start local 2 // io.vertx.ext.web.Router router
         0: .line 68
            aload 1 /* graphiQLHandler */
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$0(Lio/vertx/ext/web/RoutingContext;)Lio/vertx/core/MultiMap; (6)
                  (Lio/vertx/ext/web/RoutingContext;)Lio/vertx/core/MultiMap;
            invokeinterface io.vertx.ext.web.handler.graphql.GraphiQLHandler.graphiQLRequestHeaders:(Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/GraphiQLHandler;
            pop
         1: .line 73
            aload 2 /* router */
            ldc "/graphiql/*"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 1 /* graphiQLHandler */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         2: .line 74
            return
        end local 2 // io.vertx.ext.web.Router router
        end local 1 // io.vertx.ext.web.handler.graphql.GraphiQLHandler graphiQLHandler
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lexamples/GraphQLExamples;
            0    3     1  graphiQLHandler  Lio/vertx/ext/web/handler/graphql/GraphiQLHandler;
            0    3     2           router  Lio/vertx/ext/web/Router;
    MethodParameters:
                 Name  Flags
      graphiQLHandler  
      router           

  public void handlerSetupBatching(graphql.GraphQL);
    descriptor: (Lgraphql/GraphQL;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.GraphQL graphQL
         0: .line 77
            new io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions
            dup
            invokespecial io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.<init>:()V
         1: .line 78
            iconst_1
            invokevirtual io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.setRequestBatchingEnabled:(Z)Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
         2: .line 77
            astore 2 /* options */
        start local 2 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions options
         3: .line 80
            aload 1 /* graphQL */
            aload 2 /* options */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            pop
         4: .line 81
            return
        end local 2 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions options
        end local 1 // graphql.GraphQL graphQL
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lexamples/GraphQLExamples;
            0    5     1  graphQL  Lgraphql/GraphQL;
            3    5     2  options  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
    MethodParameters:
         Name  Flags
      graphQL  

  public void setupGraphQLHandlerMultipart(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 85
            aload 0 /* this */
            invokevirtual examples.GraphQLExamples.setupGraphQLJava:()Lgraphql/GraphQL;
         1: .line 86
            new io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions
            dup
            invokespecial io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.<init>:()V
            iconst_1
            invokevirtual io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.setRequestMultipartEnabled:(Z)Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
         2: .line 84
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            astore 2 /* graphQLHandler */
        start local 2 // io.vertx.ext.web.handler.graphql.GraphQLHandler graphQLHandler
         3: .line 89
            aload 1 /* vertx */
            invokestatic io.vertx.ext.web.Router.router:(Lio/vertx/core/Vertx;)Lio/vertx/ext/web/Router;
            astore 3 /* router */
        start local 3 // io.vertx.ext.web.Router router
         4: .line 91
            aload 3 /* router */
            invokeinterface io.vertx.ext.web.Router.route:()Lio/vertx/ext/web/Route;
            invokestatic io.vertx.ext.web.handler.BodyHandler.create:()Lio/vertx/ext/web/handler/BodyHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         5: .line 92
            aload 3 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* graphQLHandler */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         6: .line 93
            return
        end local 3 // io.vertx.ext.web.Router router
        end local 2 // io.vertx.ext.web.handler.graphql.GraphQLHandler graphQLHandler
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lexamples/GraphQLExamples;
            0    7     1           vertx  Lio/vertx/core/Vertx;
            3    7     2  graphQLHandler  Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            4    7     3          router  Lio/vertx/ext/web/Router;
    MethodParameters:
       Name  Flags
      vertx  

  public void setRuntimeScalar();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 96
            invokestatic graphql.schema.idl.RuntimeWiring.newRuntimeWiring:()Lgraphql/schema/idl/RuntimeWiring$Builder;
            invokestatic io.vertx.ext.web.handler.graphql.UploadScalar.build:()Lgraphql/schema/GraphQLScalarType;
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.scalar:(Lgraphql/schema/GraphQLScalarType;)Lgraphql/schema/idl/RuntimeWiring$Builder;
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.build:()Lgraphql/schema/idl/RuntimeWiring;
            pop
         1: .line 97
            return
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lexamples/GraphQLExamples;

  public void getFileUpload(graphql.schema.DataFetchingEnvironment);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
         0: .line 100
            aload 1 /* environment */
            ldc "myFile"
            invokeinterface graphql.schema.DataFetchingEnvironment.getArgument:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.vertx.ext.web.FileUpload
            pop
         1: .line 101
            return
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lexamples/GraphQLExamples;
            0    2     1  environment  Lgraphql/schema/DataFetchingEnvironment;
    MethodParameters:
             Name  Flags
      environment  

  private graphql.GraphQL setupGraphQLJava();
    descriptor: ()Lgraphql/GraphQL;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 104
            aconst_null
            areturn
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/GraphQLExamples;

  public void completionStageDataFetcher();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 111
            aload 0 /* this */
            invokedynamic get(Lexamples/GraphQLExamples;)Lgraphql/schema/DataFetcher;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lgraphql/schema/DataFetchingEnvironment;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$1(Lgraphql/schema/DataFetchingEnvironment;)Ljava/util/concurrent/CompletionStage; (7)
                  (Lgraphql/schema/DataFetchingEnvironment;)Ljava/util/concurrent/CompletionStage;
            astore 1 /* dataFetcher */
        start local 1 // graphql.schema.DataFetcher dataFetcher
         1: .line 126
            invokestatic graphql.schema.idl.RuntimeWiring.newRuntimeWiring:()Lgraphql/schema/idl/RuntimeWiring$Builder;
         2: .line 127
            ldc "Query"
            aload 1 /* dataFetcher */
            invokedynamic apply(Lgraphql/schema/DataFetcher;)Ljava/util/function/UnaryOperator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$3(Lgraphql/schema/DataFetcher;Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder; (6)
                  (Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.type:(Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lgraphql/schema/idl/RuntimeWiring$Builder;
         3: .line 128
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.build:()Lgraphql/schema/idl/RuntimeWiring;
            pop
         4: .line 129
            return
        end local 1 // graphql.schema.DataFetcher dataFetcher
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lexamples/GraphQLExamples;
            1    5     1  dataFetcher  Lgraphql/schema/DataFetcher<Ljava/util/concurrent/CompletionStage<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;>;

  private void retrieveLinksFromBackend(graphql.schema.DataFetchingEnvironment, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<examples.GraphQLExamples$Link>>>);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
        start local 2 // io.vertx.core.Handler handler
         0: .line 132
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lexamples/GraphQLExamples;
            0    1     1  environment  Lgraphql/schema/DataFetchingEnvironment;
            0    1     2      handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;>;
    Signature: (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;>;)V
    MethodParameters:
             Name  Flags
      environment  
      handler      

  public void callbackDataFetcher();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 135
            aload 0 /* this */
            invokedynamic accept(Lexamples/GraphQLExamples;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  examples/GraphQLExamples.lambda$4(Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V (7)
                  (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V
            invokestatic io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher.create:(Ljava/util/function/BiConsumer;)Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;
            astore 1 /* dataFetcher */
        start local 1 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
         1: .line 139
            invokestatic graphql.schema.idl.RuntimeWiring.newRuntimeWiring:()Lgraphql/schema/idl/RuntimeWiring$Builder;
         2: .line 140
            ldc "Query"
            aload 1 /* dataFetcher */
            invokedynamic apply(Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;)Ljava/util/function/UnaryOperator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$5(Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder; (6)
                  (Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.type:(Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lgraphql/schema/idl/RuntimeWiring$Builder;
         3: .line 141
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.build:()Lgraphql/schema/idl/RuntimeWiring;
            pop
         4: .line 142
            return
        end local 1 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lexamples/GraphQLExamples;
            1    5     1  dataFetcher  Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;

  public void futureDataFetcher();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 145
            aload 0 /* this */
            invokedynamic apply(Lexamples/GraphQLExamples;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$6(Lgraphql/schema/DataFetchingEnvironment;)Lio/vertx/core/Future; (7)
                  (Lgraphql/schema/DataFetchingEnvironment;)Lio/vertx/core/Future;
            invokestatic io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher.create:(Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;
            astore 1 /* dataFetcher */
        start local 1 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
         1: .line 150
            invokestatic graphql.schema.idl.RuntimeWiring.newRuntimeWiring:()Lgraphql/schema/idl/RuntimeWiring$Builder;
         2: .line 151
            ldc "Query"
            aload 1 /* dataFetcher */
            invokedynamic apply(Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;)Ljava/util/function/UnaryOperator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$7(Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder; (6)
                  (Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.type:(Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lgraphql/schema/idl/RuntimeWiring$Builder;
         3: .line 152
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.build:()Lgraphql/schema/idl/RuntimeWiring;
            pop
         4: .line 153
            return
        end local 1 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lexamples/GraphQLExamples;
            1    5     1  dataFetcher  Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;

  private io.vertx.core.Future<java.util.List<examples.GraphQLExamples$Link>> retrieveLinksFromBackend(graphql.schema.DataFetchingEnvironment);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
         0: .line 156
            aconst_null
            areturn
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lexamples/GraphQLExamples;
            0    1     1  environment  Lgraphql/schema/DataFetchingEnvironment;
    Signature: (Lgraphql/schema/DataFetchingEnvironment;)Lio/vertx/core/Future<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
    MethodParameters:
             Name  Flags
      environment  

  private void routingContextInDataFetchingEnvironment();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 163
            aload 0 /* this */
            invokedynamic accept(Lexamples/GraphQLExamples;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  examples/GraphQLExamples.lambda$8(Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V (7)
                  (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V
            invokestatic io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher.create:(Ljava/util/function/BiConsumer;)Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;
            pop
         1: .line 172
            return
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lexamples/GraphQLExamples;

  private void retrieveLinksPostedBy(examples.GraphQLExamples$User, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<examples.GraphQLExamples$Link>>>);
    descriptor: (Lexamples/GraphQLExamples$User;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // examples.GraphQLExamples$User user
        start local 2 // io.vertx.core.Handler handler
         0: .line 175
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // examples.GraphQLExamples$User user
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lexamples/GraphQLExamples;
            0    1     1     user  Lexamples/GraphQLExamples$User;
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;>;
    Signature: (Lexamples/GraphQLExamples$User;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;>;)V
    MethodParameters:
         Name  Flags
      user     
      handler  

  private void customContextInDataFetchingEnvironment(io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/ext/web/Router;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.Router router
         0: .line 178
            aload 0 /* this */
            invokedynamic accept(Lexamples/GraphQLExamples;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  examples/GraphQLExamples.lambda$9(Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V (7)
                  (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V
            invokestatic io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher.create:(Ljava/util/function/BiConsumer;)Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;
            astore 2 /* dataFetcher */
        start local 2 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
         1: .line 187
            aload 0 /* this */
            aload 2 /* dataFetcher */
            invokevirtual examples.GraphQLExamples.setupGraphQLJava:(Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;)Lgraphql/GraphQL;
            astore 3 /* graphQL */
        start local 3 // graphql.GraphQL graphQL
         2: .line 190
            aload 3 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$10(Lio/vertx/ext/web/RoutingContext;)Ljava/lang/Object; (6)
                  (Lio/vertx/ext/web/RoutingContext;)Ljava/lang/Object;
            invokeinterface io.vertx.ext.web.handler.graphql.GraphQLHandler.queryContext:(Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            astore 4 /* handler */
        start local 4 // io.vertx.ext.web.handler.graphql.GraphQLHandler handler
         3: .line 196
            aload 1 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 4 /* handler */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         4: .line 197
            return
        end local 4 // io.vertx.ext.web.handler.graphql.GraphQLHandler handler
        end local 3 // graphql.GraphQL graphQL
        end local 2 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
        end local 1 // io.vertx.ext.web.Router router
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lexamples/GraphQLExamples;
            0    5     1       router  Lio/vertx/ext/web/Router;
            1    5     2  dataFetcher  Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
            2    5     3      graphQL  Lgraphql/GraphQL;
            3    5     4      handler  Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
    MethodParameters:
        Name  Flags
      router  

  private graphql.GraphQL setupGraphQLJava(io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher<java.util.List<examples.GraphQLExamples$Link>>);
    descriptor: (Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;)Lgraphql/GraphQL;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
         0: .line 200
            aconst_null
            areturn
        end local 1 // io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher dataFetcher
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lexamples/GraphQLExamples;
            0    1     1  dataFetcher  Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
    Signature: (Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;)Lgraphql/GraphQL;
    MethodParameters:
             Name  Flags
      dataFetcher  

  public void jsonData();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 204
            invokestatic graphql.schema.idl.RuntimeWiring.newRuntimeWiring:()Lgraphql/schema/idl/RuntimeWiring$Builder;
            astore 1 /* builder */
        start local 1 // graphql.schema.idl.RuntimeWiring$Builder builder
         1: .line 206
            aload 1 /* builder */
            new examples.GraphQLExamples$1
            dup
            aload 0 /* this */
            invokespecial examples.GraphQLExamples$1.<init>:(Lexamples/GraphQLExamples;)V
            invokevirtual graphql.schema.idl.RuntimeWiring$Builder.wiringFactory:(Lgraphql/schema/idl/WiringFactory;)Lgraphql/schema/idl/RuntimeWiring$Builder;
            pop
         2: .line 215
            return
        end local 1 // graphql.schema.idl.RuntimeWiring$Builder builder
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/GraphQLExamples;
            1    3     1  builder  Lgraphql/schema/idl/RuntimeWiring$Builder;

  public void createBatchLoader();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.GraphQLExamples this
         0: .line 218
            aload 0 /* this */
            invokedynamic load(Lexamples/GraphQLExamples;)Lorg/dataloader/BatchLoaderWithContext;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/util/List;Lorg/dataloader/BatchLoaderEnvironment;)Ljava/util/concurrent/CompletionStage;
                  examples/GraphQLExamples.retrieveLinksFromBackend(Ljava/util/List;Lorg/dataloader/BatchLoaderEnvironment;)Ljava/util/concurrent/CompletionStage; (7)
                  (Ljava/util/List;Lorg/dataloader/BatchLoaderEnvironment;)Ljava/util/concurrent/CompletionStage;
            pop
         1: .line 219
            return
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lexamples/GraphQLExamples;

  private java.util.concurrent.CompletionStage<java.util.List<examples.GraphQLExamples$Link>> retrieveLinksFromBackend(java.util.List<java.lang.String>, org.dataloader.BatchLoaderEnvironment);
    descriptor: (Ljava/util/List;Lorg/dataloader/BatchLoaderEnvironment;)Ljava/util/concurrent/CompletionStage;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // java.util.List ids
        start local 2 // org.dataloader.BatchLoaderEnvironment environment
         0: .line 222
            aconst_null
            areturn
        end local 2 // org.dataloader.BatchLoaderEnvironment environment
        end local 1 // java.util.List ids
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lexamples/GraphQLExamples;
            0    1     1          ids  Ljava/util/List<Ljava/lang/String;>;
            0    1     2  environment  Lorg/dataloader/BatchLoaderEnvironment;
    Signature: (Ljava/util/List<Ljava/lang/String;>;Lorg/dataloader/BatchLoaderEnvironment;)Ljava/util/concurrent/CompletionStage<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
    MethodParameters:
             Name  Flags
      ids          
      environment  

  public void dataLoaderRegistry(graphql.GraphQL, org.dataloader.BatchLoaderWithContext<java.lang.String, examples.GraphQLExamples$Link>);
    descriptor: (Lgraphql/GraphQL;Lorg/dataloader/BatchLoaderWithContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.GraphQL graphQL
        start local 2 // org.dataloader.BatchLoaderWithContext linksBatchLoader
         0: .line 226
            aload 1 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            aload 2 /* linksBatchLoader */
            invokedynamic apply(Lorg/dataloader/BatchLoaderWithContext;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  examples/GraphQLExamples.lambda$12(Lorg/dataloader/BatchLoaderWithContext;Lio/vertx/ext/web/RoutingContext;)Lorg/dataloader/DataLoaderRegistry; (6)
                  (Lio/vertx/ext/web/RoutingContext;)Lorg/dataloader/DataLoaderRegistry;
            invokeinterface io.vertx.ext.web.handler.graphql.GraphQLHandler.dataLoaderRegistry:(Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            pop
         1: .line 233
            return
        end local 2 // org.dataloader.BatchLoaderWithContext linksBatchLoader
        end local 1 // graphql.GraphQL graphQL
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lexamples/GraphQLExamples;
            0    2     1           graphQL  Lgraphql/GraphQL;
            0    2     2  linksBatchLoader  Lorg/dataloader/BatchLoaderWithContext<Ljava/lang/String;Lexamples/GraphQLExamples$Link;>;
    Signature: (Lgraphql/GraphQL;Lorg/dataloader/BatchLoaderWithContext<Ljava/lang/String;Lexamples/GraphQLExamples$Link;>;)V
    MethodParameters:
                  Name  Flags
      graphQL           
      linksBatchLoader  

  public void addApolloWsHandlerToRouter(io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.Router router
         0: .line 236
            aload 0 /* this */
            invokevirtual examples.GraphQLExamples.setupGraphQLJava:()Lgraphql/GraphQL;
            astore 2 /* graphQL */
        start local 2 // graphql.GraphQL graphQL
         1: .line 238
            aload 1 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.ApolloWSHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         2: .line 239
            return
        end local 2 // graphql.GraphQL graphQL
        end local 1 // io.vertx.ext.web.Router router
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/GraphQLExamples;
            0    3     1   router  Lio/vertx/ext/web/Router;
            1    3     2  graphQL  Lgraphql/GraphQL;
    MethodParameters:
        Name  Flags
      router  

  public void configureServerForApolloWs(io.vertx.core.Vertx, io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.web.Router router
         0: .line 242
            new io.vertx.core.http.HttpServerOptions
            dup
            invokespecial io.vertx.core.http.HttpServerOptions.<init>:()V
         1: .line 243
            ldc "graphql-ws"
            invokevirtual io.vertx.core.http.HttpServerOptions.addWebSocketSubProtocol:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
         2: .line 242
            astore 3 /* httpServerOptions */
        start local 3 // io.vertx.core.http.HttpServerOptions httpServerOptions
         3: .line 244
            aload 1 /* vertx */
            aload 3 /* httpServerOptions */
            invokeinterface io.vertx.core.Vertx.createHttpServer:(Lio/vertx/core/http/HttpServerOptions;)Lio/vertx/core/http/HttpServer;
         4: .line 245
            aload 2 /* router */
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         5: .line 246
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/Future;
            pop
         6: .line 247
            return
        end local 3 // io.vertx.core.http.HttpServerOptions httpServerOptions
        end local 2 // io.vertx.ext.web.Router router
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lexamples/GraphQLExamples;
            0    7     1              vertx  Lio/vertx/core/Vertx;
            0    7     2             router  Lio/vertx/ext/web/Router;
            3    7     3  httpServerOptions  Lio/vertx/core/http/HttpServerOptions;
    MethodParameters:
        Name  Flags
      vertx   
      router  

  public void configureWebSocketLinkAndHttpLinkSamePath(io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // io.vertx.ext.web.Router router
         0: .line 250
            aload 0 /* this */
            invokevirtual examples.GraphQLExamples.setupGraphQLJava:()Lgraphql/GraphQL;
            astore 2 /* graphQL */
        start local 2 // graphql.GraphQL graphQL
         1: .line 252
            aload 1 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.ApolloWSHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         2: .line 253
            aload 1 /* router */
            ldc "/graphql"
            invokeinterface io.vertx.ext.web.Router.route:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* graphQL */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandler.create:(Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/GraphQLHandler;
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         3: .line 254
            return
        end local 2 // graphql.GraphQL graphQL
        end local 1 // io.vertx.ext.web.Router router
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/GraphQLExamples;
            0    4     1   router  Lio/vertx/ext/web/Router;
            1    4     2  graphQL  Lgraphql/GraphQL;
    MethodParameters:
        Name  Flags
      router  

  private static io.vertx.core.MultiMap lambda$0(io.vertx.ext.web.RoutingContext);
    descriptor: (Lio/vertx/ext/web/RoutingContext;)Lio/vertx/core/MultiMap;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.RoutingContext rc
         0: .line 69
            aload 0 /* rc */
            ldc "token"
            invokeinterface io.vertx.ext.web.RoutingContext.get:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* token */
        start local 1 // java.lang.String token
         1: .line 70
            invokestatic io.vertx.core.MultiMap.caseInsensitiveMultiMap:()Lio/vertx/core/MultiMap;
            ldc "Authorization"
            new java.lang.StringBuilder
            dup
            ldc "Bearer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* token */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            areturn
        end local 1 // java.lang.String token
        end local 0 // io.vertx.ext.web.RoutingContext rc
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0     rc  Lio/vertx/ext/web/RoutingContext;
            1    2     1  token  Ljava/lang/String;

  private java.util.concurrent.CompletionStage lambda$1(graphql.schema.DataFetchingEnvironment);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;)Ljava/util/concurrent/CompletionStage;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
         0: .line 113
            new java.util.concurrent.CompletableFuture
            dup
            invokespecial java.util.concurrent.CompletableFuture.<init>:()V
            astore 2 /* completableFuture */
        start local 2 // java.util.concurrent.CompletableFuture completableFuture
         1: .line 115
            aload 0 /* this */
            aload 1 /* environment */
            aload 2 /* completableFuture */
            invokedynamic handle(Ljava/util/concurrent/CompletableFuture;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  examples/GraphQLExamples.lambda$2(Ljava/util/concurrent/CompletableFuture;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual examples.GraphQLExamples.retrieveLinksFromBackend:(Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Handler;)V
         2: .line 123
            aload 2 /* completableFuture */
            areturn
        end local 2 // java.util.concurrent.CompletableFuture completableFuture
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lexamples/GraphQLExamples;
            0    3     1        environment  Lgraphql/schema/DataFetchingEnvironment;
            1    3     2  completableFuture  Ljava/util/concurrent/CompletableFuture<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
    Exceptions:
      throws java.lang.Exception

  private static graphql.schema.idl.TypeRuntimeWiring$Builder lambda$3(graphql.schema.DataFetcher, graphql.schema.idl.TypeRuntimeWiring$Builder);
    descriptor: (Lgraphql/schema/DataFetcher;Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // graphql.schema.idl.TypeRuntimeWiring$Builder builder
         0: .line 127
            aload 1 /* builder */
            ldc "allLinks"
            aload 0
            invokevirtual graphql.schema.idl.TypeRuntimeWiring$Builder.dataFetcher:(Ljava/lang/String;Lgraphql/schema/DataFetcher;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
            areturn
        end local 1 // graphql.schema.idl.TypeRuntimeWiring$Builder builder
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     1  builder  Lgraphql/schema/idl/TypeRuntimeWiring$Builder;

  private void lambda$4(graphql.schema.DataFetchingEnvironment, io.vertx.core.Promise);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment env
        start local 2 // io.vertx.core.Promise promise
         0: .line 136
            aload 0 /* this */
            aload 1 /* env */
            aload 2 /* promise */
            invokevirtual examples.GraphQLExamples.retrieveLinksFromBackend:(Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Handler;)V
         1: .line 137
            return
        end local 2 // io.vertx.core.Promise promise
        end local 1 // graphql.schema.DataFetchingEnvironment env
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/GraphQLExamples;
            0    2     1      env  Lgraphql/schema/DataFetchingEnvironment;
            0    2     2  promise  Lio/vertx/core/Promise<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;

  private static graphql.schema.idl.TypeRuntimeWiring$Builder lambda$5(io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher, graphql.schema.idl.TypeRuntimeWiring$Builder);
    descriptor: (Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // graphql.schema.idl.TypeRuntimeWiring$Builder builder
         0: .line 140
            aload 1 /* builder */
            ldc "allLinks"
            aload 0
            invokevirtual graphql.schema.idl.TypeRuntimeWiring$Builder.dataFetcher:(Ljava/lang/String;Lgraphql/schema/DataFetcher;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
            areturn
        end local 1 // graphql.schema.idl.TypeRuntimeWiring$Builder builder
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     1  builder  Lgraphql/schema/idl/TypeRuntimeWiring$Builder;

  private io.vertx.core.Future lambda$6(graphql.schema.DataFetchingEnvironment);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
         0: .line 146
            aload 0 /* this */
            aload 1 /* environment */
            invokevirtual examples.GraphQLExamples.retrieveLinksFromBackend:(Lgraphql/schema/DataFetchingEnvironment;)Lio/vertx/core/Future;
            astore 2 /* future */
        start local 2 // io.vertx.core.Future future
         1: .line 147
            aload 2 /* future */
            areturn
        end local 2 // io.vertx.core.Future future
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lexamples/GraphQLExamples;
            0    2     1  environment  Lgraphql/schema/DataFetchingEnvironment;
            1    2     2       future  Lio/vertx/core/Future<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;

  private static graphql.schema.idl.TypeRuntimeWiring$Builder lambda$7(io.vertx.ext.web.handler.graphql.schema.VertxDataFetcher, graphql.schema.idl.TypeRuntimeWiring$Builder);
    descriptor: (Lio/vertx/ext/web/handler/graphql/schema/VertxDataFetcher;Lgraphql/schema/idl/TypeRuntimeWiring$Builder;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // graphql.schema.idl.TypeRuntimeWiring$Builder builder
         0: .line 151
            aload 1 /* builder */
            ldc "allLinks"
            aload 0
            invokevirtual graphql.schema.idl.TypeRuntimeWiring$Builder.dataFetcher:(Ljava/lang/String;Lgraphql/schema/DataFetcher;)Lgraphql/schema/idl/TypeRuntimeWiring$Builder;
            areturn
        end local 1 // graphql.schema.idl.TypeRuntimeWiring$Builder builder
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     1  builder  Lgraphql/schema/idl/TypeRuntimeWiring$Builder;

  private void lambda$8(graphql.schema.DataFetchingEnvironment, io.vertx.core.Promise);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
        start local 2 // io.vertx.core.Promise promise
         0: .line 165
            aload 1 /* environment */
            invokeinterface graphql.schema.DataFetchingEnvironment.getContext:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.RoutingContext
            astore 3 /* routingContext */
        start local 3 // io.vertx.ext.web.RoutingContext routingContext
         1: .line 167
            aload 3 /* routingContext */
            ldc "user"
            invokeinterface io.vertx.ext.web.RoutingContext.get:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast examples.GraphQLExamples$User
            astore 4 /* user */
        start local 4 // examples.GraphQLExamples$User user
         2: .line 169
            aload 0 /* this */
            aload 4 /* user */
            aload 2 /* promise */
            invokevirtual examples.GraphQLExamples.retrieveLinksPostedBy:(Lexamples/GraphQLExamples$User;Lio/vertx/core/Handler;)V
        end local 4 // examples.GraphQLExamples$User user
        end local 3 // io.vertx.ext.web.RoutingContext routingContext
         3: .line 171
            return
        end local 2 // io.vertx.core.Promise promise
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lexamples/GraphQLExamples;
            0    4     1     environment  Lgraphql/schema/DataFetchingEnvironment;
            0    4     2         promise  Lio/vertx/core/Promise<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
            1    3     3  routingContext  Lio/vertx/ext/web/RoutingContext;
            2    3     4            user  Lexamples/GraphQLExamples$User;

  private void lambda$9(graphql.schema.DataFetchingEnvironment, io.vertx.core.Promise);
    descriptor: (Lgraphql/schema/DataFetchingEnvironment;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // examples.GraphQLExamples this
        start local 1 // graphql.schema.DataFetchingEnvironment environment
        start local 2 // io.vertx.core.Promise promise
         0: .line 181
            aload 1 /* environment */
            invokeinterface graphql.schema.DataFetchingEnvironment.getContext:()Ljava/lang/Object;
            checkcast examples.GraphQLExamples$User
            astore 3 /* user */
        start local 3 // examples.GraphQLExamples$User user
         1: .line 183
            aload 0 /* this */
            aload 3 /* user */
            aload 2 /* promise */
            invokevirtual examples.GraphQLExamples.retrieveLinksPostedBy:(Lexamples/GraphQLExamples$User;Lio/vertx/core/Handler;)V
        end local 3 // examples.GraphQLExamples$User user
         2: .line 185
            return
        end local 2 // io.vertx.core.Promise promise
        end local 1 // graphql.schema.DataFetchingEnvironment environment
        end local 0 // examples.GraphQLExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lexamples/GraphQLExamples;
            0    3     1  environment  Lgraphql/schema/DataFetchingEnvironment;
            0    3     2      promise  Lio/vertx/core/Promise<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
            1    2     3         user  Lexamples/GraphQLExamples$User;

  private static java.lang.Object lambda$10(io.vertx.ext.web.RoutingContext);
    descriptor: (Lio/vertx/ext/web/RoutingContext;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.RoutingContext routingContext
         0: .line 192
            aload 0 /* routingContext */
            ldc "user"
            invokeinterface io.vertx.ext.web.RoutingContext.get:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 0 // io.vertx.ext.web.RoutingContext routingContext
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0  routingContext  Lio/vertx/ext/web/RoutingContext;

  private static org.dataloader.DataLoaderRegistry lambda$12(org.dataloader.BatchLoaderWithContext, io.vertx.ext.web.RoutingContext);
    descriptor: (Lorg/dataloader/BatchLoaderWithContext;Lio/vertx/ext/web/RoutingContext;)Lorg/dataloader/DataLoaderRegistry;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
        start local 1 // io.vertx.ext.web.RoutingContext rc
         0: .line 228
            aload 0
            invokestatic org.dataloader.DataLoader.newDataLoader:(Lorg/dataloader/BatchLoaderWithContext;)Lorg/dataloader/DataLoader;
            astore 2 /* linkDataLoader */
        start local 2 // org.dataloader.DataLoader linkDataLoader
         1: .line 230
            new org.dataloader.DataLoaderRegistry
            dup
            invokespecial org.dataloader.DataLoaderRegistry.<init>:()V
            ldc "link"
            aload 2 /* linkDataLoader */
            invokevirtual org.dataloader.DataLoaderRegistry.register:(Ljava/lang/String;Lorg/dataloader/DataLoader;)Lorg/dataloader/DataLoaderRegistry;
            areturn
        end local 2 // org.dataloader.DataLoader linkDataLoader
        end local 1 // io.vertx.ext.web.RoutingContext rc
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     1              rc  Lio/vertx/ext/web/RoutingContext;
            1    2     2  linkDataLoader  Lorg/dataloader/DataLoader<Ljava/lang/String;Lexamples/GraphQLExamples$Link;>;

  private static void lambda$2(java.util.concurrent.CompletableFuture, io.vertx.core.AsyncResult);
    descriptor: (Ljava/util/concurrent/CompletableFuture;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 116
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 117
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.util.List
            invokevirtual java.util.concurrent.CompletableFuture.complete:(Ljava/lang/Object;)Z
            pop
         2: .line 118
            goto 4
         3: .line 119
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual java.util.concurrent.CompletableFuture.completeExceptionally:(Ljava/lang/Throwable;)Z
            pop
         4: .line 121
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1    ar  Lio/vertx/core/AsyncResult<Ljava/util/List<Lexamples/GraphQLExamples$Link;>;>;
}
SourceFile: "GraphQLExamples.java"
NestMembers:
  examples.GraphQLExamples$1  examples.GraphQLExamples$Link  examples.GraphQLExamples$User
InnerClasses:
  examples.GraphQLExamples$1
  Link = examples.GraphQLExamples$Link of examples.GraphQLExamples
  User = examples.GraphQLExamples$User of examples.GraphQLExamples
  public Builder = graphql.schema.idl.RuntimeWiring$Builder of graphql.schema.idl.RuntimeWiring
  public Builder = graphql.schema.idl.TypeRuntimeWiring$Builder of graphql.schema.idl.TypeRuntimeWiring
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles