2016-04-21 23 views
0

我执行下面的代码,结果世界:您好与GraphQLObjectType

{TestPojo={id=null, name=null}} 

我期待的结果是{TestPojo={id="1", name="Jack"}}。我错过了什么?

import static graphql.Scalars.GraphQLString; 
import static graphql.schema.GraphQLFieldDefinition.newFieldDefinition; 
import static graphql.schema.GraphQLObjectType.newObject; 

import java.util.Map; 

import graphql.GraphQL; 
import graphql.schema.DataFetcher; 
import graphql.schema.DataFetchingEnvironment; 
import graphql.schema.GraphQLObjectType; 
import graphql.schema.GraphQLSchema; 

public class HelloWorld { 
    public static void main(String[] args) { 
     // sub schema to be added to parent schema 
     GraphQLObjectType testPojo = newObject().name("TestPojo") 
               .description("This is a test POJO") 
               .field(newFieldDefinition().name("id").type(GraphQLString).build()) 
               .field(newFieldDefinition().name("name").type(GraphQLString).build()) 
               .build(); 
     // parent schema 
     GraphQLObjectType queryType = newObject().name("helloWorldQuery") 
               .field(newFieldDefinition().name(testPojo.getName()) 
                      .type(testPojo) 
                      .dataFetcher(new DataFetcher() { 
                       @Override 
                       public Object get(DataFetchingEnvironment arg0) { 
                        Object a = new GrapgQLSampleController() 
                             .greeting2(); 
                        return a; 
                       } 
                      }) 
                      .build()) 
               .build(); 


     GraphQLSchema schema = GraphQLSchema.newSchema().query(queryType).build(); 
     Map<String, Object> result = (Map<String, Object>) new GraphQL(schema).execute("{TestPojo {id,name}}") 
                       .getData(); 
     System.out.println(result); 
     // Prints: {TestPojo={id=null, name=null}} 
    } 

    /** 
    * service method 2 
    * 
    * @return 
    */ 
    public TestPojo greeting2() { 
     return new TestPojo("1", "Jack"); 
    } 

    // inner pojo 
    class TestPojo { 
     public String id; 
     public String name; 

     TestPojo(String id, String name) { 
      this.id = id; 
      this.name = name; 
     } 
    } 
} 

回答

-1

试图通过修复代码来教学。需要注意的是静态内容来源于无论是在.staticValue( “X”)

GraphQLObjectType testPojo = newObject().name("TestPojo") 
              .description("This is a test POJO") 
              .field(newFieldDefinition().type(GraphQLString).name("id").staticValue("Test1")) 
              .field(newFieldDefinition().type(GraphQLString).name("name").staticValue("pojo1")) 
              .build(); 

    GraphQLSchema schema = GraphQLSchema.newSchema().query(testPojo).build(); 
    Map<String, Object> result = (Map<String, Object>) new GraphQL(schema).execute("{id,name}") 
                      .getData(); 
    System.out.println(result); 

将打印{ID = Test1的,名称= pojo1}

可以用DataFetcher更新的例子,当我有时间

+0

此答案未回答提问 –

0

尝试在您的TestPojo类中添加getter方法,因为这些类将在类中声明时调用。否则在现场定义你自己的DataFetcher

class TestPojo { 
    public final String id; 
    public final String name; 

    TestPojo(String id, String name) { 
     this.id = id; 
     this.name = name; 
    } 

    String getId() { 
     return id; 
    } 

    String getName() { 
     return name; 
    } 
} 
相关问题